:root {
  --ink: #070706;
  --ink-soft: #11100f;
  --ivory: #f3eee6;
  --muted: #aaa39a;
  --gold: #b99a68;
  --line: rgba(243, 238, 230, 0.18);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { display: block; max-width: 100%; }

.shell { width: min(var(--max), calc(100% - 56px)); margin: 0 auto; }
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: 84px;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease;
}
.site-header.scrolled { background: rgba(7, 7, 6, .9); border-color: var(--line); backdrop-filter: blur(14px); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.35rem; letter-spacing: .22em; white-space: nowrap; }
.brand span { color: var(--gold); }
.desktop-nav { display: flex; align-items: center; gap: clamp(15px, 2vw, 30px); }
.desktop-nav a { font-size: .73rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(243, 238, 230, .82); }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: var(--gold); }
.booking-button, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 0 24px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--ivory);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .25s ease, background .25s ease;
}
.booking-button:hover, .button:hover { color: var(--ink); background: var(--gold); }
.button.solid { color: var(--ink); background: var(--gold); }
.button.solid:hover { background: var(--ivory); border-color: var(--ivory); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; background: transparent; color: var(--ivory); cursor: pointer; }
.menu-toggle span { display: block; width: 28px; height: 1px; margin: 7px auto; background: currentColor; }
.mobile-menu { display: none; }

/* Single-screen home */
.landing-page { height: 100%; overflow: hidden; }
.landing-page .site-header { background: linear-gradient(180deg, rgba(7,7,6,.5), transparent); }
.landing-page .site-header.scrolled { border-color: transparent; background: linear-gradient(180deg, rgba(7,7,6,.5), transparent); backdrop-filter: none; }
.landing-page .landing-brand { display: inline-flex; align-items: baseline; line-height: 1; letter-spacing: 0; }
.landing-page .landing-brand .brand-k { font-family: "Italianno", "Cormorant Garamond", cursive; font-size: 4.5rem; font-weight: 400; line-height: .55; }
.landing-page .landing-brand .brand-rest { margin-left: .04em; font-family: "Inter", Arial, sans-serif; font-size: .9rem; font-weight: 500; letter-spacing: .38em; }
.landing-page .menu-toggle { display: block; position: relative; z-index: 45; }
.landing-page .mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: grid;
  align-content: center;
  padding: 100px 28px 40px;
  background: rgba(7,7,6,.98);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
  transition: opacity .25s ease, transform .25s ease;
}
.landing-page .mobile-menu.open { opacity: 1; pointer-events: auto; transform: none; }
.landing-page .mobile-menu a {
  width: min(620px, 100%);
  margin: 0 auto;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 4.2vw, 3.1rem);
  line-height: 1.05;
}
.landing-page .mobile-menu a:hover,
.landing-page .mobile-menu a[aria-current="page"] { color: var(--gold); }
.landing-page .mobile-menu .mobile-booking {
  margin-top: 22px;
  border: 1px solid var(--gold);
  padding: 13px 20px;
  font-family: "Inter", Arial, sans-serif;
  font-size: .75rem;
  letter-spacing: .18em;
  text-align: center;
  text-transform: uppercase;
}
.landing-page .home-hero { min-height: 100svh; align-items: start; }
.landing-page .home-hero .hero-media img { object-position: center center; }
.landing-page .home-hero::after {
  background: linear-gradient(90deg, rgba(7,7,6,.76) 0%, rgba(7,7,6,.34) 43%, rgba(7,7,6,.02) 70%), linear-gradient(0deg, rgba(7,7,6,.48), transparent 42%);
}
.landing-page .landing-violin {
  position: absolute;
  top: 5svh;
  right: clamp(90px, 13vw, 270px);
  z-index: 1;
  width: auto;
  height: 90svh;
  max-width: none;
  pointer-events: none;
  filter: drop-shadow(0 24px 32px rgba(0,0,0,.48));
}
.landing-page .landing-intro-shade {
  position: absolute;
  inset: 0;
  z-index: 20;
  background: #000;
  pointer-events: none;
  animation: landing-reveal 1.35s cubic-bezier(.22,.61,.36,1) 1.65s forwards;
}
.landing-page .landing-violin-leds {
  z-index: 21;
  opacity: 0;
  filter: drop-shadow(0 0 8px rgba(255,105,0,.95)) drop-shadow(0 0 24px rgba(255,92,0,.62));
  animation: landing-led-ignite .9s ease .5s both, landing-led-handoff .7s ease 2.5s forwards;
}
.landing-page .site-header,
.landing-page .hero-content,
.landing-page .landing-socials { animation: landing-ui-in .8s ease 2.45s both; }
.landing-page .hero-content { width: min(var(--max), calc(100% - 56px)); max-width: none; margin: 0 auto; padding: 18vh 0 0; }
.landing-page .hero-lead { max-width: 650px; margin: 0; font-family: "Inter", Arial, sans-serif; font-size: .78rem; letter-spacing: .34em; text-transform: uppercase; }
.landing-page .landing-socials {
  position: absolute;
  left: max(28px, calc((100vw - var(--max)) / 2));
  bottom: 34px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
}
.landing-page .landing-socials .social-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(243,238,230,.55);
  border-radius: 50%;
  color: var(--ivory);
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}
.landing-page .landing-socials .social-icon:hover { color: var(--ink); border-color: var(--gold); background: var(--gold); }
.landing-page .landing-booking {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
  padding: 0 23px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: background .25s ease, border-color .25s ease;
}
.landing-page .landing-booking:hover { border-color: var(--ivory); background: var(--ivory); }
.landing-page .landing-socials svg { width: 20px; height: 20px; fill: currentColor; }
.landing-page .landing-socials svg rect,
.landing-page .landing-socials svg circle:not(.icon-fill) { fill: none; stroke: currentColor; stroke-width: 1.7; }
.landing-page .landing-socials svg .icon-fill { stroke: none; fill: currentColor; }

