@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url("../fonts/cormorant-garamond.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/outfit.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #1b1412;
  --ink-soft: #3a2f2b;
  --paper: #f7f1ea;
  --paper-2: #efe6db;
  --cream: #fffaf4;
  --gold: #b8895a;
  --gold-deep: #8f6840;
  --rose: #8d4a52;
  --line: rgba(27, 20, 18, 0.1);
  --shadow: 0 18px 50px rgba(27, 20, 18, 0.08);
  --radius: 18px;
  --max: 1120px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

a { color: inherit; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus { left: 12px; z-index: 100; background: #fff; padding: 8px 12px; }

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 241, 234, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.brand-name span {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

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

.nav a {
  text-decoration: none;
  font-size: 0.88rem;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav a[aria-current="page"] { color: var(--ink); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 500;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(27, 20, 18, 0.16);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #2c221f;
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: var(--gold-deep);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--ink);
  color: var(--cream);
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
}

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

.btn-ghost {
  border-color: var(--ink);
  background: transparent;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font: inherit;
  padding: 8px;
}

.hero {
  padding: 72px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: var(--gold-deep);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0 0 12px;
}

h1, h2, h3, .serif { font-family: var(--serif); font-weight: 500; }

h1 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 0.98;
  margin: 0 0 18px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
  margin: 0 0 14px;
}

h3 { font-size: 1.45rem; margin: 0 0 8px; }

.lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 18px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.hero-photo {
  position: relative;
}

.hero-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 28px;
}

.hero-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: var(--cream);
  padding: 14px 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
}

.hero-badge strong { display: block; font-size: 1.2rem; }

.hero-ratings {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 8px;
}

.rating-pill {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 168px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--cream);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.rating-pill .stars {
  margin: 0;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.rating-pill strong { font-size: 1rem; }
.rating-pill span:last-child {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.rating-pill:hover { transform: translateY(-2px); }

.proof {
  background: var(--ink);
  color: var(--paper);
  padding: 28px 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.proof b {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
}

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

.proof a:hover { text-decoration: underline; }

#reviews,
#studio-facts { scroll-margin-top: 90px; }

.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.facts-grid p {
  margin: 0;
  padding: 16px 18px;
  background: var(--cream);
  border-radius: 14px;
  color: var(--ink-soft);
}

.section { padding: 84px 0; }
.section-muted { background: var(--paper-2); }

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 36px;
}

.cards-3, .cards-2 {
  display: grid;
  gap: 20px;
}

.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(27, 20, 18, 0.12);
}

.card img {
  transition: transform 0.45s ease;
}

.card:hover img {
  transform: scale(1.04);
}

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.card-body { padding: 22px; }
.card p { color: var(--ink-soft); margin: 0 0 14px; }

.price-tag {
  display: inline-block;
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 10px;
}

.price-table, .hours {
  width: 100%;
  border-collapse: collapse;
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
}

.price-table th,
.price-table td,
.hours td {
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.price-table th { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }
.price-table tr:last-child td, .hours tr:last-child td { border-bottom: 0; }
.price-table td:last-child, .amount { font-weight: 600; white-space: nowrap; }

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 22px;
}

.stars { color: var(--gold-deep); letter-spacing: 2px; margin-bottom: 10px; }
.review p { margin: 0 0 14px; }
.review cite { font-style: normal; font-size: 0.9rem; color: var(--ink-soft); }

.faq details {
  background: var(--cream);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 10px;
}

.faq summary { cursor: pointer; font-weight: 600; }

.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.map-embed {
  min-height: 360px;
  border: 0;
  border-radius: var(--radius);
  width: 100%;
}

.page-hero { padding: 56px 0 20px; }
.prose { max-width: 46rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 1.2rem; }

.toc {
  background: var(--cream);
  border-radius: 16px;
  padding: 20px 22px;
  margin: 0 0 36px;
}
.toc p {
  margin: 0 0 10px;
  font-weight: 600;
  color: var(--ink);
}
.toc ol {
  margin: 0;
  padding-left: 1.3rem;
}
.toc a {
  color: var(--gold-deep);
  text-decoration: none;
}
.toc a:hover { text-decoration: underline; }

.prose h2 { scroll-margin-top: 96px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: zoom-in;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px;
  background: linear-gradient(transparent, rgba(27, 20, 18, 0.72));
  color: #fff;
  font-size: 0.82rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gallery-item:hover figcaption,
.gallery-item:focus-visible figcaption {
  opacity: 1;
}

.gallery-status {
  text-align: center;
  color: var(--ink-soft);
  padding: 20px 0 0;
}

.prose img.article-photo {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
  margin: 28px 0;
}

.prose a {
  color: var(--gold-deep);
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.prose a:hover { color: var(--rose); }

.brand {
  transition: opacity 0.2s ease;
}

.brand:hover { opacity: 0.78; }

.sticky-cta:hover {
  background: #2c221f;
}

.price-table tbody tr {
  transition: background 0.15s ease;
}

.price-table tbody tr:hover { background: #fff6ec; }

.review {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.guide-list { display: grid; gap: 14px; }
.guide-list a {
  display: block;
  background: var(--cream);
  padding: 18px 20px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.guide-list a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.guide-list small { color: var(--ink-soft); }

.site-footer {
  background: var(--ink);
  color: #e8ddd3;
  padding: 48px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
}

.site-footer a { color: #e8ddd3; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer h3 { color: #fff; font-size: 1.2rem; }
.legal { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); font-size: 0.85rem; }

.sticky-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 50;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
}

.notice {
  background: #f3e6d2;
  border-left: 4px solid var(--gold);
  padding: 14px 16px;
  border-radius: 8px;
}

@media (max-width: 900px) {
  .nav, .header-actions .btn-ghost { display: none; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 18px 20px 24px;
    border-bottom: 1px solid var(--line);
  }
  .menu-toggle { display: block; }
  .hero-grid, .cards-3, .cards-2, .proof-grid, .reviews, .map-grid, .footer-grid, .gallery-grid, .facts-grid {
    grid-template-columns: 1fr;
  }
  .hero-photo img, .gallery-grid img { height: 320px; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 76px; }
  .section-head { display: block; }
}
