:root {
  --ivory: #f8f1e8;
  --ivory-deep: #efe3d6;
  --paper: #fffaf3;
  --espresso: #2e201a;
  --navy: #14243a;
  --blush: #c9918f;
  --blush-soft: #ead2cf;
  --gold: #b08a4a;
  --sage: #65796d;
  --line: rgba(46, 32, 26, 0.16);
  --shadow: 0 22px 60px rgba(35, 26, 19, 0.12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--espresso);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 9vw, 6.7rem);
  margin-bottom: 1.4rem;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.15rem);
  margin-bottom: 1rem;
}

h3 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.18;
}

p {
  color: rgba(46, 32, 26, 0.78);
}

.container {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  padding: 0.7rem 1rem;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(46, 32, 26, 0.1);
  background: rgba(248, 241, 232, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--navy);
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(176, 138, 74, 0.55);
  border-radius: 50%;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 0.95rem;
}

.brand-name,
.footer-brand {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.1;
}

.brand-location {
  display: block;
  color: rgba(46, 32, 26, 0.68);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: rgba(46, 32, 26, 0.78);
  font-size: 0.93rem;
}

.site-nav a,
.footer-nav a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
  text-decoration-color: transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--navy);
  text-decoration-color: currentColor;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--navy);
}

.nav-toggle-line,
.nav-toggle-line::before,
.nav-toggle-line::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
}

.nav-toggle-line {
  position: relative;
}

.nav-toggle-line::before,
.nav-toggle-line::after {
  position: absolute;
  left: 0;
}

.nav-toggle-line::before {
  top: -6px;
}

.nav-toggle-line::after {
  top: 6px;
}

.section,
.section-band {
  padding: 96px 0;
}

.hero {
  padding-top: 82px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.76fr);
  gap: 4rem;
  align-items: center;
}

.eyebrow {
  margin-bottom: 0.85rem;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-intro {
  max-width: 670px;
  color: rgba(46, 32, 26, 0.82);
  font-size: clamp(1.1rem, 2vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--navy);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #203553;
}

.button-secondary {
  border-color: rgba(46, 32, 26, 0.2);
  background: rgba(255, 250, 243, 0.72);
  color: var(--navy);
}

.button-wide {
  width: 100%;
}

.hero-facts {
  display: grid;
  max-width: 560px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0;
}

.hero-facts div {
  border-left: 1px solid rgba(176, 138, 74, 0.55);
  padding-left: 0.9rem;
}

.hero-facts dt {
  color: rgba(46, 32, 26, 0.62);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0.1rem 0 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.hero-media {
  margin: 0;
}

.hero-media img {
  aspect-ratio: 4 / 5;
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero-media figcaption {
  margin-top: 0.8rem;
  color: rgba(46, 32, 26, 0.58);
  font-size: 0.83rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.section-heading p {
  font-size: 1.05rem;
}

.compact {
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 1.35rem;
}

.feature-card {
  border-color: rgba(176, 138, 74, 0.48);
  box-shadow: 0 18px 45px rgba(176, 138, 74, 0.12);
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.service-card h3 {
  margin-bottom: 0.8rem;
}

.price {
  flex: 0 0 auto;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
}

.duration {
  color: var(--sage);
  font-weight: 750;
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  padding-top: 2.4rem;
}

.plain-panel h3 {
  margin-bottom: 1rem;
}

.price-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(46, 32, 26, 0.1);
  padding-bottom: 0.75rem;
}

.price-list strong {
  color: var(--navy);
  text-align: right;
}

.small-note {
  color: rgba(46, 32, 26, 0.62);
  font-size: 0.92rem;
}

.section-tint {
  background: var(--ivory-deep);
}

.section-deep {
  background: var(--navy);
  color: #fff;
}

.section-deep h2,
.section-deep h3,
.section-deep .eyebrow,
.section-deep p {
  color: #fff;
}

.split,
.contact-layout,
.booking-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 64px;
  border-bottom: 1px solid rgba(46, 32, 26, 0.14);
  padding: 0 0 1rem 2rem;
  color: var(--navy);
  font-weight: 750;
}

.check-list li::before {
  position: absolute;
  top: 0.08rem;
  left: 0;
  color: var(--gold);
  content: "✓";
  font-weight: 900;
}

.text-measure {
  max-width: 780px;
}

.text-stack p:last-child,
.text-measure p:last-child {
  margin-bottom: 0;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.22);
}

.step-list li {
  min-height: 260px;
  background: var(--navy);
  padding: 1.25rem;
}

.step-list span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 1.5rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: #fff;
  font-family: var(--serif);
}

.step-list strong {
  display: block;
  margin-bottom: 0.7rem;
  color: #fff;
  font-size: 1.02rem;
  line-height: 1.25;
}

.step-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(46, 32, 26, 0.14);
  border-radius: 8px;
  background: var(--paper);
}

.gallery-item img {
  aspect-ratio: 4 / 5;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 0.85rem 1rem 1rem;
  color: var(--navy);
  font-weight: 750;
}

.testimonial-card {
  margin: 0;
}

.testimonial-card blockquote {
  margin: 0 0 1.2rem;
  color: rgba(46, 32, 26, 0.78);
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.4;
}

.testimonial-card figcaption {
  color: var(--sage);
  font-weight: 750;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 860px;
}

details {
  border: 1px solid rgba(46, 32, 26, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.72);
  padding: 1rem 1.15rem;
}

summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
}

details p {
  margin: 0.85rem 0 0;
}

.booking-section {
  background: var(--blush-soft);
}

.booking-panel {
  align-items: center;
}

.booking-action {
  width: min(100%, 430px);
  justify-self: end;
}

.contact-list {
  display: grid;
  gap: 0.85rem;
  font-style: normal;
}

.contact-list p {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.85rem;
}

.contact-list span {
  color: var(--sage);
  font-weight: 750;
}

.contact-list strong {
  color: var(--navy);
  overflow-wrap: anywhere;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--navy);
  color: #fff;
  padding: 42px 0;
}

.site-footer p,
.site-footer .small-note {
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand {
  color: #fff;
  text-decoration: none;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-content: flex-start;
  justify-content: flex-end;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

:focus-visible {
  outline: 3px solid rgba(176, 138, 74, 0.78);
  outline-offset: 3px;
}

@media (max-width: 940px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 78px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
    background: var(--ivory);
    padding: 1rem 18px 1.4rem;
  }

  .site-nav a {
    border-bottom: 1px solid rgba(46, 32, 26, 0.1);
    padding: 0.8rem 0;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .hero-grid,
  .split,
  .contact-layout,
  .booking-panel {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .hero-media {
    max-width: 680px;
  }

  .hero-media img {
    aspect-ratio: 16 / 10;
  }

  .service-grid,
  .pricing-layout,
  .check-list {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .step-list li {
    min-height: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-action {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .section,
  .section-band {
    padding: 68px 0;
  }

  .hero {
    padding-top: 56px;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .brand-location {
    display: none;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .service-card-top,
  .price-list li,
  .footer-grid {
    display: block;
  }

  .price-list strong {
    display: block;
    margin-top: 0.25rem;
    text-align: left;
  }

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

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

  .contact-list p {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
