@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap');

/* ── Custom Properties ── */

:root {
  --cream:    #FEFCF5;
  --sand:     #F5F0E8;
  --teal:     #112d29;
  --gold:     #C1A286;
  --sage:     #7A8B6F;
  --charcoal: #2C2C2C;
  --gray:     #6B6560;
  --navy:     #404D6A;
  --white:    #ffffff;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* ── Reset ── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { font-size: 16px; scroll-behavior: smooth; }

/* ── Base ── */

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

/* ── Typography ── */

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--teal);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ── */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

section { padding: 5rem 0; }

/* ── Gold Divider ── */

.gold-rule {
  border: none;
  border-top: 1px solid var(--gold);
  width: 60px;
  margin: 1.25rem 0 2rem;
  opacity: 0.7;
}

.gold-rule--center { margin-left: auto; margin-right: auto; }
.gold-rule--full { width: 100%; }

/* ── Navigation ── */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(193, 162, 134, 0.35);
  padding: 0;
  transition: box-shadow 0.2s;
}

.site-nav.scrolled { box-shadow: 0 2px 16px rgba(17, 45, 41, 0.08); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
}

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--teal);
  transition: transform 0.2s, opacity 0.2s;
}

/* ── Hero ── */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17, 45, 41, 0.50) 0%,
    rgba(17, 45, 41, 0.62) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 680px;
  padding: 2rem 2rem;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* ── Buttons ── */

.btn {
  display: inline-block;
  padding: 0.8rem 2.25rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
}

.btn-outline-dark {
  border: 1px solid var(--teal);
  color: var(--teal);
  background: transparent;
}

.btn-outline-dark:hover {
  background: var(--teal);
  color: var(--white);
}

.btn-gold {
  border: 1px solid var(--gold);
  color: var(--teal);
  background: transparent;
}

.btn-gold:hover {
  background: var(--gold);
  color: var(--white);
}

/* ── Page Header (inner pages) ── */

.page-header {
  padding: 9rem 0 4rem;
  background: var(--cream);
  border-bottom: 1px solid rgba(193, 162, 134, 0.3);
}

.page-header h1 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 300;
}

.page-header p {
  color: var(--gray);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  margin-top: 0.5rem;
}

/* ── About ── */

.about { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-text p {
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.85;
}

.about-pull {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  color: var(--teal);
  line-height: 1.5;
  padding: 2rem 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  margin: 2rem 0;
  text-align: center;
}

/* ── Testimonials ── */

.testimonials { background: var(--sand); }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.testimonials h2 { margin-bottom: 0; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  padding: 2rem;
  background: var(--cream);
  border-top: 2px solid var(--gold);
}

.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.testimonial-card .attribution {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--gray);
}

.testimonial-card .attribution strong {
  display: block;
  color: var(--teal);
  font-weight: 400;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}

/* ── Services ── */

.services-intro { background: var(--cream); padding-bottom: 2rem; }

.services-grid-section { background: var(--sand); padding-top: 3rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(193, 162, 134, 0.25);
  margin-top: 0;
}

.service-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
}

.service-card:hover { background: var(--sand); }

.service-icon {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--teal);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

.services-cta {
  background: var(--teal);
  text-align: center;
  padding: 5rem 2rem;
}

.services-cta h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.services-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-serif);
  font-style: italic;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* ── Contact ── */

.contact-section { background: var(--cream); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-item-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.25rem;
}

.contact-item-value {
  font-size: 1rem;
  color: var(--charcoal);
}

.contact-item-value a {
  color: var(--charcoal);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  padding-bottom: 1px;
}

.contact-item-value a:hover {
  color: var(--teal);
  border-bottom-color: var(--gold);
}

.contact-aside {
  padding: 2.5rem;
  background: var(--sand);
  border-top: 2px solid var(--gold);
}

.contact-aside-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--teal);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.contact-aside p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ── Footer ── */

.site-footer {
  background: var(--teal);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 2.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-name {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
}

.footer-motto {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
}

.footer-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-center img {
  height: 60px;
  width: auto;
  filter: invert(1);
  opacity: 0.7;
}

.footer-contact-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: right;
}

.footer-contact-links li {
  font-size: 0.85rem;
}

.footer-contact-links a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.footer-contact-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.06em;
}

/* ── Responsive ── */

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-center { display: none; }
}

@media (max-width: 640px) {
  .container { padding: 0 1.5rem; }
  section { padding: 3.5rem 0; }
  .nav-inner { padding: 0.875rem 1.5rem; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(193, 162, 134, 0.35);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 0.9rem 1.5rem;
    font-size: 0.8rem;
  }

  .services-grid { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-contact-links { text-align: center; }
  .footer-brand { align-items: center; }
}

/* ── Events ── */

.events-section { background: var(--sand); }

.events-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.event-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 2rem;
  align-items: start;
  background: var(--cream);
  border-top: 2px solid var(--gold);
  padding: 2.25rem 2rem;
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
  background: var(--teal);
  color: var(--cream);
}

.event-date .event-month {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.event-date .event-day {
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 1;
  margin-top: 0.15rem;
}

.event-image {
  margin-bottom: 1.25rem;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: auto;
  display: block;
}

.event-body h3 {
  font-family: var(--font-serif);
  color: var(--teal);
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.event-meta {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.event-desc {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.event-footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.event-price {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--teal);
}

.events-empty {
  text-align: center;
  padding: 3rem 0 1rem;
}

.events-empty-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--teal);
  margin-bottom: 1rem;
}

.events-empty p:last-child {
  color: var(--gray);
}

@media (max-width: 640px) {
  .event-card {
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    padding: 1.75rem 1.5rem;
  }
  .event-date { padding: 0.6rem 0.9rem; }
  .event-date .event-day { font-size: 1.6rem; }
  .event-body h3 { font-size: 1.3rem; }
}

