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

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

:root {
  --bg:     #E8E5DF;
  --bg2:    #E8E5DF;
  --navy:   #1B2E4B;
  --gold:   #B8933A;
  --text:   #1B2E4B;
  --muted:  #6B6860;
  --faint:  #9A9790;
  --rule:   rgba(27,46,75,0.13);
}

html { scroll-behavior: smooth; font-size: 24px; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 110px;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 4vw;
}
.nav-left, .nav-right { display: flex; gap: 2rem; list-style: none; }
.nav-right { justify-content: flex-end; }
.nav-left a, .nav-right a {
  font-size: 0.78rem; font-weight: 300;
  letter-spacing: 0.08em; color: var(--navy);
  text-decoration: none; opacity: 0.65;
  transition: opacity 0.2s;
}
.nav-left a:hover, .nav-left a.active,
.nav-right a:hover, .nav-right a.active { opacity: 1; }
.nav-left a.active, .nav-right a.active { text-decoration: underline; text-underline-offset: 4px; }
.nav-center a { display: block; line-height: 0; }
.nav-logo { height: 80px; width: auto; }
.nav-right { display: flex; justify-content: flex-end; }
.btn-pill {
  font-size: 0.75rem; font-weight: 300;
  letter-spacing: 0.09em; color: var(--navy);
  border: 1px solid rgba(27,46,75,0.38);
  padding: 0.48rem 1.3rem; border-radius: 100px;
  text-decoration: none; white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.btn-pill:hover { background: var(--navy); color: var(--bg); }

.page-body { padding-top: 110px; }

/* HERO */
.hero {
  position: relative;
  height: calc(100vh - 110px);
  min-height: 480px;
  overflow: hidden;
}
.hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: brightness(0.48);
  display: block;
}
.hero-text {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center;
  padding: 0 6vw; gap: 1rem;
}
.hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.5vw, 3.6rem);
  font-weight: 300;
  font-style: italic;
  color: #F0EDE7; letter-spacing: 0.01em;
  line-height: 1.2;
}
.hero-text p {
  font-size: 0.78rem; font-weight: 300;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(240,237,231,0.55);
}

/* SPLIT */
.split { display: grid; grid-template-columns: 1fr 1fr; margin-top: 100px; }
.split-img { overflow: hidden; min-height: 480px; background: #2c2c2c; }
.split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-text {
  padding: 80px 6vw;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--bg2);
}
.split-text.light { background: var(--bg); }

/* TYPOGRAPHY */
.eyebrow {
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300; color: var(--navy);
  line-height: 1.15; margin-bottom: 1.3rem;
}
.section-title em {  }
.section-title.gold { color: var(--gold); }
.body-text {
  font-size: 0.9rem; line-height: 1.9;
  color: var(--muted); max-width: 520px;
}
.body-text + .body-text { margin-top: 1rem; }

/* BUTTONS */
.btn-dark {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.82rem 2.2rem;
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 100px;
  color: #F0EDE7;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem; font-weight: 300;
  letter-spacing: 0.12em;
  text-decoration: none; cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-top: 2rem; align-self: flex-start;
}
.btn-dark:hover { background: transparent; color: var(--navy); }
.btn-dark.centered { align-self: center; margin: 2rem auto 0; display: flex; width: fit-content; }

/* SERVICES PREVIEW */
.svc-preview { padding: 90px 10vw; background: var(--bg); }
.svc-preview-header { margin-bottom: 3.5rem; }
.svc-preview-header .section-title {
  font-size: clamp(1.7rem, 2.5vw, 2.4rem); margin-bottom: 0;
}
.svc-cols {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--rule);
}
.svc-col {
  background: var(--bg);
  padding: 2.2rem 1.8rem;
  transition: background 0.2s;
}
.svc-col:hover { background: var(--bg2); }
.svc-col h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 300;
  color: var(--navy); margin-bottom: 0.7rem;
}
.svc-col p { font-size: 0.86rem; line-height: 1.75; color: var(--muted); }

/* SERVICES FULL */
.svc-full { padding: 90px 10vw; background: var(--bg); }
.svc-full-header { margin-bottom: 4rem; }
.svc-cards {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--rule);
}
.svc-card {
  background: var(--bg);
  padding: 2.8rem 2rem;
  display: flex; flex-direction: column;
  transition: background 0.2s;
}
.svc-card:hover { background: var(--bg2); }
.svc-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; font-weight: 300;
  color: var(--navy); margin-bottom: 0.3rem;
}
.svc-card-price {
  font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.06em; color: var(--gold);
  margin-bottom: 1.2rem;
}
.svc-rule {
  width: 28px; height: 1px;
  background: var(--gold); opacity: 0.45;
  margin-bottom: 1.4rem;
}
.svc-tagline {
  font-size: 0.88rem; color: var(--muted);
  line-height: 1.65; margin-bottom: 1.6rem;
}
.svc-features {
  list-style: none; flex: 1;
  display: flex; flex-direction: column; gap: 0.65rem;
}
.svc-features li {
  font-size: 0.85rem; color: var(--muted);
  padding-left: 1rem; position: relative;
  line-height: 1.5;
}
.svc-features li::before {
  content: '–'; position: absolute; left: 0;
  color: var(--gold); opacity: 0.7;
}
.svc-cta { margin-top: 3.5rem; text-align: center; }

