@font-face { font-family: "Barlow Condensed"; src: url("/fonts/barlow-condensed-600.ttf") format("truetype"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Barlow Condensed"; src: url("/fonts/barlow-condensed-700.ttf") format("truetype"); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: "Barlow Condensed"; src: url("/fonts/barlow-condensed-800.ttf") format("truetype"); font-style: normal; font-weight: 800; font-display: swap; }
@font-face { font-family: "Barlow Condensed"; src: url("/fonts/barlow-condensed-900.ttf") format("truetype"); font-style: normal; font-weight: 900; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("/fonts/manrope-400.ttf") format("truetype"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("/fonts/manrope-500.ttf") format("truetype"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("/fonts/manrope-600.ttf") format("truetype"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("/fonts/manrope-700.ttf") format("truetype"); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("/fonts/manrope-800.ttf") format("truetype"); font-style: normal; font-weight: 800; font-display: swap; }

:root {
  --ink: #090909;
  --ink-soft: #121212;
  --paper: #f0eee7;
  --paper-strong: #faf9f5;
  --muted: #a6a59f;
  --line: rgba(241, 239, 231, 0.2);
  --line-dark: rgba(9, 9, 9, 0.18);
  --acid: #c6ff00;
  --acid-dark: #789d00;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --sans: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max: 1600px;
  --header: 78px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--ink); }

body {
  margin: 0;
  min-width: 320px;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  z-index: 999;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  background-image: repeating-linear-gradient(0deg, transparent 0 2px, rgba(255,255,255,.28) 3px);
  mix-blend-mode: soft-light;
}

body.dialog-open { overflow: hidden; }

img { display: block; max-width: 100%; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }

button:focus-visible, a:focus-visible, input:focus-visible, summary:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: 16px;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--acid);
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header);
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 0 clamp(18px, 3vw, 54px);
  color: var(--paper);
  border-bottom: 1px solid var(--line);
  background: rgba(9, 9, 9, 0.9);
  backdrop-filter: blur(18px);
  transition: transform 300ms ease, background 300ms ease;
}

.site-header.is-hidden { transform: translateY(-102%); }

.brand { justify-self: start; display: grid; grid-template-columns: 104px auto; align-items: center; gap: 14px; }
.brand img { width: 104px; height: 33px; color: var(--paper); }
.brand span { font-size: 10px; line-height: 1.15; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }

.site-nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 44px); }
.site-nav a { position: relative; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--acid); transition: right 200ms ease; }
.site-nav a:hover::after { right: 0; }

