:root {
  --ink: #151211;
  --ink-soft: #3e3936;
  --paper: #f8f5ef;
  --paper-deep: #eee6d8;
  --gold: #c08a3e;
  --gold-deep: #91652e;
  --teal: #24706c;
  --claret: #7d2638;
  --line: rgba(21, 18, 17, 0.14);
  --shadow: 0 24px 60px rgba(16, 13, 12, 0.16);
  --radius: 8px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Noto Sans SC",
    sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-180%);
  background: var(--paper);
  color: var(--ink);
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

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

.honeypot {
  display: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  color: #fff;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(248, 245, 239, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(20, 16, 15, 0.08);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.brand small {
  color: currentColor;
  font-size: 0.72rem;
  opacity: 0.74;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.5rem);
  font-size: 0.92rem;
  font-weight: 650;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 0.72rem 1rem;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 12, 11, 0.92) 0%, rgba(15, 12, 11, 0.7) 32%, rgba(15, 12, 11, 0.18) 70%),
    linear-gradient(0deg, rgba(15, 12, 11, 0.88) 0%, rgba(15, 12, 11, 0.05) 52%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
  padding: 9rem 0 7rem;
}

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

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 9vw, 7.35rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-subtitle {
  margin: 1rem 0 0;
  color: #f3dfbd;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: 750;
  line-height: 1.2;
}

