:root {
  --ivory: #f4f1e9;
  --ink: #1e241f;
  --pine: #1b2a22;
  --moss: #2c4034;
  --gold: #b89c64;
  --gold-rgb: 184, 156, 100;
  --bronze: #77602b;
  --sand: #eae5d7;
  --sand-deep: #e2dcc9;
  --cream: #f4f1e9;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

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

a {
  color: var(--bronze);
  text-decoration: none;
}

a:hover {
  color: var(--ink);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--pine);
  padding: 12px 20px;
  z-index: 100;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.skip-link:focus {
  left: 0;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  display: block;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: clamp(24px, 6vw, 88px);
  padding-right: clamp(24px, 6vw, 88px);
}

.section {
  padding-top: clamp(72px, 10vh, 120px);
  padding-bottom: clamp(72px, 10vh, 120px);
}

section[id] {
  scroll-margin-top: 24px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 20px;
}

.on-dark .eyebrow,
.eyebrow.gold {
  color: var(--gold);
}

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

.heading-lg {
  font-size: clamp(32px, 3.6vw, 48px);
}

.heading-md {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 30px);
}

.on-dark {
  background: var(--pine);
  color: var(--ivory);
}

.on-moss {
  background: var(--moss);
  color: var(--ivory);
}

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  padding: 17px 40px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

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

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

.btn-outline-light {
  border-color: rgba(244, 241, 233, 0.4);
  color: var(--ivory);
}

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

.text-link {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}

@media (max-width: 720px) {
  .text-link {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}

.on-dark .text-link {
  color: rgba(244, 241, 233, 0.8);
}

.on-dark .text-link:hover {
  color: var(--gold);
}

.gold-rule {
  width: 56px;
  height: 1px;
  background: var(--gold);
  border: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.offer-bar {
  background: var(--gold);
  color: var(--pine);
}

.offer-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 22px;
  padding-top: 11px;
  padding-bottom: 11px;
}

.offer-bar p {
  font-size: 14px;
}

.offer-bar strong {
  font-weight: 500;
}

.offer-bar a {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pine);
  border-bottom: 1px solid rgba(27, 42, 34, 0.4);
  padding-bottom: 3px;
  transition: border-color 0.3s ease;
}

.offer-bar a:hover {
  border-bottom-color: var(--pine);
}

@media (max-width: 480px) {
  .offer-bar .container {
    gap: 4px 16px;
  }

  .offer-bar p {
    font-size: 13px;
  }

  .offer-bar a {
    font-size: 11px;
    letter-spacing: 0.14em;
  }
}

.site-header {
  background: var(--pine);
  color: var(--ivory);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  border-bottom: 1px solid rgba(244, 241, 233, 0.14);
  flex-wrap: wrap;
  gap: 16px;
}

.wordmark {
  display: flex;
  align-items: center;
  line-height: 1;
  color: var(--ivory);
}

.header-logo {
  height: 64px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 241, 233, 0.78);
}

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

.nav-book {
  background: var(--gold);
  color: var(--pine) !important;
  padding: 12px 26px;
  transition: background 0.3s ease;
}

.nav-book:hover {
  background: var(--ivory);
}

@media (max-width: 860px) {
  .nav {
    padding: 16px 0;
    flex-wrap: nowrap;
  }

  .nav-links a:not(.nav-book) {
    display: none;
  }

  .header-logo {
    height: 52px;
  }
}

@media (max-width: 420px) {
  .header-logo {
    height: 42px;
  }

  .nav-book {
    padding: 11px 20px;
    font-size: 12px;
  }
}

.photo-slot {
  position: relative;
  overflow: hidden;
}

.tone-sand {
  background: var(--sand-deep);
}

.tone-moss {
  background: var(--moss);
}

.tone-pine {
  background: var(--pine);
}

.arch {
  border-radius: 999px 999px 0 0;
}

.photo-slot .photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(72px, 10vh, 130px) clamp(40px, 5vw, 96px) clamp(72px, 10vh, 130px)
    calc(max((100vw - 1240px) / 2, 0px) + clamp(24px, 6vw, 88px));
}