.header-actions { justify-self: end; display: flex; align-items: center; gap: 12px; }
.language-toggle { min-width: 44px; height: 44px; color: var(--paper); border: 1px solid var(--line); background: transparent; cursor: pointer; font-size: 12px; font-weight: 800; }
.language-toggle:hover { color: var(--ink); background: var(--paper); }
.menu-toggle { display: none; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-acid { color: var(--ink); background: var(--acid); border-color: var(--acid); }
.button-acid:hover { background: var(--paper-strong); border-color: var(--paper-strong); }
.button-outline { color: var(--paper); background: transparent; border-color: var(--line); }
.button-outline:hover { color: var(--ink); background: var(--paper); border-color: var(--paper); }

.header-book { min-height: 44px; padding-inline: 18px; gap: 20px; }
.text-link { display: inline-flex; align-items: center; gap: 30px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.text-link:hover { border-color: var(--acid); }

.eyebrow { margin: 0 0 22px; font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.eyebrow.acid { color: var(--acid); }

.hero {
  position: relative;
  min-height: max(780px, 100svh);
  max-height: 1050px;
  padding: var(--header) clamp(18px, 3vw, 54px) 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, .92fr);
  grid-template-rows: 1fr auto;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero::after { content: ""; position: absolute; inset: var(--header) 0 0; z-index: -3; background: radial-gradient(circle at 52% 30%, #202020 0, var(--ink) 61%); }
.hero-word { position: absolute; z-index: -1; left: clamp(18px, 3vw, 54px); top: 17%; color: transparent; font-family: var(--display); font-size: clamp(180px, 23.5vw, 420px); font-weight: 900; letter-spacing: -0.045em; line-height: .72; white-space: nowrap; opacity: .72; -webkit-text-stroke: 1.5px rgba(240,238,231,.55); }

.hero-media {
  position: absolute;
  z-index: -2;
  top: var(--header);
  right: 0;
  width: 55%;
  height: calc(100% - var(--header));
  overflow: hidden;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  background: #252525;
}

.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,9,9,.92), transparent 44%), linear-gradient(0deg, rgba(9,9,9,.48), transparent 42%); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; filter: grayscale(1) contrast(1.08); transform: scale(1.02); }
.hero-media-tag { position: absolute; z-index: 2; right: clamp(22px, 4vw, 64px); bottom: 42px; width: 106px; aspect-ratio: 1; display: grid; place-content: center; color: var(--ink); background: var(--acid); text-align: center; text-transform: uppercase; }
.hero-media-tag span:first-child { font-family: var(--display); font-size: 42px; font-weight: 800; line-height: 1; }
.hero-media-tag span:last-child { max-width: 68px; margin-top: 4px; font-size: 8px; font-weight: 800; letter-spacing: .08em; }

.hero-copy { grid-column: 1; grid-row: 1 / span 2; align-self: end; position: relative; z-index: 2; max-width: 650px; padding: 0 0 3vh 1.25vw; }
.hero-copy h1 { margin: 0; font-family: var(--display); font-size: clamp(70px, 7.2vw, 122px); font-weight: 800; letter-spacing: -0.025em; line-height: .82; text-transform: uppercase; }
.hero-copy h1 span:last-child { color: var(--acid); }
.hero-intro { max-width: 510px; margin: 30px 0 26px; color: #c5c4bd; font-size: clamp(15px, 1.05vw, 18px); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-index { grid-column: 2; justify-self: end; position: relative; z-index: 2; padding: 0 140px 4px 0; font-family: var(--display); font-size: 20px; letter-spacing: .06em; }

.ticker { overflow: hidden; color: var(--ink); background: var(--acid); border-block: 1px solid var(--ink); }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 28px; padding: 11px 0; animation: marquee 34s linear infinite; }
.ticker span { font-family: var(--display); font-size: 22px; font-weight: 700; letter-spacing: .08em; }
.ticker i { width: 6px; height: 6px; background: var(--ink); transform: rotate(45deg); }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: clamp(84px, 10vw, 160px) clamp(18px, 4vw, 70px); }
.section-heading { max-width: var(--max); margin: 0 auto clamp(48px, 7vw, 96px); display: grid; grid-template-columns: 1.4fr .6fr; gap: 50px; align-items: end; }
.section-heading h2, .about-copy h2, .faq-heading h2, .visit-details h2, .reviews-summary h2, .booking-intro h2 { margin: 0; font-family: var(--display); font-size: clamp(64px, 7.2vw, 118px); font-weight: 800; letter-spacing: -.02em; line-height: .86; text-transform: uppercase; }
.section-heading > p { max-width: 520px; margin: 0; color: #aaa; font-size: 18px; line-height: 1.6; }

.service-section { color: var(--paper); background: var(--ink); }
.service-tools { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-button { min-height: 40px; padding: 0 15px; color: #aaa; background: transparent; border: 1px solid var(--line); cursor: pointer; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.filter-button:hover, .filter-button[aria-pressed="true"] { color: var(--ink); background: var(--acid); border-color: var(--acid); }
.search-field { width: min(290px, 100%); min-width: 220px; height: 42px; display: flex; align-items: center; gap: 12px; padding: 0 12px; border-bottom: 1px solid var(--paper); }
.search-field svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.search-field input { min-width: 0; width: 100%; color: var(--paper); background: transparent; border: 0; outline: 0; }
.search-field input::placeholder { color: #777; }
.service-meta { max-width: var(--max); margin: 22px auto; display: flex; align-items: center; justify-content: space-between; color: #888; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.service-meta p { margin: 0; }
.legend { display: flex; align-items: center; gap: 8px; }
.legend-dot { width: 7px; height: 7px; background: var(--acid); border-radius: 50%; }
.legend-request { margin-left: 12px; color: var(--acid); font-size: 16px; }

.service-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-width: 0; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink); overflow: hidden; }
.prerender-service-card { min-height: 220px; }
.prerender-service-card .service-card-body { height: 100%; }
.service-card[hidden] { display: none; }
.service-image { position: relative; aspect-ratio: 5 / 4; overflow: hidden; background: #1d1d1d; }
.service-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.45), transparent 50%); pointer-events: none; }
.service-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: transform 600ms cubic-bezier(.2,.7,.2,1), filter 300ms ease; }
.service-card:hover .service-image img { transform: scale(1.045); filter: grayscale(.2); }
.service-number { position: absolute; z-index: 2; top: 12px; left: 12px; color: var(--ink); background: var(--paper); padding: 5px 7px; font-family: var(--display); font-size: 15px; }
.service-card-body { min-height: 188px; display: flex; flex-direction: column; padding: 24px 22px 20px; }
.service-category { margin: 0 0 11px; color: var(--acid); font-size: 9px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.service-card h3 { min-height: 2.05em; margin: 0 0 12px; font-family: var(--display); font-size: clamp(26px, 2.25vw, 38px); font-weight: 700; letter-spacing: .005em; line-height: .96; text-transform: uppercase; }
.service-details { display: flex; flex-wrap: wrap; gap: 7px 14px; margin: 0 0 22px; color: #aaa; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.service-details strong { color: var(--paper); }
.service-action { margin-top: auto; width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 12px 0 0; color: var(--paper); background: transparent; border: 0; border-top: 1px solid var(--line); cursor: pointer; font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.service-action span:last-child { color: var(--acid); font-size: 18px; }
.service-action:hover { color: var(--acid); }
.request-card { background: var(--paper); color: var(--ink); }
.request-card .service-card-body { min-height: 100%; aspect-ratio: 5 / 3.95; justify-content: flex-end; position: relative; }
.request-card .service-card-body::before { content: "+"; position: absolute; top: 10px; right: 18px; color: var(--acid-dark); font-family: var(--display); font-size: 90px; line-height: 1; }
.request-card .service-category { color: #5e7800; }
.request-card h3 { font-size: clamp(34px, 3.5vw, 58px); }
.request-card .service-details { color: #555; }
.request-card .service-action { color: var(--ink); border-color: var(--line-dark); }
.request-card .service-action span:last-child { color: #5e7800; }
.load-more-wrap { max-width: var(--max); margin: 42px auto 0; text-align: center; }
.load-more-wrap .button { min-width: 220px; }
.empty-state { grid-column: 1 / -1; min-height: 360px; display: grid; place-content: center; justify-items: center; gap: 22px; padding: 40px; text-align: center; }
.empty-state p { margin: 0; font-family: var(--display); font-size: clamp(36px, 5vw, 72px); line-height: 1; text-transform: uppercase; }

.craft-strip { display: grid; grid-template-columns: 1.35fr .65fr .75fr .75fr; min-height: 480px; border-block: 1px solid var(--line); }
.craft-image { min-width: 0; overflow: hidden; }
.craft-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); }
.craft-statement { min-height: 360px; display: flex; flex-direction: column; justify-content: space-between; padding: 26px; background: var(--paper); color: var(--ink); border-left: 1px solid var(--ink); }
.craft-statement p { margin: 0; font-family: var(--display); font-size: clamp(28px, 2.8vw, 48px); line-height: .98; text-transform: uppercase; }
.statement-number { font-family: var(--display); font-size: 22px; }
.acid-block { background: var(--acid); }

.gallery-section { background: #111; }
.gallery-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 70px; gap: 10px; }
.gallery-item { position: relative; overflow: hidden; border: 0; padding: 0; background: #222; cursor: zoom-in; }
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 7; }
.gallery-item:nth-child(2) { grid-column: span 3; grid-row: span 5; }
.gallery-item:nth-child(3) { grid-column: span 4; grid-row: span 7; }
.gallery-item:nth-child(4) { grid-column: span 3; grid-row: span 6; }
.gallery-item:nth-child(5) { grid-column: span 3; grid-row: span 5; }
.gallery-item:nth-child(6) { grid-column: span 3; grid-row: span 6; }
.gallery-item:nth-child(7) { grid-column: span 3; grid-row: span 5; }
.gallery-item:nth-child(8) { grid-column: span 4; grid-row: span 7; }
.gallery-item:nth-child(9) { grid-column: span 4; grid-row: span 5; }
.gallery-item:nth-child(10) { grid-column: span 4; grid-row: span 7; }
.gallery-item:nth-child(n+11) { grid-column: span 3; grid-row: span 5; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: transform 500ms ease, filter 300ms ease; }
.gallery-item:hover img { transform: scale(1.04); filter: grayscale(0); }
.gallery-item::after { content: "View"; position: absolute; right: 12px; bottom: 12px; width: 36px; height: 36px; display: grid; place-items: center; opacity: 0; color: var(--ink); background: var(--acid); transition: opacity 200ms ease; }
.gallery-item:hover::after { opacity: 1; }
.google-gallery-item::after { content: "View"; }
.gallery-social { display: flex; width: fit-content; margin: 44px auto 0; }

.booking-section { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 720px; color: var(--ink); background: var(--paper); border-block: 1px solid var(--line-dark); }
.booking-intro { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(70px, 8vw, 130px) clamp(24px, 6vw, 100px); border-right: 1px solid var(--ink); }
.booking-intro h2 { font-size: clamp(68px, 7vw, 112px); }
.booking-intro > p:not(.eyebrow) { max-width: 520px; margin: 34px 0; font-size: 18px; }
.booking-intro .button-acid { color: var(--ink); background: var(--acid); border-color: var(--ink); }
.booking-steps { margin: 0; padding: 0; list-style: none; display: grid; grid-template-rows: repeat(3, 1fr); }
.booking-steps li { display: grid; grid-template-columns: 100px 1fr; align-items: center; gap: 26px; padding: 44px clamp(28px, 5vw, 84px); border-bottom: 1px solid var(--ink); }
.booking-steps li:last-child { border-bottom: 0; }
.booking-steps li > span { width: 64px; aspect-ratio: 1; display: grid; place-items: center; color: var(--ink); background: var(--acid); font-family: var(--display); font-size: 34px; font-weight: 700; line-height: 1; }
.booking-steps h3 { margin: 0 0 10px; font-family: var(--display); font-size: clamp(34px, 3.2vw, 52px); font-weight: 700; line-height: 1; text-transform: uppercase; }
.booking-steps p { max-width: 470px; margin: 0; }

.about-section { max-width: none; display: grid; grid-template-columns: minmax(340px, .8fr) minmax(0, 1.2fr); gap: clamp(40px, 8vw, 140px); align-items: center; background: var(--paper); color: var(--ink); }
.about-portrait { max-width: 620px; justify-self: end; position: relative; }
.about-portrait img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 25%; filter: grayscale(1) contrast(1.08); background: #ddd; }
.about-portrait span { position: absolute; left: -24px; bottom: 30px; padding: 12px 16px; color: var(--ink); background: var(--acid); font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); }
.about-copy { max-width: 800px; }
.about-copy h2 { font-size: clamp(64px, 6.5vw, 104px); }
.about-lead { margin: 42px 0 22px; font-size: clamp(20px, 2vw, 28px); line-height: 1.4; }
.about-copy > p:last-of-type { max-width: 660px; color: #555; font-size: 17px; }
.about-facts { margin: 48px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); }
.about-facts div { padding: 22px 16px 0 0; border-right: 1px solid var(--line-dark); }
.about-facts div + div { padding-left: 18px; }
.about-facts dt { font-family: var(--display); font-size: 50px; line-height: 1; }
.about-facts dd { margin: 7px 0 0; color: #555; font-size: 10px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }

.reviews-section { position: relative; display: grid; grid-template-columns: .72fr 1.28fr; min-height: 760px; padding: clamp(80px, 9vw, 140px) clamp(18px, 4vw, 70px); background: #111; }
.reviews-summary { padding-right: clamp(30px, 7vw, 100px); border-right: 1px solid var(--line); }
.reviews-summary h2 { font-size: clamp(74px, 8vw, 130px); }
.rating-lockup { display: flex; align-items: center; gap: 24px; margin: 48px 0; }
.rating-lockup > strong { font-family: var(--display); font-size: 88px; line-height: 1; }
.stars { color: var(--acid); letter-spacing: 4px; }
.rating-lockup p { margin: 4px 0 0; color: #999; font-size: 11px; text-transform: uppercase; }
.review-list { padding-left: clamp(30px, 7vw, 100px); display: flex; flex-direction: column; justify-content: center; }
.review-card { padding: 34px 0; border-bottom: 1px solid var(--line); }
.review-card:first-child { border-top: 1px solid var(--line); }
.review-card blockquote { margin: 0 0 22px; font-size: clamp(20px, 2vw, 28px); line-height: 1.45; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-author img, .review-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; background: #333; }
.review-avatar { display: grid; place-items: center; color: var(--ink); background: var(--acid); font-weight: 850; }
.review-author strong { display: block; font-size: 12px; }
.review-author span { color: #888; font-size: 10px; }
.review-author .review-stars { margin-left: auto; color: var(--acid); font-size: 10px; letter-spacing: 2px; }
.review-loading { min-height: 260px; display: grid; place-items: center; align-content: center; gap: 18px; color: #888; }
.review-loading span { width: 36px; height: 36px; border: 2px solid #333; border-top-color: var(--acid); border-radius: 50%; animation: spin 800ms linear infinite; }
.review-fallback { padding: clamp(30px, 5vw, 70px); border: 1px solid var(--line); background: #181818; }
.review-fallback .fallback-rating { font-family: var(--display); font-size: 88px; color: var(--acid); line-height: 1; }
.review-fallback h3 { margin: 20px 0 10px; font-family: var(--display); font-size: 42px; text-transform: uppercase; }
.review-fallback p { max-width: 520px; color: #aaa; }
.google-attribution { position: absolute; right: clamp(18px, 4vw, 70px); bottom: 30px; display: flex; gap: 16px; align-items: center; color: #888; }
.google-attribution span { color: var(--paper); font-family: Arial, sans-serif; font-size: 14px; }
.google-attribution small { font-size: 9px; }
@keyframes spin { to { transform: rotate(360deg); } }

.faq-section { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(40px, 8vw, 140px); color: var(--ink); background: var(--paper); }
.faq-heading h2 { font-size: clamp(68px, 7vw, 112px); }
.faq-list { border-top: 1px solid var(--line-dark); }
.faq-item { border-bottom: 1px solid var(--line-dark); }
.faq-item summary { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-family: var(--display); font-size: clamp(23px, 2.3vw, 34px); text-transform: uppercase; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: #5e7800; font-family: var(--sans); font-size: 30px; font-weight: 300; transition: transform 180ms ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { max-width: 720px; margin: 0; padding: 0 50px 30px 0; color: #555; font-size: 16px; line-height: 1.7; }

.visit-section { min-height: 720px; display: grid; grid-template-columns: 1fr 1fr; }
.visit-photo { min-height: 620px; overflow: hidden; }
.visit-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.08); }
.visit-details { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(64px, 8vw, 130px); background: var(--ink); }
.visit-details h2 { font-size: clamp(76px, 8vw, 128px); }
.visit-details > p:not(.eyebrow) { margin: 24px 0 30px; color: #aaa; font-size: 18px; }
.visit-info { width: 100%; margin-top: 54px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding-top: 28px; border-top: 1px solid var(--line); }
.visit-info h3 { margin: 0 0 14px; color: var(--acid); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.visit-info p, .visit-info a { display: block; margin: 0 0 6px; color: #c4c3bd; font-size: 13px; overflow-wrap: anywhere; }
.visit-info p { display: flex; justify-content: space-between; gap: 16px; max-width: 250px; }
.visit-info a:hover { color: var(--acid); }

.site-footer { padding: 70px clamp(18px, 4vw, 70px) 26px; display: grid; grid-template-columns: 1.5fr .5fr .5fr 1fr; gap: 50px; border-top: 1px solid var(--line); background: #050505; }
.footer-brand img { width: min(300px, 100%); color: var(--paper); }
.footer-brand p { color: #888; }
.footer-links h2 { margin: 0 0 20px; color: #777; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.footer-links a { display: block; width: fit-content; margin-bottom: 9px; font-size: 13px; }
.footer-links a:hover { color: var(--acid); }
.footer-cta { justify-self: end; }
.footer-cta p { max-width: 280px; margin: 0 0 18px; font-family: var(--display); font-size: 34px; line-height: 1; text-transform: uppercase; }
.footer-bottom { grid-column: 1 / -1; margin-top: 30px; padding-top: 20px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; border-top: 1px solid var(--line); color: #666; font-size: 10px; text-transform: uppercase; }
.footer-bottom span:nth-child(2) { display: flex; gap: 22px; }
.footer-bottom span:last-child { justify-self: end; }

.mobile-book { display: none; }

dialog { padding: 0; border: 0; color: var(--paper); background: transparent; }
dialog::backdrop { background: rgba(0, 0, 0, .82); backdrop-filter: blur(8px); }
.booking-dialog { width: min(1180px, calc(100vw - 32px)); max-width: none; height: min(900px, calc(100dvh - 32px)); }
.dialog-shell { height: 100%; display: flex; flex-direction: column; color: var(--paper); background: #111; border: 1px solid #444; }
.dialog-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 24px 28px; border-bottom: 1px solid var(--line); }
.dialog-header .eyebrow { margin-bottom: 5px; }
.dialog-header h2 { margin: 0; font-family: var(--display); font-size: clamp(28px, 3vw, 46px); line-height: 1; text-transform: uppercase; }
.icon-button { width: 46px; height: 46px; flex: 0 0 auto; padding: 0; border: 1px solid var(--line); color: var(--paper); background: transparent; cursor: pointer; font-size: 28px; line-height: 1; }
.icon-button:hover { color: var(--ink); background: var(--acid); border-color: var(--acid); }
.booking-frame-wrap { position: relative; flex: 1; min-height: 0; background: #f7f7f7; }
.booking-frame-wrap iframe { position: relative; z-index: 2; width: 100%; height: 100%; border: 0; background: white; }
.frame-loader { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; color: #555; }
.frame-loader span { width: 36px; height: 36px; border: 2px solid #ddd; border-top-color: #111; border-radius: 50%; animation: spin 800ms linear infinite; }
.dialog-note { margin: 0; padding: 12px 28px; color: #888; font-size: 10px; }
.dialog-note a { color: var(--acid); text-decoration: underline; }
.request-dialog { width: min(680px, calc(100vw - 32px)); }
.request-shell { position: relative; height: auto; padding: clamp(34px, 6vw, 70px); }
.request-shell .request-close { position: absolute; top: 16px; right: 16px; }
.request-shell h2 { margin: 0 0 24px; padding-right: 50px; font-family: var(--display); font-size: clamp(48px, 8vw, 82px); line-height: .9; text-transform: uppercase; }
.request-shell > p:not(.eyebrow) { max-width: 560px; color: #aaa; font-size: 17px; }
.request-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.lightbox { width: 100vw; max-width: none; height: 100dvh; max-height: none; }
.lightbox figure { width: 100%; height: 100%; margin: 0; display: grid; grid-template-rows: 1fr auto; place-items: center; padding: 30px clamp(50px, 8vw, 130px) 20px; }
.lightbox figure img { max-width: 100%; max-height: calc(100dvh - 90px); object-fit: contain; }
.lightbox figcaption { width: 100%; display: flex; justify-content: space-between; color: #aaa; font-size: 10px; text-transform: uppercase; }
.lightbox-close { position: fixed; z-index: 2; top: 20px; right: 20px; }
.lightbox-nav { position: fixed; z-index: 2; top: 50%; width: 48px; height: 80px; border: 1px solid var(--line); color: var(--paper); background: rgba(0,0,0,.4); cursor: pointer; font-size: 22px; }
.lightbox-nav:hover { color: var(--ink); background: var(--acid); }
.lightbox-nav.previous { left: 18px; }
.lightbox-nav.next { right: 18px; }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav { position: fixed; inset: var(--header) 0 auto; display: grid; gap: 0; padding: 20px clamp(18px, 4vw, 40px) 34px; background: var(--ink); border-bottom: 1px solid var(--line); transform: translateY(-120%); visibility: hidden; transition: transform 240ms ease, visibility 240ms; }
  .site-nav.is-open { transform: translateY(0); visibility: visible; }
  .site-nav a { padding: 17px 0; font-family: var(--display); font-size: 34px; border-bottom: 1px solid var(--line); }
  .site-nav a::after { display: none; }
  .header-actions { grid-column: 2; grid-row: 1; margin-right: 58px; }
  .menu-toggle { position: absolute; right: 18px; display: grid; place-content: center; gap: 7px; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); background: transparent; }
  .menu-toggle span:not(.sr-only) { width: 20px; height: 1px; background: var(--paper); transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:nth-last-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .craft-strip { grid-template-columns: 1fr 1fr; }
  .craft-image-wide { grid-row: span 1; }
  .booking-section { grid-template-columns: 1fr; }
  .booking-intro { border-right: 0; border-bottom: 1px solid var(--ink); }
  .booking-steps { min-height: 620px; }
  .reviews-section { grid-template-columns: .9fr 1.1fr; }
}

@media (max-width: 820px) {
  :root { --header: 68px; }
  .site-header { padding-inline: 14px; }
  .brand { grid-template-columns: 92px auto; gap: 10px; }
  .brand img { width: 92px; }
  .brand span { display: none; }
  .header-book { display: none; }
  .header-actions { margin-right: 48px; }
  .language-toggle { min-width: 40px; height: 40px; }
  .menu-toggle { right: 10px; width: 40px; height: 40px; }
  .hero { min-height: 780px; padding-inline: 18px; grid-template-columns: 1fr; }
  .hero-word { top: 14%; left: 18px; font-size: 43vw; opacity: .68; -webkit-text-stroke-width: 1px; }
  .hero-media { width: 100%; height: 56%; top: var(--header); clip-path: none; }
  .hero-media::after { background: linear-gradient(0deg, rgba(9,9,9,.95), transparent 50%), linear-gradient(90deg, rgba(9,9,9,.5), transparent 45%); }
  .hero-media-tag { right: 14px; bottom: 58px; width: 88px; }
  .hero-media-tag { display: none; }
  .hero-copy { padding-bottom: 20px; }
  .hero-copy { padding-left: 0; }
  .hero-copy h1 { font-size: clamp(62px, 16.5vw, 98px); }
  .hero-intro { max-width: 90%; margin: 22px 0; font-size: 15px; }
  .hero-index { display: none; }
  .section { padding: 80px 18px; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 48px; }
  .section-heading h2, .about-copy h2, .faq-heading h2, .visit-details h2, .reviews-summary h2 { font-size: clamp(60px, 18vw, 96px); }
  .section-heading > p { font-size: 16px; }
  .service-tools { flex-direction: column-reverse; }
  .search-field { width: 100%; }
  .filters { flex-wrap: nowrap; width: calc(100vw - 18px); padding-right: 18px; overflow-x: auto; scrollbar-width: none; }
  .filters::-webkit-scrollbar { display: none; }
  .filter-button { flex: 0 0 auto; }
  .service-meta { align-items: flex-start; gap: 14px; }
  .legend { flex-wrap: wrap; justify-content: flex-end; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card-body { min-height: 180px; padding: 17px 14px; }
  .service-card h3 { font-size: clamp(21px, 6vw, 31px); }
  .craft-strip { grid-template-columns: 1fr; }
  .craft-image { min-height: 420px; }
  .craft-statement { min-height: 300px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: auto; gap: 7px; }
  .gallery-item, .gallery-item:nth-child(n) { grid-column: auto; grid-row: auto; aspect-ratio: 4 / 5; }
  .gallery-item:nth-child(3n+1) { grid-column: span 2; aspect-ratio: 16 / 10; }
  .booking-intro { padding: 80px 18px; }
  .booking-intro h2 { font-size: clamp(66px, 18vw, 100px); }
  .booking-steps { min-height: 0; }
  .booking-steps li { min-height: 230px; grid-template-columns: 64px 1fr; gap: 16px; padding: 34px 18px; }
  .booking-steps li > span { font-size: 42px; }
  .about-section { grid-template-columns: 1fr; gap: 56px; }
  .about-portrait { justify-self: stretch; }
  .about-lead { margin-top: 28px; }
  .about-facts { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .about-facts dt { font-size: 38px; }
  .reviews-section { grid-template-columns: 1fr; padding: 80px 18px 110px; }
  .reviews-summary { padding: 0 0 48px; border-right: 0; border-bottom: 1px solid var(--line); }
  .review-list { padding: 48px 0 0; }
  .google-attribution { left: 18px; right: 18px; bottom: 24px; flex-wrap: wrap; }
  .faq-section { grid-template-columns: 1fr; gap: 50px; }
  .visit-section { grid-template-columns: 1fr; }
  .visit-photo { min-height: 520px; }
  .visit-details { padding: 80px 18px; }
  .site-footer { grid-template-columns: 1fr 1fr; padding-bottom: 92px; }
  .footer-brand, .footer-cta { grid-column: 1 / -1; }
  .footer-cta { justify-self: start; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-bottom span:last-child { justify-self: start; }
  .mobile-book { position: fixed; z-index: 90; left: auto; right: 12px; bottom: max(12px, env(safe-area-inset-bottom)); width: 168px; min-height: 48px; display: flex; align-items: center; justify-content: space-between; padding: 0 16px; color: var(--ink); background: var(--acid); border: 1px solid var(--ink); box-shadow: 0 12px 40px rgba(0,0,0,.45); font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
  .booking-dialog { width: 100vw; height: 100dvh; }
  .dialog-header { padding: 16px; }
  .dialog-note { padding: 8px 16px; }
}

@media (max-width: 520px) {
  .hero { min-height: 740px; }
  .hero-media { width: 100%; height: 57%; }
  .hero-word { top: 15%; left: 14px; font-size: 44vw; }
  .hero-copy h1 { font-size: clamp(58px, 18vw, 82px); }
  .hero-actions { gap: 18px; }
  .hero-actions .button { width: 100%; }
  .service-grid { grid-template-columns: 1fr; }
  .service-image { aspect-ratio: 5 / 4; }
  .request-card .service-card-body { aspect-ratio: 5 / 3.9; }
  .service-meta { font-size: 9px; }
  .craft-image { min-height: 360px; }
  .gallery-item:nth-child(n) { grid-column: auto; aspect-ratio: 4 / 5; }
  .gallery-item:nth-child(3n+1) { grid-column: span 2; aspect-ratio: 16 / 10; }
  .booking-steps li { grid-template-columns: 48px 1fr; }
  .about-facts { grid-template-columns: 1fr; }
  .about-facts div, .about-facts div + div { padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .visit-info { grid-template-columns: 1fr; }
  .site-footer { gap: 38px 20px; }
  .footer-brand img { width: 230px; }
  .request-actions .button { width: 100%; }
  .lightbox figure { padding-inline: 18px; }
  .lightbox-nav { top: auto; bottom: 26px; height: 48px; }
  .lightbox-nav.previous { left: 18px; }
  .lightbox-nav.next { right: 18px; }
}

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

/* Warm studio refinement */
@font-face { font-family: "Fraunces"; src: url("/fonts/fraunces-400.ttf") format("truetype"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Fraunces"; src: url("/fonts/fraunces-400-italic.ttf") format("truetype"); font-style: italic; font-weight: 400; font-display: swap; }

:root {
  --ink: #211713;
  --ink-soft: #2c201b;
  --paper: #f4eee4;
  --paper-strong: #fffaf3;
  --muted: #b8aaa0;
  --line: rgba(255, 250, 243, .16);
  --line-dark: rgba(33, 23, 19, .16);
  --acid: #cb6745;
  --acid-dark: #984329;
  --display: "Fraunces", Georgia, serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --max: 1480px;
}

body { background: var(--paper); }
body::before { display: none; }

.site-header { background: rgba(33, 23, 19, .92); border-bottom-color: rgba(255,255,255,.12); }
.site-nav a, .button, .text-link, .filter-button, .service-action, .mobile-book { text-transform: none; letter-spacing: .015em; }
.button { min-height: 52px; padding-inline: 24px; border-radius: 999px; font-size: 12px; font-weight: 750; }
.button-acid { color: #fffaf3; background: var(--acid); border-color: var(--acid); }
.button-acid:hover { color: #fffaf3; background: #ad4f31; border-color: #ad4f31; }
.button-outline { border-color: currentColor; }
.eyebrow { margin-bottom: 17px; color: var(--acid); font-size: 10px; letter-spacing: .13em; }
.eyebrow.acid { color: var(--acid); }

.hero {
  min-height: max(760px, 100svh);
  max-height: none;
  padding-bottom: clamp(52px, 7vh, 90px);
  background: var(--ink);
}
.hero::after { background: linear-gradient(90deg, rgba(33,23,19,.98) 0 34%, rgba(33,23,19,.68) 50%, rgba(33,23,19,.12) 76%); }
.hero-word {
  z-index: 1;
  top: 16%;
  left: clamp(20px, 4vw, 70px);
  color: rgba(255,250,243,.62);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  line-height: 1;
  opacity: 1;
  -webkit-text-stroke: 0;
}
.hero-media { width: 61%; clip-path: none; }
.hero-media::after { background: linear-gradient(90deg, rgba(33,23,19,.98), rgba(33,23,19,.16) 52%), linear-gradient(0deg, rgba(33,23,19,.5), transparent 40%); }
.hero-media img { filter: saturate(.78) contrast(1.02); transform: none; object-position: 50% 28%; }
.hero-media-tag { right: 36px; bottom: 34px; width: 112px; color: var(--paper-strong); background: var(--acid); border-radius: 50%; }
.hero-media-tag span:first-child { font-family: var(--display); font-size: 38px; font-weight: 400; }
.hero-copy { max-width: 720px; padding-left: clamp(0px, 1vw, 14px); }
.hero-copy h1 { max-width: 700px; font-size: clamp(66px, 7.2vw, 112px); font-weight: 400; letter-spacing: -.045em; line-height: .92; text-transform: none; }
.hero-copy h1 span:last-child { color: var(--paper-strong); font-style: italic; }
.hero-intro { max-width: 580px; margin: 28px 0 30px; color: #d4c9c1; line-height: 1.7; }
.hero-index { display: none; }

.ticker { color: var(--paper-strong); background: var(--acid); border: 0; }
.ticker-track { padding-block: 13px; }
.ticker span { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.ticker i { width: 4px; height: 4px; background: var(--paper-strong); border-radius: 50%; transform: none; }

.section-heading h2, .about-copy h2, .faq-heading h2, .visit-details h2, .reviews-summary h2, .booking-intro h2 {
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .95;
  text-transform: none;
}
.section-heading > p { color: #6f625b; line-height: 1.75; }
.service-section { color: var(--ink); background: var(--paper); }
.service-tools { padding: 18px; border: 1px solid var(--line-dark); border-radius: 18px; background: rgba(255,250,243,.58); }
.filter-button { min-height: 38px; padding-inline: 15px; color: #786b64; border-color: transparent; border-radius: 999px; }
.filter-button:hover, .filter-button[aria-pressed="true"] { color: #fffaf3; background: var(--ink); border-color: var(--ink); }
.search-field { color: var(--ink); border-bottom-color: var(--ink); }
.search-field input { color: var(--ink); }
.service-meta { color: #756861; }
.legend-dot { background: var(--acid); }
.legend-request { color: var(--acid-dark); }
.service-grid { gap: 16px; border: 0; }
.service-card { border: 1px solid rgba(33,23,19,.12); border-radius: 16px; color: var(--ink); background: var(--paper-strong); box-shadow: 0 10px 34px rgba(57,37,27,.07); }
.service-image { aspect-ratio: 5 / 4.15; background: #d8cdc4; }
.service-image::after { background: linear-gradient(0deg, rgba(33,23,19,.4), transparent 46%); }
.service-image img { filter: saturate(.82) contrast(1.02); }
.service-card:hover .service-image img { filter: saturate(1); }
.service-number { color: var(--paper-strong); background: rgba(33,23,19,.76); border-radius: 999px; font-family: var(--sans); font-size: 10px; }
.service-card-body { min-height: 200px; padding: 24px; }
.service-category { color: var(--acid-dark); letter-spacing: .11em; }
.service-card h3 { min-height: auto; font-family: var(--display); font-size: clamp(28px, 2.35vw, 40px); font-weight: 400; line-height: 1.02; text-transform: none; }
.service-details { color: #766961; text-transform: none; }
.service-details strong { color: var(--ink); }
.service-action { color: var(--ink); border-color: var(--line-dark); }
.service-action span:last-child { color: var(--acid-dark); }
.request-card { color: var(--paper-strong); background: var(--acid); border-color: var(--acid); }
.request-card .service-card-body::before { color: rgba(255,250,243,.26); }
.request-card .service-category, .request-card .service-details, .request-card .service-action, .request-card .service-action span:last-child { color: var(--paper-strong); }
.request-card .service-action { border-color: rgba(255,255,255,.35); }
.load-more-wrap .button { color: var(--ink); }

.craft-strip { min-height: 520px; border-color: var(--line-dark); }
.craft-image img { filter: saturate(.78) contrast(1.02); }
.craft-statement { color: var(--ink); background: var(--paper-strong); border-color: var(--line-dark); }
.craft-statement p { font-family: var(--display); font-size: clamp(27px, 2.6vw, 45px); font-weight: 400; line-height: 1.08; text-transform: none; }
.statement-number { font-family: var(--sans); font-size: 11px; }
.acid-block { color: var(--paper-strong); background: var(--acid); }

.gallery-section { color: var(--ink); background: #e8ded3; }
.gallery-section .section-heading > p { color: #6f625b; }
.gallery-grid { gap: 12px; }
.gallery-item { border-radius: 12px; background: #cfc2b8; }
.gallery-item img { filter: saturate(.78) contrast(1.02); }
.gallery-item:hover img { filter: saturate(1); }
.gallery-item::after { color: #fffaf3; background: var(--acid); border-radius: 50%; }
.gallery-social { color: var(--ink); }

.booking-section { min-height: 680px; color: var(--paper-strong); background: var(--ink); border: 0; }
.booking-intro { border-color: var(--line); }
.booking-intro > p:not(.eyebrow) { color: #c7bbb3; line-height: 1.7; }
.booking-intro h2 span:last-child { font-style: italic; }
.booking-steps li { border-color: var(--line); }
.booking-steps li > span { color: var(--paper-strong); background: var(--acid); border-radius: 50%; font-family: var(--sans); font-size: 16px; }
.booking-steps h3 { font-family: var(--display); font-weight: 400; text-transform: none; }
.booking-steps p { color: #b9aaa1; }

.about-section { background: var(--paper-strong); }
.about-portrait img { border-radius: 180px 180px 18px 18px; object-position: center 43%; filter: saturate(.75) contrast(1.02); }
.about-portrait span { left: -14px; color: var(--paper-strong); background: var(--acid); border-radius: 999px; writing-mode: initial; transform: none; }
.about-lead { line-height: 1.5; }
.about-copy > p:last-of-type { color: #6f625b; line-height: 1.75; }
.about-facts dt { font-family: var(--display); font-weight: 400; }

.reviews-section { min-height: 720px; background: #30211b; }
.reviews-summary h2 { font-size: clamp(64px, 7vw, 112px); }
.rating-lockup > strong { font-family: var(--display); font-weight: 400; }
.stars, .review-author .review-stars { color: #e7a47d; }
.review-card blockquote { font-family: var(--display); font-size: clamp(23px, 2.1vw, 31px); line-height: 1.45; }
.review-avatar { color: #fffaf3; background: var(--acid); }
.google-attribution span { font-family: var(--sans); font-weight: 700; }

.faq-section { background: var(--paper); }
.faq-item summary { font-family: var(--display); font-weight: 400; line-height: 1.15; text-transform: none; }
.faq-item summary::after { color: var(--acid-dark); }
.faq-item p { color: #6f625b; }
.visit-photo img { filter: saturate(.78) contrast(1.02); }
.visit-details { background: var(--ink); }
.visit-details h2 { font-size: clamp(68px, 7vw, 112px); }
.site-footer { background: #170f0c; }
.footer-cta p { font-family: var(--display); font-size: 36px; font-weight: 400; line-height: 1.05; text-transform: none; }

@media (max-width: 820px) {
  .site-nav { background: var(--ink); }
  .site-nav a { font-family: var(--display); font-size: 34px; font-weight: 400; text-transform: none; }
  .hero { min-height: 820px; padding: 0 18px 48px; display: block; }
  .hero::after { inset: auto 0 0; height: 60%; background: linear-gradient(0deg, var(--ink) 0 64%, rgba(33,23,19,.85) 78%, transparent); }
  .hero-word { display: none; }
  .hero-media { top: var(--header); width: 100%; height: 52%; border-radius: 0 0 24px 24px; }
  .hero-media::after { background: linear-gradient(0deg, rgba(33,23,19,.55), transparent 42%); }
  .hero-media img { object-position: 50% 25%; }
  .hero-copy { position: absolute; left: 18px; right: 18px; bottom: 42px; max-width: 560px; padding: 0; }
  .hero-copy h1 { max-width: 520px; font-size: clamp(48px, 13.8vw, 72px); line-height: .94; }
  .hero-intro { max-width: 520px; margin: 20px 0 24px; font-size: 14px; line-height: 1.65; }
  .hero-actions { gap: 14px; }
  .hero-actions .button { width: auto; }
  .ticker { display: none; }
  .section { padding: 72px 18px; }
  .section-heading h2, .about-copy h2, .faq-heading h2, .visit-details h2, .reviews-summary h2 { font-size: clamp(48px, 13vw, 72px); }
  .service-tools { padding: 12px; border-radius: 14px; }
  .filters { width: 100%; max-width: 100%; padding-right: 0; }
  .service-grid { gap: 12px; }
  .service-card-body { padding: 18px; }
  .service-card h3 { font-size: clamp(25px, 6.5vw, 33px); }
  .craft-strip { gap: 0; }
  .craft-statement { min-height: 250px; }
  .gallery-item { border-radius: 9px; }
  .booking-intro { padding: 72px 18px; }
  .booking-intro h2 { font-size: clamp(54px, 14vw, 78px); }
  .booking-steps li { min-height: 180px; }
  .booking-steps li > span { width: 52px; font-size: 13px; }
  .about-portrait img { border-radius: 140px 140px 14px 14px; }
  .reviews-section { padding-bottom: 120px; }
  .review-card blockquote { font-size: 24px; }
  .mobile-book { left: 16px; right: 16px; bottom: max(12px, env(safe-area-inset-bottom)); width: auto; min-height: 54px; padding-inline: 22px; color: #fffaf3; background: var(--acid); border: 0; border-radius: 999px; box-shadow: 0 14px 34px rgba(33,23,19,.34); font-size: 12px; text-transform: none; opacity: 0; pointer-events: none; transform: translateY(18px); transition: opacity 220ms ease, transform 220ms ease; }
  .mobile-book.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
}

@media (max-width: 520px) {
  .hero { min-height: 800px; }
  .hero-media { height: 48%; }
  .hero-copy { bottom: 38px; }
  .hero-copy h1 { font-size: clamp(46px, 13vw, 58px); }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { width: fit-content; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card:not(.request-card) { min-height: 190px; display: grid; grid-template-columns: 42% 58%; }
  .service-card:not(.request-card) .service-image { height: 100%; aspect-ratio: auto; }
  .service-card:not(.request-card) .service-card-body { min-height: 190px; padding: 16px; }
  .service-card h3 { font-size: 25px; }
  .service-details { margin-bottom: 12px; }
  .service-action { font-size: 10px; }
  .request-card .service-card-body { min-height: 210px; aspect-ratio: auto; }
  .craft-image { min-height: 310px; }
  .craft-statement { min-height: 220px; }
  .gallery-grid { display: flex; gap: 10px; margin-inline: -18px; padding: 0 18px 10px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .gallery-grid::-webkit-scrollbar { display: none; }
  .gallery-item, .gallery-item:nth-child(n), .gallery-item:nth-child(3n+1) { flex: 0 0 78vw; aspect-ratio: 4 / 5; scroll-snap-align: center; }
  .gallery-item:nth-child(3n+1) { flex-basis: 86vw; }
  .booking-steps li { min-height: 160px; }
  .about-section { gap: 48px; }
  .about-facts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .about-facts div, .about-facts div + div { padding: 16px 8px 0; border-right: 1px solid var(--line-dark); border-bottom: 0; }
  .about-facts div:first-child { padding-left: 0; }
  .about-facts div:last-child { border-right: 0; }
  .about-facts dt { font-size: 32px; }
  .about-facts dd { font-size: 8px; }
  .review-card { padding-block: 28px; }
  .visit-photo { min-height: 430px; }
}

/* Version two: Zaina atelier */
.brand, .footer-brand { color: var(--paper-strong); }
.brand img { height: 36px; }
.hero-secondary { position: absolute; z-index: 3; right: clamp(22px, 4vw, 64px); top: 18%; width: clamp(150px, 15vw, 230px); aspect-ratio: 4 / 5; margin: 0; padding: 7px; background: var(--paper-strong); box-shadow: 0 24px 70px rgba(20,10,7,.4); transform: rotate(2.5deg); }
.hero-secondary img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85); }
.hero-media-tag { right: clamp(220px, 20vw, 315px); }
.hero-trust { width: min(600px, 100%); margin: 34px 0 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.hero-trust div { padding: 18px 12px 0 0; }
.hero-trust dt { font-family: var(--display); font-size: 30px; line-height: 1; }
.hero-trust dd { margin: 5px 0 0; color: #aa9b91; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.button-dark { color: var(--paper-strong); background: var(--ink); border-color: var(--ink); }
.button-dark:hover { color: var(--paper-strong); background: var(--acid-dark); border-color: var(--acid-dark); }
.text-link.dark { color: var(--ink); border-color: var(--line-dark); }

.category-rail { max-width: var(--max); margin: 0 auto 88px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.category-rail a { min-height: 150px; position: relative; display: grid; grid-template-columns: 38px 1fr auto; align-items: end; gap: 14px; padding: 22px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); transition: color 180ms ease, background 180ms ease; }
.category-rail a::before { content: ""; position: absolute; inset: 12px; color: var(--acid); background: url("/braid-motif.svg") center / 100% auto no-repeat; opacity: 0; transition: opacity 180ms ease; }
.category-rail a:hover { color: var(--paper-strong); background: var(--ink); }
.category-rail a:hover::before { opacity: .18; }
.category-rail span, .category-rail small, .category-rail strong { position: relative; }
.category-rail span { color: var(--acid-dark); font-size: 10px; font-weight: 800; }
.category-rail strong { font-family: var(--display); font-size: clamp(30px, 3vw, 46px); font-weight: 400; line-height: .95; }
.category-rail small { align-self: center; color: #766961; font-size: 10px; }
.category-rail a:hover small { color: #c7bab1; }
.popular-heading { max-width: var(--max); margin: 0 auto 30px; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.popular-heading h3 { margin: 0; font-family: var(--display); font-size: clamp(38px, 4.4vw, 66px); font-weight: 400; line-height: 1; }
.home-service-actions { max-width: var(--max); margin: 34px auto 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.consult-link { color: var(--acid-dark); font-size: 13px; font-weight: 700; border-bottom: 1px solid currentColor; }

.care-note { min-height: 650px; display: grid; grid-template-columns: 1.1fr .9fr; color: var(--paper-strong); background: var(--ink); overflow: hidden; }
.care-note > img { width: 100%; height: 100%; min-height: 650px; object-fit: cover; object-position: center 25%; filter: saturate(.78); }
.care-note > div { position: relative; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(60px, 8vw, 130px); }
.care-note > div::before { content: ""; position: absolute; inset: 7% 5%; color: var(--acid); background: url("/braid-motif.svg") center / contain no-repeat; opacity: .12; transform: rotate(90deg); }
.care-note h2, .care-note p, .care-note a { position: relative; }
.care-note h2 { max-width: 560px; margin: 0; font-family: var(--display); font-size: clamp(60px, 7vw, 108px); font-weight: 400; letter-spacing: -.04em; line-height: .9; }
.care-note > div > p:not(.eyebrow) { max-width: 520px; margin: 30px 0; color: #c5b7ae; font-size: 17px; line-height: 1.75; }
.care-note a { color: #e8a17f; font-size: 13px; font-weight: 700; border-bottom: 1px solid currentColor; }

.gallery-actions { max-width: var(--max); margin: 42px auto 0; display: flex; align-items: center; justify-content: center; gap: 28px; }
.booking-compact { grid-template-columns: .82fr 1.18fr; grid-template-rows: 1fr auto; }
.booking-compact .booking-intro { grid-row: 1 / span 2; }
.booking-compact .booking-steps { grid-row: 1; min-height: 500px; }
.booking-prep { grid-column: 2; grid-row: 2; padding: 28px clamp(28px, 5vw, 84px); border-top: 1px solid var(--line); }
.booking-prep .eyebrow { margin-bottom: 12px; }
.booking-prep ul { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; list-style: none; color: #b9aaa1; font-size: 11px; line-height: 1.55; }
.booking-prep li { padding-left: 14px; border-left: 2px solid var(--acid); }

@media (max-width: 1180px) {
  .hero-secondary { top: 16%; }
  .category-rail { grid-template-columns: repeat(2, 1fr); }
  .booking-compact { grid-template-columns: 1fr; grid-template-rows: auto; }
  .booking-compact .booking-intro, .booking-compact .booking-steps, .booking-prep { grid-column: 1; grid-row: auto; }
}

@media (max-width: 820px) {
  .hero-secondary { z-index: -1; right: 14px; top: 95px; width: 120px; opacity: .72; }
  .hero-trust { margin-top: 25px; }
  .hero-trust dt { font-size: 24px; }
  .category-rail { margin-bottom: 60px; grid-template-columns: 1fr 1fr; }
  .category-rail a { min-height: 122px; grid-template-columns: 24px 1fr; align-content: end; padding: 16px; }
  .category-rail small { display: none; }
  .category-rail strong { font-size: 30px; }
  .popular-heading { align-items: flex-start; }
  .popular-heading .text-link { display: none; }
  .home-service-actions { align-items: flex-start; flex-direction: column; }
  .care-note { grid-template-columns: 1fr; }
  .care-note > img { min-height: 450px; max-height: 560px; }
  .care-note > div { padding: 72px 18px; }
  .care-note h2 { font-size: clamp(54px, 15vw, 82px); }
  .booking-prep ul { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .hero { min-height: 880px; }
  .hero-copy { bottom: 34px; }
  .hero-secondary { display: none; }
  .hero-trust { grid-template-columns: repeat(3, 1fr); margin-top: 24px; }
  .hero-trust dd { font-size: 7px; }
  .category-rail { grid-template-columns: 1fr; border-left: 0; }
  .category-rail a { min-height: 92px; grid-template-columns: 32px 1fr auto; border-left: 1px solid var(--line-dark); }
  .category-rail small { display: block; }
  .service-section .service-card:not(.request-card) { min-height: 176px; }
  .service-section .service-card:not(.request-card) .service-card-body { min-height: 176px; }
  .care-note > img { min-height: 380px; }
  .gallery-actions { align-items: flex-start; flex-direction: column; }
}

/* Dedicated services and gallery pages */
.page-hero { min-height: 760px; padding: calc(var(--header) + 90px) clamp(18px, 5vw, 84px) 90px; display: grid; grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr); gap: clamp(50px, 8vw, 130px); align-items: center; color: var(--paper-strong); background: var(--ink); overflow: hidden; }
.page-hero-copy { position: relative; z-index: 2; max-width: 760px; }
.page-hero-copy::before { content: ""; position: absolute; z-index: -1; inset: -100px -40px; color: var(--acid); background: url("/braid-motif.svg") center / 100% auto no-repeat; opacity: .12; transform: rotate(-9deg); }
.page-hero h1 { margin: 0; font-family: var(--display); font-size: clamp(76px, 8.4vw, 136px); font-weight: 400; letter-spacing: -.055em; line-height: .84; }
.page-hero-copy > p:last-child { max-width: 620px; margin: 34px 0 0; color: #c4b6ad; font-size: 17px; line-height: 1.75; }
.page-hero-image { height: 560px; position: relative; }
.page-hero-image img { position: absolute; width: 64%; height: 86%; object-fit: cover; border: 8px solid var(--paper-strong); box-shadow: 0 25px 70px rgba(0,0,0,.3); }
.page-hero-image img:first-child { left: 0; bottom: 0; transform: rotate(-2.5deg); }
.page-hero-image img:last-child { right: 0; top: 0; transform: rotate(3deg); }

.service-guidance { display: grid; grid-template-columns: repeat(3, 1fr); color: var(--ink); background: var(--paper-strong); border-bottom: 1px solid var(--line-dark); }
.service-guidance article { min-height: 190px; display: grid; grid-template-columns: 46px 1fr; gap: 20px; align-items: center; padding: 34px clamp(22px, 4vw, 62px); border-right: 1px solid var(--line-dark); }
.service-guidance article:last-child { border-right: 0; }
.service-guidance article > span { width: 42px; height: 42px; display: grid; place-items: center; color: var(--paper-strong); background: var(--acid); border-radius: 50%; font-size: 11px; font-weight: 800; }
.service-guidance h2 { margin: 0 0 7px; font-family: var(--display); font-size: 30px; font-weight: 400; line-height: 1; }
.service-guidance p { margin: 0; color: #74665f; font-size: 12px; line-height: 1.55; }
.service-guidance a { color: var(--acid-dark); text-decoration: underline; }
.catalogue-section { color: var(--ink); background: var(--paper); }
.catalogue-heading { max-width: var(--max); margin: 0 auto 65px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; }
.catalogue-heading h2 { margin: 0; font-family: var(--display); font-size: clamp(66px, 7vw, 108px); font-weight: 400; letter-spacing: -.045em; line-height: .9; }
.catalogue-heading > p { margin: 0; color: #6f625b; font-size: 16px; line-height: 1.75; }
.catalogue-tools { max-width: var(--max); margin-inline: auto; }
.catalogue-grid { margin-top: 0; }
.catalogue-grid .request-card .service-card-body { aspect-ratio: auto; }
.recently-viewed { padding: clamp(70px, 8vw, 120px) clamp(18px, 4vw, 70px); color: var(--paper-strong); background: #30211b; }
.recently-viewed > div:first-child { max-width: var(--max); margin: 0 auto 36px; }
.recently-viewed h2 { margin: 0; font-family: var(--display); font-size: clamp(52px, 6vw, 86px); font-weight: 400; line-height: .9; }
.recent-list { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.recent-list button { min-width: 0; display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: 18px; padding: 18px 20px 18px 0; color: inherit; background: transparent; border: 0; border-bottom: 1px solid var(--line); cursor: pointer; text-align: left; }
.recent-list img { width: 90px; height: 80px; object-fit: cover; }
.recent-list strong, .recent-list small { display: block; }
.recent-list strong { font-family: var(--display); font-size: 23px; font-weight: 400; line-height: 1; }
.recent-list small { margin-top: 7px; color: #a9988e; }
.recent-list b { color: #e79b76; }
.service-help { min-height: 420px; padding: 70px clamp(18px, 8vw, 130px); display: flex; align-items: center; justify-content: space-between; gap: 50px; color: var(--ink); background: #e3d5c8; }
.service-help h2 { margin: 0; font-family: var(--display); font-size: clamp(62px, 7vw, 108px); font-weight: 400; line-height: .9; }
.service-help > div > p:last-child { max-width: 670px; color: #6f625b; font-size: 17px; }
.compact-footer { grid-template-columns: 1.5fr .6fr 1fr; }

.service-dialog { width: min(1080px, calc(100vw - 32px)); max-width: none; max-height: calc(100dvh - 32px); }
.service-dialog-shell { position: relative; min-height: 620px; display: grid; grid-template-columns: .9fr 1.1fr; color: var(--ink); background: var(--paper-strong); overflow: hidden; }
.service-dialog-shell > .icon-button { position: absolute; z-index: 3; top: 18px; right: 18px; color: var(--ink); border-color: var(--line-dark); }
.service-dialog-image { min-height: 620px; }
.service-dialog-image img { width: 100%; height: 100%; object-fit: cover; }
.service-dialog-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(48px, 7vw, 90px); }
.service-dialog-copy h2 { max-width: 600px; margin: 0; font-family: var(--display); font-size: clamp(52px, 6vw, 82px); font-weight: 400; letter-spacing: -.04em; line-height: .9; }
.detail-price { width: 100%; margin: 30px 0; display: flex; align-items: baseline; justify-content: space-between; padding-block: 17px; border-block: 1px solid var(--line-dark); }
.detail-price strong { font-family: var(--display); font-size: 38px; font-weight: 400; }
.detail-price span { color: #766961; font-size: 12px; }
.service-dialog-copy > p { color: #5f534d; font-size: 15px; line-height: 1.75; }
.detail-notes { margin-top: 10px; padding: 18px; color: #675b54; background: #eee4da; border-left: 3px solid var(--acid); }
.detail-notes p { margin: 0 0 9px; font-size: 11px; line-height: 1.55; }
.detail-notes p:last-child { margin-bottom: 0; }
.detail-actions { width: 100%; margin-top: 28px; display: flex; align-items: center; gap: 24px; }

.gallery-page-hero { grid-template-columns: .75fr 1.25fr; }
.gallery-hero-collage { height: 570px; position: relative; }
.gallery-hero-collage img { position: absolute; object-fit: cover; border: 7px solid var(--paper-strong); box-shadow: 0 20px 60px rgba(0,0,0,.35); }
.gallery-hero-collage img:nth-child(1) { left: 3%; top: 10%; width: 43%; height: 72%; transform: rotate(-3deg); }
.gallery-hero-collage img:nth-child(2) { left: 35%; bottom: 0; width: 37%; height: 62%; transform: rotate(2deg); }
.gallery-hero-collage img:nth-child(3) { right: 0; top: 0; width: 35%; height: 76%; transform: rotate(4deg); }
.portfolio-intro { padding: 46px clamp(18px, 5vw, 84px); display: flex; align-items: center; justify-content: space-between; gap: 40px; color: var(--ink); background: #e4d6ca; }
.portfolio-intro p { max-width: 780px; margin: 0; font-family: var(--display); font-size: clamp(24px, 2.6vw, 38px); line-height: 1.25; }
.portfolio-intro a { flex: 0 0 auto; color: var(--acid-dark); font-size: 12px; font-weight: 800; border-bottom: 1px solid currentColor; }
.full-gallery { padding: clamp(70px, 8vw, 130px) clamp(18px, 4vw, 70px); background: var(--paper); }
.full-gallery-grid { max-width: var(--max); margin: 0 auto; columns: 4 260px; column-gap: 14px; }
.portfolio-photo { width: 100%; position: relative; margin: 0 0 14px; padding: 0; display: block; break-inside: avoid; border: 0; border-radius: 10px; background: #d7c9bf; overflow: hidden; cursor: zoom-in; }
.portfolio-photo img { width: 100%; height: auto; filter: saturate(.82); transition: transform 500ms ease, filter 250ms ease; }
.portfolio-photo:hover img { transform: scale(1.025); filter: saturate(1); }
.portfolio-photo > span { position: absolute; inset: auto 10px 10px; display: flex; align-items: end; justify-content: space-between; gap: 12px; padding: 11px 12px; color: var(--paper-strong); background: rgba(33,23,19,.78); border-radius: 8px; text-align: left; }
.portfolio-photo small { font-size: 9px; }
.portfolio-photo strong { max-width: 75%; font-family: var(--display); font-size: 19px; font-weight: 400; line-height: 1; }
.portfolio-photo em { position: absolute; top: 10px; right: 10px; padding: 6px 9px; color: var(--paper-strong); background: var(--acid); border-radius: 999px; font-size: 8px; font-style: normal; }
.gallery-book { min-height: 500px; padding: 80px clamp(18px, 8vw, 130px); display: flex; align-items: end; justify-content: space-between; gap: 70px; color: var(--paper-strong); background: var(--ink); }
.gallery-book h2 { max-width: 760px; margin: 0; font-family: var(--display); font-size: clamp(68px, 8vw, 122px); font-weight: 400; letter-spacing: -.05em; line-height: .86; }
.gallery-book p:not(.eyebrow) { max-width: 620px; color: #bdaea4; }
.gallery-book > div:last-child { flex: 0 0 auto; display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }

@media (max-width: 980px) {
  .page-hero { grid-template-columns: 1fr; padding-top: calc(var(--header) + 70px); }
  .page-hero-image, .gallery-hero-collage { height: 480px; }
  .service-guidance { grid-template-columns: 1fr; }
  .service-guidance article { min-height: 130px; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .catalogue-heading { grid-template-columns: 1fr; gap: 25px; }
  .recent-list { grid-template-columns: 1fr; }
  .service-dialog-shell { grid-template-columns: 1fr; max-height: calc(100dvh - 32px); overflow-y: auto; }
  .service-dialog-image { min-height: 340px; height: 42vh; }
  .gallery-book { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .page-hero { min-height: 780px; padding: calc(var(--header) + 55px) 18px 55px; gap: 45px; }
  .page-hero h1 { font-size: clamp(60px, 17vw, 80px); }
  .page-hero-copy > p:last-child { margin-top: 24px; font-size: 14px; }
  .page-hero-image, .gallery-hero-collage { height: 340px; }
  .page-hero-image img { border-width: 5px; }
  .service-guidance article { grid-template-columns: 38px 1fr; padding: 25px 18px; }
  .service-guidance article > span { width: 36px; height: 36px; }
  .service-guidance h2 { font-size: 26px; }
  .catalogue-heading h2 { font-size: 58px; }
  .catalogue-section .catalogue-grid .service-card:not(.request-card) { min-height: 178px; }
  .catalogue-section .catalogue-grid .service-card:not(.request-card) .service-card-body { min-height: 178px; }
  .service-help { align-items: flex-start; flex-direction: column; }
  .service-help h2 { font-size: 62px; }
  .compact-footer { grid-template-columns: 1fr 1fr; }
  .service-dialog { width: 100vw; max-height: 100dvh; }
  .service-dialog-shell { min-height: 100dvh; }
  .service-dialog-image { min-height: 280px; height: 38vh; }
  .service-dialog-copy { padding: 36px 18px 90px; }
  .service-dialog-copy h2 { font-size: 48px; }
  .detail-actions { align-items: flex-start; flex-direction: column; }
  .gallery-hero-collage img:nth-child(1) { width: 48%; }
  .gallery-hero-collage img:nth-child(2) { width: 43%; }
  .gallery-hero-collage img:nth-child(3) { width: 39%; }
  .portfolio-intro { align-items: flex-start; flex-direction: column; }
  .full-gallery-grid { columns: 2 140px; column-gap: 8px; }
  .portfolio-photo { margin-bottom: 8px; border-radius: 7px; }
  .portfolio-photo > span { inset: auto 6px 6px; padding: 8px; }
  .portfolio-photo strong { font-size: 15px; }
  .gallery-book h2 { font-size: 64px; }
}