/* ABOUT */
.about-main { padding: 90px 10vw; }
.about-cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8vw; align-items: start;
}
.about-text-block { display: flex; flex-direction: column; }
.mvv { margin-top: 3.5rem; display: flex; flex-direction: column; gap: 2.5rem; }
.mvv-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-weight: 300;
  color: var(--navy); margin-bottom: 0.7rem;
}
.mvv-item p { font-size: 0.88rem; line-height: 1.85; color: var(--muted); }
.about-img-col { position: sticky; top: 116px; }
.about-img-col img { width: 100%; height: auto; display: block; }
.about-img-col .img-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: #2c2c2c;
}

/* TEAM */
.team-section { padding: 80px 10vw 100px; background: var(--bg2); }
.team-header { text-align: center; margin-bottom: 3.5rem; }
.team-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300; color: var(--navy);
}
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3vw; }
.team-card { display: flex; flex-direction: column; }
.team-photo {
  width: 100%; aspect-ratio: 1/1;
  background: #b8b4ac; overflow: hidden;
  margin-bottom: 1.2rem;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.team-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.team-photo-placeholder span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 300;
  color: rgba(27,46,75,0.22);
}
.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 300;
  color: var(--navy); margin-bottom: 0.15rem;
}
.team-role {
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.85rem;
}
.team-bio { font-size: 0.87rem; line-height: 1.8; color: var(--muted); }
.team-creds { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.9rem; }
.cred {
  font-size: 0.67rem; letter-spacing: 0.08em;
  color: var(--muted); border: 1px solid var(--rule);
  padding: 0.22rem 0.6rem; background: var(--bg);
}

/* CONTACT */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; }
.contact-form-col { padding: 90px 5vw 90px 10vw; }
.contact-form-col .section-title {
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  margin-bottom: 2.2rem;
}
.contact-photo { overflow: hidden; min-height: 700px; background: #2c2c2c; }
.contact-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.c-form { display: flex; flex-direction: column; gap: 1rem; max-width: 500px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.field { display: flex; flex-direction: column; gap: 0.38rem; }
.field label {
  font-size: 0.69rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy); opacity: 0.65;
}
.field input, .field select, .field textarea {
  padding: 0.78rem 0.9rem;
  border: 1px solid rgba(27,46,75,0.2);
  border-radius: 100px;
  background: #F2F0EB;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem; font-weight: 300;
  color: var(--text); outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--navy); background: #fff;
}
.field textarea { resize: vertical; min-height: 110px; border-radius: 20px; }
.form-submit { margin-top: 0.4rem; }
.form-success {
  display: none; margin-top: 1rem;
  padding: 1rem 1.2rem;
  border-left: 2px solid var(--gold);
  background: rgba(184,147,58,0.06);
  font-size: 0.87rem; color: var(--navy);
  line-height: 1.65; max-width: 500px;
}

/* FOOTER */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--rule);
  padding: 56px 10vw 44px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.4fr;
  gap: 3vw; align-items: start;
}
.footer-brand .f-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 300;
  color: var(--navy); margin-bottom: 0.75rem;
}
.footer-brand address {
  font-style: normal; font-size: 0.8rem;
  line-height: 2; color: var(--muted);
}
.footer-brand address a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.f-col h5 {
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 0.9rem;
}
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.f-col ul a { font-size: 0.82rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.f-col ul a:hover { color: var(--navy); }
.footer-verse {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; 
  font-style: italic;
  font-weight: 300; color: var(--navy);
  line-height: 1.65; opacity: 0.62;
}
.footer-verse cite {
  display: block;
  font-family: 'Jost', sans-serif;
  font-style: normal; font-size: 0.7rem;
  letter-spacing: 0.1em; color: var(--muted);
  margin-top: 0.6rem;
}
.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid var(--rule);
  margin-top: 2rem; padding-top: 1.2rem;
  font-size: 0.72rem; color: var(--faint);
  letter-spacing: 0.05em;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .split, .about-cols, .team-grid, .contact-wrap { grid-template-columns: 1fr; }
  .split-img { min-height: 300px; order: -1; }
  .svc-cols, .svc-cards { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr 1fr; }
  .footer-verse, .footer-bottom { grid-column: 1 / -1; }
  .f-row { grid-template-columns: 1fr; }
  .about-img-col { position: static; }

  /* NAV — logo top center, all three links on one row below */
  nav {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 12px 4vw 10px;
    gap: 8px;
  }
  .nav-center { order: 1; width: 100%; display: flex; justify-content: center; }
  .nav-logo { height: 52px; width: auto; }
  .nav-left { order: 2; gap: 1.8rem; }
  .nav-right { order: 2; margin-left: 1.8rem; }
  .nav-left a, .nav-right a { font-size: 0.72rem; }

  /* HERO — smaller text on mobile */
  .hero-text h1 { font-size: clamp(1.3rem, 5.5vw, 2rem); padding: 0 1rem; }

  /* HERO — smaller text */
  .hero-text h1 { font-size: clamp(1.4rem, 6vw, 2.2rem); }
  .page-body { padding-top: 110px; }
  .hero { height: calc(100vh - 110px); }

  /* SECTIONS */
  .section-wrap { padding: 60px 6vw; }
  .svc-full { padding: 60px 6vw; }
  .about-main { padding: 60px 6vw; }
  .team-section { padding: 60px 6vw 80px; }
  .contact-form-col { padding: 60px 6vw; }
  .svc-preview { padding: 60px 6vw; }
  footer { padding: 40px 6vw 32px; }
}