.hero-text .eyebrow {
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(52px, 5.4vw, 84px);
  line-height: 1.04;
  max-width: 12ch;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-rule {
  margin: 32px 0;
}

.hero-lede {
  font-weight: 300;
  font-size: clamp(17px, 1.7vw, 19.5px);
  line-height: 1.6;
  max-width: 36ch;
}

.hero-sub {
  margin-top: 18px;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  max-width: 52ch;
  color: rgba(244, 241, 233, 0.72);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 42px;
}

.hero-photo {
  min-height: 560px;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(40px, 6vh, 64px);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 44px);
}

.service-photo {
  height: 300px;
}

.service-body {
  border-bottom: 1px solid var(--sand-deep);
  padding: 26px 4px 30px;
}

.service-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--moss);
  margin-bottom: 10px;
}

.service-body h3 {
  margin-bottom: 12px;
}

.service-copy {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(30, 36, 31, 0.72);
}

.services-note {
  margin-top: 32px;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(30, 36, 31, 0.6);
}

.come-to-you {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 88px);
  align-items: center;
}

.iv-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--gold);
  margin: 10px 0 18px;
}

.come-lede {
  margin-bottom: 34px;
}

.come-lede p {
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.8;
  max-width: 58ch;
  color: rgba(244, 241, 233, 0.82);
}

.come-lede p + p {
  margin-top: 14px;
}

.come-cta {
  margin-top: 24px;
}

.occasion-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 36px;
}

.occasion-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(244, 241, 233, 0.18);
  padding: 11px 2px;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: rgba(244, 241, 233, 0.85);
}

.occasion-icon {
  font-size: 18px;
  color: var(--gold);
}

.arrival-photo {
  min-height: 520px;
  max-height: 780px;
  align-self: stretch;
}

.group-offer {
  margin-top: clamp(48px, 7vh, 80px);
  padding: clamp(28px, 3.6vw, 48px);
  border: 1px solid rgba(var(--gold-rgb), 0.5);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px clamp(32px, 5vw, 64px);
  align-items: center;
}

.group-offer .eyebrow {
  margin-bottom: 14px;
}

.group-offer-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.2;
  max-width: 22ch;
}

.group-offer-lede {
  margin-top: 16px;
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.8;
  max-width: 58ch;
  color: rgba(244, 241, 233, 0.82);
}

.group-offer-lede strong {
  font-weight: 500;
  color: var(--gold);
}

.group-offer-btn {
  white-space: nowrap;
}

.group-offer-fine {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid rgba(244, 241, 233, 0.16);
  font-weight: 300;
  font-size: 12.5px;
  line-height: 1.75;
  color: rgba(244, 241, 233, 0.55);
}

.team-head {
  text-align: center;
  margin-bottom: clamp(44px, 7vh, 72px);
}

.team-head .eyebrow {
  margin-bottom: 14px;
}

.member {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  grid-template-areas:
    'head portrait'
    'bio portrait';
  column-gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.member + .member {
  margin-top: clamp(56px, 9vh, 104px);
  padding-top: clamp(56px, 9vh, 104px);
  border-top: 1px solid var(--sand-deep);
}

.member-head {
  grid-area: head;
  margin-bottom: 28px;
}

.member-bio {
  grid-area: bio;
}

.credentials {
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--moss);
  margin-top: 14px;
}

.member-bio p {
  max-width: 60ch;
  margin-bottom: 18px;
}

.portrait-frame {
  grid-area: portrait;
  position: relative;
  padding: 0 18px 18px 0;
  max-width: 440px;
  width: 100%;
  justify-self: end;
}

.portrait-outline {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 0;
  bottom: 0;
  border: 1px solid var(--gold);
}

.portrait-photo {
  position: relative;
}

.closing {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(80px, 11vh, 130px) 0;
}

.closing-mark {
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 380px;
  opacity: 0.07;
  pointer-events: none;
}

.closing-inner {
  position: relative;
}

.closing-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.4vw, 58px);
  max-width: 20ch;
  margin: 0 auto;
}

.closing-lede {
  max-width: 52ch;
  margin: 22px auto 0;
  color: rgba(244, 241, 233, 0.78);
}

.book-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(22px, 3vw, 40px);
  max-width: 980px;
  margin: clamp(36px, 5vh, 52px) auto 0;
  text-align: left;
}

.book-steps li {
  padding-top: 18px;
  border-top: 1px solid rgba(var(--gold-rgb), 0.45);
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(244, 241, 233, 0.8);
}

.book-step-num {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 21px;
  color: var(--gold);
}

.book-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}