.hero-copy {
  max-width: 690px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.82rem 1.16rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

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

.button.primary {
  background: var(--gold);
  color: #17120c;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.button.primary:hover {
  background: #d29c51;
  color: #17120c;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.button.secondary:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.hero-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(18, 14, 13, 0.66);
  backdrop-filter: blur(16px);
}

.hero-strip span {
  min-height: 64px;
  display: grid;
  place-items: center;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 750;
  text-align: center;
}

.hero-strip span:last-child {
  border-right: 0;
}

.section,
.band {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.band {
  background: var(--ink);
  color: #fff;
}

.band p {
  color: rgba(255, 255, 255, 0.76);
}

.band h2 {
  color: #fff;
}

.section-inner {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.two-column,
.booking-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-heading.compact {
  max-width: 680px;
  margin-bottom: 2rem;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.22;
}

p {
  margin: 0;
}

.lead-block {
  display: grid;
  gap: 1rem;
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.performance-video {
  background:
    linear-gradient(135deg, rgba(125, 38, 56, 0.08), transparent 32%),
    linear-gradient(315deg, rgba(36, 112, 108, 0.08), transparent 30%),
    var(--paper);
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.video-layout .section-heading {
  margin-bottom: 0;
}

.video-layout .section-heading p:not(.eyebrow) {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0f0d0c;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.service-grid,
.reason-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.service-card,
.reason-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 12px 34px rgba(20, 16, 15, 0.06);
}

.service-card {
  min-height: 460px;
  display: grid;
  grid-template-rows: 42px 72px 190px auto auto;
  gap: 1rem;
  padding: 1.25rem;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(192, 138, 62, 0.55);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(20, 16, 15, 0.12);
}

.service-number {
  width: fit-content;
  height: 42px;
  display: flex;
  align-items: flex-start;
  color: var(--claret);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  line-height: 1;
}

.service-card h3 {
  min-height: 56px;
}

.service-copy {
  height: 190px;
  min-height: 0;
  overflow: hidden;
}

.service-card p,
.reason-grid p {
  color: var(--ink-soft);
}

.service-card .service-fit {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.service-select {
  min-height: 42px;
  border: 1px solid rgba(21, 18, 17, 0.16);
  border-radius: var(--radius);
  background: rgba(36, 112, 108, 0.08);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.service-select:hover,
.service-select:focus-visible {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
  transform: translateY(-1px);
}

.reason-grid article {
  display: grid;
  gap: 0.75rem;
  padding: 1.2rem;
  border-top: 4px solid var(--teal);
}

.reason-grid article:nth-child(2) {
  border-top-color: var(--gold);
}

.reason-grid article:nth-child(3) {
  border-top-color: var(--claret);
}

.reason-grid article:nth-child(4) {
  border-top-color: var(--ink-soft);
}

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

.process-list li {
  position: relative;
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 0.85rem;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.process-list span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 850;
}

.process-list h3 {
  color: #fff;
}

.booking {
  background:
    linear-gradient(135deg, rgba(36, 112, 108, 0.1), transparent 34%),
    linear-gradient(315deg, rgba(125, 38, 56, 0.1), transparent 30%),
    var(--paper);
}

.booking-copy {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 1rem;
}

.booking-copy p {
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.booking-copy a {
  color: var(--claret);
  font-weight: 800;
}

.contact-card {
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
  padding: 1.1rem;
  border-left: 4px solid var(--teal);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-card span {
  color: var(--ink-soft);
}

.booking-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

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

.form-row {
  display: grid;
  gap: 0.45rem;
}

label {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.optional-label {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 650;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(21, 18, 17, 0.18);
  border-radius: var(--radius);
  background: #fbfaf7;
  color: var(--ink);
  padding: 0.86rem 0.9rem;
  outline: none;
  transition:
    border-color 140ms ease,
    box-shadow 140ms ease,
    background 140ms ease;
}

select {
  min-height: 51px;
}

textarea {
  resize: vertical;
  min-height: 132px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(36, 112, 108, 0.14);
  background: #fff;
}

.form-submit {
  width: 100%;
  margin-top: 0.25rem;
  border-radius: var(--radius);
}

.form-note {
  color: var(--ink-soft);
  font-size: 0.9rem;
  text-align: center;
}

.form-note.is-error {
  color: var(--claret);
  font-weight: 800;
}

.form-note.is-success {
  color: var(--teal);
  font-weight: 800;
}

.booking-dialog {
  width: min(480px, calc(100% - 2rem));
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.booking-dialog::backdrop {
  background: rgba(12, 10, 9, 0.72);
  backdrop-filter: blur(8px);
}

.dialog-panel {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 4vw, 1.75rem);
}

.dialog-panel h2 {
  font-size: clamp(2rem, 7vw, 3.2rem);
}

.dialog-panel p:not(.eyebrow) {
  color: var(--ink-soft);
}

.dialog-panel .button {
  width: fit-content;
  min-width: 140px;
  border-radius: var(--radius);
}

.faq-layout {
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

summary {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--gold);
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 1.1rem 1.1rem;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  padding: 2rem 0;
  background: #0e0c0b;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-inner strong,
.footer-inner span {
  display: block;
}

.footer-inner strong {
  color: #fff;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

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

@media (max-width: 960px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    z-index: 30;
    display: grid;
    gap: 0;
    padding: 0.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(248, 245, 239, 0.98);
    color: var(--ink);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.9rem 0.8rem;
    border-radius: 6px;
  }

  .site-nav a:hover {
    background: rgba(36, 112, 108, 0.08);
  }

  .nav-cta {
    border-color: var(--line);
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(15, 12, 11, 0.9) 0%, rgba(15, 12, 11, 0.58) 55%, rgba(15, 12, 11, 0.2) 100%),
      linear-gradient(0deg, rgba(15, 12, 11, 0.92) 0%, rgba(15, 12, 11, 0.08) 58%);
  }

  .two-column,
  .booking-layout,
  .faq-layout,
  .video-layout {
    grid-template-columns: 1fr;
  }

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

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

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

  .booking-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 0.75rem 1rem;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: auto;
    display: block;
    overflow: visible;
  }

  .hero-media {
    position: relative;
    inset: auto;
    height: min(68vh, 560px);
    min-height: 430px;
  }

  .hero-media img {
    position: absolute;
    inset: 0;
    object-position: 50% center;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(15, 12, 11, 0.06) 0%, rgba(15, 12, 11, 0.12) 55%, rgba(15, 12, 11, 0.74) 100%);
  }

  .hero-content {
    width: 100%;
    padding: 2rem 1rem 2.5rem;
    background: var(--ink);
  }

  .hero h1 {
    font-size: clamp(3.05rem, 16vw, 4.6rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .hero-strip span {
    min-height: 56px;
    font-size: 0.9rem;
  }

  .service-grid,
  .reason-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    grid-template-rows: auto auto auto auto auto;
  }

  .service-card h3 {
    min-height: auto;
  }

  .booking-form {
    padding: 1rem;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    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;
  }
}