@keyframes landing-led-ignite {
  0% { opacity: 0; filter: brightness(.15) drop-shadow(0 0 0 rgba(255,105,0,0)); }
  55% { opacity: .72; filter: brightness(.88) drop-shadow(0 0 7px rgba(255,105,0,.72)); }
  100% { opacity: 1; filter: brightness(1.22) drop-shadow(0 0 10px rgba(255,105,0,.98)) drop-shadow(0 0 28px rgba(255,92,0,.68)); }
}
@keyframes landing-reveal {
  from { opacity: 1; }
  to { opacity: 0; visibility: hidden; }
}
@keyframes landing-led-handoff {
  from { opacity: 1; }
  to { opacity: 0; }
}
@keyframes landing-ui-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Single-screen service pages */
.detail-page { height: 100%; overflow: hidden; }
.detail-page .site-header { background: linear-gradient(180deg, rgba(7,7,6,.58), transparent); }
.detail-page .site-header.scrolled { border-color: transparent; background: linear-gradient(180deg, rgba(7,7,6,.58), transparent); backdrop-filter: none; }
.detail-page .landing-brand { display: inline-flex; align-items: baseline; line-height: 1; letter-spacing: 0; }
.detail-page .landing-brand .brand-k { font-family: "Italianno", "Cormorant Garamond", cursive; font-size: 4.5rem; font-weight: 400; line-height: .55; }
.detail-page .landing-brand .brand-rest { margin-left: .04em; font-family: "Inter", Arial, sans-serif; font-size: .9rem; font-weight: 500; letter-spacing: .38em; }
.detail-page .menu-toggle { display: block; position: relative; z-index: 45; }
.detail-page .mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: grid;
  align-content: center;
  padding: 100px 28px 40px;
  background: rgba(7,7,6,.98);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
  transition: opacity .25s ease, transform .25s ease;
}
.detail-page .mobile-menu.open { opacity: 1; pointer-events: auto; transform: none; }
.detail-page .mobile-menu a {
  width: min(620px, 100%);
  margin: 0 auto;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 4.2vw, 3.1rem);
  line-height: 1.05;
}
.detail-page .mobile-menu a:hover,
.detail-page .mobile-menu a[aria-current="page"] { color: var(--gold); }
.detail-page .mobile-menu .mobile-booking {
  margin-top: 22px;
  border: 1px solid var(--gold);
  padding: 13px 20px;
  font-family: "Inter", Arial, sans-serif;
  font-size: .75rem;
  letter-spacing: .18em;
  text-align: center;
  text-transform: uppercase;
}
.detail-page .page-hero { min-height: 100svh; }
.detail-page .page-hero .hero-media img { object-position: center; }
.detail-page .page-hero::after {
  background: linear-gradient(90deg, rgba(7,7,6,.86) 0%, rgba(7,7,6,.42) 48%, rgba(7,7,6,.08) 78%), linear-gradient(0deg, rgba(7,7,6,.56), transparent 48%);
}
.detail-page .page-hero .hero-content { padding-bottom: clamp(54px, 9vh, 96px); max-width: 900px; }
.detail-page .display-title { margin-bottom: 24px; }
.detail-page .hero-lead { margin-top: 0; max-width: 650px; }

.hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #090807;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 69% center; }
.home-hero .hero-media img { object-position: 60% 44%; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7,7,6,.98) 0%, rgba(7,7,6,.82) 35%, rgba(7,7,6,.2) 73%), linear-gradient(0deg, rgba(7,7,6,.84), transparent 48%);
}
.hero-content { padding: 160px 0 68px; max-width: 780px; }
.eyebrow { color: var(--gold); font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; }
.display-title {
  margin: 22px 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(5rem, 12vw, 10.5rem);
  font-weight: 300;
  line-height: .72;
  letter-spacing: -.045em;
}
.display-title span { display: block; margin-left: .46em; font-style: italic; color: var(--gold); }
.hero-lead { max-width: 570px; margin: 34px 0 0; color: rgba(243,238,230,.82); font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(1.3rem, 2vw, 1.8rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.scroll-note { position: absolute; right: 28px; bottom: 34px; writing-mode: vertical-rl; color: rgba(243,238,230,.58); font-size: .68rem; letter-spacing: .25em; text-transform: uppercase; }

.page-hero { min-height: 74svh; }
.page-hero .hero-content { padding-bottom: 62px; max-width: 940px; }
.page-hero .display-title { font-size: clamp(4rem, 9vw, 8.4rem); line-height: .82; }
.page-hero::after { background: linear-gradient(90deg, rgba(7,7,6,.96), rgba(7,7,6,.43) 66%, rgba(7,7,6,.18)), linear-gradient(0deg, rgba(7,7,6,.9), transparent 52%); }

.section { padding: clamp(88px, 11vw, 150px) 0; border-top: 1px solid var(--line); }
.section.alt { background: var(--ink-soft); }
.section-head { display: grid; grid-template-columns: 110px 1fr; gap: 24px; margin-bottom: 62px; }
.section-number { color: var(--gold); font-size: .72rem; letter-spacing: .24em; }
.section-title { margin: 0; max-width: 900px; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(3rem, 6vw, 6.2rem); font-weight: 300; line-height: .95; }
.section-title em { color: var(--gold); font-weight: 300; }
.intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(48px, 8vw, 120px); align-items: start; }
.intro-copy { font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(1.55rem, 2.8vw, 2.55rem); line-height: 1.25; }
.body-copy { color: rgba(243,238,230,.7); max-width: 650px; }
.facts { margin-top: 44px; border-top: 1px solid var(--line); }
.fact { display: grid; grid-template-columns: 55px 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.fact b { color: var(--gold); font-weight: 400; }

.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.service-card { position: relative; min-height: 280px; padding: 34px 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .25s ease; }
.service-card:nth-child(even) { border-right: 0; }
.service-card:hover { background: rgba(185,154,104,.08); }
.service-card .index { color: var(--gold); font-size: .72rem; letter-spacing: .2em; }
.service-card h3 { margin: 44px 0 12px; max-width: 520px; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(2.1rem, 4vw, 3.7rem); font-weight: 300; line-height: 1; }
.service-card p { max-width: 480px; margin: 0; color: var(--muted); }
.service-card .arrow { position: absolute; right: 32px; bottom: 26px; color: var(--gold); font-size: 1.5rem; }

.experience { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(55px, 9vw, 130px); }
.quote { margin: 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(2.1rem, 4vw, 4.4rem); line-height: 1.04; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 48px; background: var(--line); border: 1px solid var(--line); }
.stat { padding: 30px 18px; text-align: center; background: var(--ink); }
.stat strong { display: block; color: var(--gold); font-family: "Cormorant Garamond", Georgia, serif; font-size: 2.6rem; font-weight: 300; }
.stat span { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

.offer-list { border-top: 1px solid var(--line); }
.offer { padding: 30px 0; border-bottom: 1px solid var(--line); }
.offer summary { list-style: none; display: grid; grid-template-columns: 70px 1fr auto; gap: 22px; align-items: center; cursor: pointer; }
.offer summary::-webkit-details-marker { display: none; }
.offer-number { color: var(--gold); font-size: .72rem; letter-spacing: .2em; }
.offer h2 { margin: 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(2rem, 4vw, 4rem); font-weight: 300; line-height: 1; }
.offer-icon { color: var(--gold); font-size: 1.9rem; font-weight: 200; transition: transform .25s ease; }
.offer[open] .offer-icon { transform: rotate(45deg); }
.offer-body { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(35px, 7vw, 90px); padding: 38px 0 16px 92px; }
.offer-body p, .offer-body li { color: rgba(243,238,230,.72); }
.offer-body ul { padding-left: 20px; }
.price-panel { padding: 26px; border: 1px solid rgba(185,154,104,.45); background: rgba(185,154,104,.06); }
.price-panel h3 { margin: 0 0 16px; color: var(--gold); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.8rem; font-weight: 400; }
.price-panel p { margin: 7px 0; }
.fineprint { margin-top: 18px; font-size: .82rem; color: var(--muted); }

.booking-section { background: var(--ivory); color: var(--ink); }
.booking-section .section-number, .booking-section .eyebrow { color: #80643a; }
.booking-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 8vw, 110px); }
.booking-copy h2 { margin: 12px 0 18px; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(3.8rem, 7vw, 7.2rem); font-weight: 300; line-height: .86; }
.booking-copy p { color: rgba(7,7,6,.68); }
.booking-email { display: inline-block; margin-top: 20px; border-bottom: 1px solid #80643a; }
.booking-form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 7px; font-size: .69rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; padding: 15px 0; border: 0; border-bottom: 1px solid rgba(7,7,6,.32); border-radius: 0; background: transparent; color: var(--ink); outline: 0; }
.field textarea { min-height: 100px; resize: vertical; }
.booking-form .button { grid-column: 1 / -1; justify-self: start; background: var(--ink); border-color: var(--ink); color: var(--ivory); }
.booking-form .button:hover { background: #80643a; border-color: #80643a; }

.site-footer { padding: 48px 0; border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; }
.footer-brand { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.3rem; letter-spacing: .2em; }
.socials { display: flex; gap: 22px; }
.socials a { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.socials a:hover { color: var(--gold); }
.copyright { justify-self: end; color: var(--muted); font-size: .72rem; }

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu { position: fixed; inset: 0; z-index: 35; display: grid; align-content: center; padding: 100px 28px 40px; background: rgba(7,7,6,.98); opacity: 0; pointer-events: none; transform: translateY(-18px); transition: opacity .25s ease, transform .25s ease; }
  .mobile-menu.open { opacity: 1; pointer-events: auto; transform: none; }
  .mobile-menu a { width: min(620px, 100%); margin: 0 auto; padding: 12px 0; border-bottom: 1px solid var(--line); font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(1.8rem, 7vw, 3.5rem); line-height: 1.1; }
  .mobile-menu .mobile-booking { margin-top: 24px; border: 1px solid var(--gold); padding: 14px 20px; font-family: "Inter", Arial, sans-serif; font-size: .75rem; letter-spacing: .18em; text-align: center; text-transform: uppercase; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 36px, var(--max)); }
  .site-header { height: 72px; }
  .hero-content { padding: 130px 0 44px; }
  .hero-media img { object-position: 63% center; }
  .home-hero .hero-media img { object-position: 58% center; }
  .hero::after { background: linear-gradient(90deg, rgba(7,7,6,.92), rgba(7,7,6,.36)), linear-gradient(0deg, rgba(7,7,6,.96), rgba(7,7,6,.1) 65%); }
  .display-title { font-size: clamp(4.2rem, 25vw, 7rem); }
  .display-title span { margin-left: .16em; }
  .hero-lead { font-size: 1.3rem; max-width: 90%; }
  .scroll-note { display: none; }
  .section { padding: 78px 0; }
  .section-head { grid-template-columns: 1fr; gap: 14px; margin-bottom: 38px; }
  .intro-grid, .experience, .booking-grid, .offer-body { grid-template-columns: 1fr; }
  .intro-grid, .experience, .booking-grid { gap: 38px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(even) { min-height: 250px; border-right: 0; padding: 28px 4px; }
  .offer summary { grid-template-columns: 42px 1fr auto; gap: 10px; }
  .offer-body { padding: 32px 0 10px 52px; gap: 24px; }
  .booking-form { grid-template-columns: 1fr; }
  .field.full, .booking-form .button { grid-column: auto; }
  .stats { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .socials { justify-content: center; flex-wrap: wrap; }
  .copyright { justify-self: center; }

  .landing-page .landing-brand .brand-k,
  .detail-page .landing-brand .brand-k { font-size: 4rem; }
  .landing-page .landing-brand .brand-rest,
  .detail-page .landing-brand .brand-rest { font-size: .8rem; }
  .landing-page .home-hero { align-items: start; }
  .landing-page .home-hero .hero-media img { object-position: 72% center; }
  .landing-page .home-hero::after { background: linear-gradient(90deg, rgba(7,7,6,.82), rgba(7,7,6,.15) 78%), linear-gradient(0deg, rgba(7,7,6,.58), transparent 52%); }
  .landing-page .landing-violin { top: 20svh; right: 8vw; left: auto; height: 65svh; }
  .landing-page .hero-content { width: calc(100% - 36px); padding: 16vh 0 0; }
  .landing-page .hero-lead { max-width: 100%; font-size: .7rem; letter-spacing: .24em; }
  .landing-page .landing-socials { left: 18px; bottom: 22px; }
  .landing-page .landing-socials .social-icon { width: 44px; height: 44px; }
  .landing-page .landing-booking { min-height: 44px; padding: 0 18px; }

  .detail-page .page-hero::after { background: linear-gradient(90deg, rgba(7,7,6,.8), rgba(7,7,6,.18) 85%), linear-gradient(0deg, rgba(7,7,6,.85), transparent 64%); }
  .detail-page .page-hero .hero-content { padding: 124px 0 54px; }
  .detail-page .display-title { font-size: clamp(3.5rem, 18vw, 6rem); line-height: .82; }
  .detail-page .hero-lead { max-width: 94%; font-size: 1.18rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
  .landing-page .landing-intro-shade,
  .landing-page .landing-violin-leds { display: none; }
  .landing-page .site-header,
  .landing-page .hero-content,
  .landing-page .landing-socials { animation: none; opacity: 1; }
}