.book-btn-icon {
  font-size: 15px;
}

.booking-note {
  margin-top: 16px;
  font-weight: 300;
  font-size: 13px;
  color: rgba(244, 241, 233, 0.6);
}

.booking-contact {
  margin-top: 10px;
  font-weight: 300;
  font-size: 14px;
  color: rgba(244, 241, 233, 0.72);
}

.booking-contact a {
  color: var(--gold);
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.45);
}

.booking-contact a:hover {
  color: var(--ivory);
  border-bottom-color: var(--ivory);
}

.closing-signoff {
  max-width: 46ch;
  margin: 30px auto 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.5;
  color: rgba(244, 241, 233, 0.9);
}

.treatment-disclaimer {
  margin-top: 32px;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(244, 241, 233, 0.62);
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-text {
    padding: clamp(56px, 8vh, 96px) clamp(24px, 6vw, 88px);
  }

  .hero-photo {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .service-cards {
    grid-template-columns: 1fr;
    justify-items: center;
    max-width: 400px;
    margin: 0 auto;
  }

  .service-card {
    width: 100%;
  }

  .services-note {
    text-align: center;
  }

  .come-to-you {
    grid-template-columns: 1fr;
  }

  .arrival-photo {
    min-height: 320px;
  }

  .group-offer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .book-steps {
    grid-template-columns: 1fr 1fr;
  }

  .member {
    grid-template-columns: 1fr;
    grid-template-areas:
      'head'
      'portrait'
      'bio';
    row-gap: 28px;
  }

  .member-head {
    margin-bottom: 0;
  }

  .portrait-frame {
    justify-self: start;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .occasion-list {
    grid-template-columns: 1fr;
  }

  .book-steps {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .group-offer-btn {
    width: 100%;
  }

  .portrait-frame {
    padding: 0 12px 12px 0;
  }

  .portrait-outline {
    top: 12px;
    left: 12px;
  }
}

.site-footer {
  background: var(--pine);
  color: var(--ivory);
  padding: clamp(48px, 7vh, 76px) 0 36px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(244, 241, 233, 0.14);
}

.footer-logo {
  width: 180px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 300;
  font-size: 14.5px;
}

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(244, 241, 233, 0.75);
}

.footer-contact .icon {
  font-size: 16px;
  color: var(--gold);
}

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

.footer-disclaimer {
  border-bottom: 1px solid rgba(244, 241, 233, 0.14);
}

.footer-disclaimer summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-disclaimer summary::-webkit-details-marker {
  display: none;
}

.disclaimer-chevron {
  font-size: 15px;
  transition: transform 0.25s ease;
}

.footer-disclaimer[open] .disclaimer-chevron {
  transform: rotate(180deg);
}

.footer-disclaimer summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.footer-disclaimer p {
  padding: 0 0 22px;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(244, 241, 233, 0.62);
  max-width: 88ch;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px 32px;
  flex-wrap: wrap;
  padding-top: 24px;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
}

.footer-legal-links a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 241, 233, 0.7);
  padding: 4px 0;
}

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

.footer-copyright {
  font-weight: 300;
  font-size: 12.5px;
  color: rgba(244, 241, 233, 0.5);
}

@media (max-width: 720px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding-bottom: 30px;
  }

  .footer-logo {
    width: 200px;
  }

  .footer-contact {
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
  }

  .footer-disclaimer summary {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-legal-links {
    justify-content: center;
    gap: 12px 22px;
  }
}

.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(64px, 9vh, 104px) clamp(24px, 6vw, 88px);
}

.legal h1 {
  font-size: clamp(34px, 4vw, 48px);
  margin-bottom: 8px;
}

.legal .legal-updated {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 36px;
}

.legal h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  margin: 40px 0 14px;
}

.legal h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.04em;
  margin: 28px 0 10px;
}

.legal p {
  margin: 0 0 16px;
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(30, 36, 31, 0.85);
}

.legal ul {
  margin: 0 0 16px;
  padding-left: 24px;
}

.legal li {
  margin-bottom: 8px;
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(30, 36, 31, 0.85);
}

.legal ul ul {
  margin-top: 8px;
}

.legal a {
  border-bottom: 1px solid var(--gold);
  overflow-wrap: anywhere;
}

.legal .legal-address {
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(30, 36, 31, 0.85);
  font-style: normal;
  margin-bottom: 16px;
}
