:root {
  --bg: #f4eee8;
  --paper: #fbf8f4;
  --paper-2: #e9ddd3;
  --ink: #2c2421;
  --muted: #776760;
  --accent: #a67c69;
  --accent-dark: #755044;
  --cream: #fffaf5;
  --line: rgba(44, 36, 33, .12);
  --shadow: 0 30px 90px rgba(64, 43, 35, .12);
  --container: min(1180px, calc(100% - 44px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.lightbox-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
.container { width: var(--container); margin-inline: auto; }

.scroll-progress { position: fixed; left: 0; right: 0; top: 0; height: 2px; z-index: 100; }
.scroll-progress span { display: block; width: 0; height: 100%; background: var(--accent-dark); }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 90;
  transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}
.site-header.scrolled { background: rgba(244,238,232,.78); backdrop-filter: blur(18px); box-shadow: 0 1px rgba(44,36,33,.07); }
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: max-content; }
.brand-mark { width: 48px; height: 32px; flex: 0 0 auto; display: block; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-family: Georgia, "Times New Roman", serif; font-size: 20px; font-weight: 400; letter-spacing: .01em; }
.brand-copy small { margin-top: 4px; font-size: 8px; text-transform: uppercase; letter-spacing: .20em; color: var(--muted); }
.desktop-nav { display: flex; gap: 30px; color: var(--muted); font-size: 14px; }
.desktop-nav a { position: relative; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px; background: var(--ink); transition: right .25s ease; }
.desktop-nav a:hover::after { right: 0; }

.button {
  border: 0; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 56px; padding: 0 26px; border-radius: 999px; background: var(--ink); color: white;
  font-weight: 750; letter-spacing: -.01em; transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(44,36,33,.18); }
.button-small { min-height: 44px; padding: 0 19px; font-size: 14px; }
.button-light { background: var(--cream); color: var(--ink); }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; border-bottom: 1px solid rgba(44,36,33,.28); padding-bottom: 5px; }
.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translate(3px, 2px); }

.kicker { display: flex; align-items: center; gap: 9px; text-transform: uppercase; letter-spacing: .18em; font-size: 11px; font-weight: 800; color: var(--accent-dark); }
.kicker > span { width: 26px; height: 1px; background: currentColor; }
.kicker-light { color: rgba(255,255,255,.75); }

.hero { min-height: 100vh; padding: 130px 0 0; position: relative; overflow: hidden; }
.hero-grid { min-height: calc(100vh - 190px); display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 68px; position: relative; z-index: 2; }
.hero h1, .section-heading h2, .about-copy h2, .faq-title h2, .booking-copy h2 {
  font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.055em; line-height: .94;
}
.hero h1 { margin: 18px 0 25px; font-size: clamp(58px, 7.3vw, 108px); }
.hero h1 em, h2 em { color: var(--accent-dark); font-weight: 400; }
.lead { max-width: 610px; color: var(--muted); font-size: 18px; }
.hero-actions { margin-top: 32px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-meta { margin-top: 48px; display: flex; gap: 34px; }
.hero-meta div { padding-left: 15px; border-left: 1px solid var(--line); }
.hero-meta strong { display: block; font-size: 14px; }
.hero-meta span { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.hero-visual { position: relative; min-height: 630px; display: grid; place-items: center; }
.arch-photo { width: min(475px, 90%); height: 610px; border-radius: 230px 230px 30px 30px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.hero-image { background: linear-gradient(145deg,#eadfd7 0%,#cdb7aa 43%,#9b7566 100%); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; display: block; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.hero-visual:hover .hero-image img { transform: scale(1.025); }

.floating-card { position: absolute; z-index: 4; border: 1px solid rgba(255,255,255,.55); background: rgba(255,250,245,.72); backdrop-filter: blur(16px); box-shadow: 0 18px 50px rgba(65,44,36,.10); }
.floating-card-top { left: -12px; top: 88px; border-radius: 999px; padding: 12px 17px; font-size: 12px; font-weight: 700; }
.pulse { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #72936f; margin-right: 8px; box-shadow: 0 0 0 0 rgba(114,147,111,.5); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(114,147,111,0); } 100% { box-shadow: 0 0 0 0 rgba(114,147,111,0); } }
.floating-card-bottom { right: -10px; bottom: 52px; border-radius: 20px; padding: 15px 20px; }
.floating-card-bottom small { display: block; color: var(--muted); text-transform: uppercase; letter-spacing: .15em; font-size: 9px; }
.floating-card-bottom strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 27px; font-weight: 400; line-height: 1.1; }
.hero-script { position: absolute; width: 310px; right: -55px; top: 25px; transform: rotate(-10deg); }
.hero-script path { stroke: rgba(117,80,68,.48); stroke-width: 1.5; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1; animation: drawLine 2.2s .6s cubic-bezier(.22,.8,.22,1) forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); opacity: .46; }
.hero-orb-a { width: 420px; height: 420px; right: -180px; top: 110px; background: #dbc4b7; animation: floatOrb 9s ease-in-out infinite alternate; }
.hero-orb-b { width: 260px; height: 260px; left: -140px; bottom: 70px; background: #e7d9cf; animation: floatOrb 11s ease-in-out infinite alternate-reverse; }
@keyframes floatOrb { to { transform: translate3d(32px,-20px,0) scale(1.06); } }
/* .marquee { margin-top: 36px; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.16); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 26px; padding: 15px 0; animation: marquee 28s linear infinite; font-size: 11px; letter-spacing: .19em; color: var(--muted); }
.marquee-track b { color: var(--accent); font-size: 9px; }
@keyframes marquee { to { transform: translateX(-50%); } } */
.marquee { margin-top: 36px; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.16); }
.marquee-track { width: max-content; display: flex; align-items: center; padding: 15px 0; animation: marquee 100s linear infinite; font-size: 11px; letter-spacing: .19em; color: var(--muted); gap: 0; }
.marquee-track span { margin-right: 30px; }
.marquee-track b { color: var(--accent); font-size: 9px; margin-right: 30px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }


.section { padding: 115px 0; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 44px; margin-bottom: 48px; }
.section-heading h2 { margin: 13px 0 0; font-size: clamp(47px, 5.7vw, 78px); }
.section-heading > p { margin: 0 0 7px; max-width: 440px; color: var(--muted); }
.section-heading.compact { margin-bottom: 40px; }

.services-section { background: var(--paper); }
.service-list { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 55px 1fr 145px 56px; align-items: center; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--line); transition: padding .25s ease, background .25s ease; }
.service-row:hover { padding-left: 14px; padding-right: 14px; background: rgba(233,221,211,.34); }
.service-index { font-size: 11px; letter-spacing: .14em; color: var(--accent-dark); }
.service-main h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(25px, 3vw, 39px); font-weight: 400; letter-spacing: -.025em; }
.service-main p { margin: 6px 0 0; max-width: 650px; color: var(--muted); font-size: 14px; }
.service-price { font-size: 25px; font-weight: 800; white-space: nowrap; text-align: right; }
.service-price small { font-size: 10px; letter-spacing: .12em; color: var(--muted); }
.circle-link { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line); transition: transform .25s ease, background .25s ease, color .25s ease; }
.service-row:hover .circle-link { transform: rotate(45deg); background: var(--ink); color: white; }

.gallery { display: grid; grid-template-columns: repeat(12,1fr); grid-auto-rows: 265px; gap: 16px; }
.gallery-card { appearance: none; border: 0; padding: 0; overflow: hidden; border-radius: 26px; position: relative; cursor: zoom-in; background: #d2b9aa; text-align: left; isolation: isolate; }
.gallery-card.feature { grid-column: span 7; grid-row: span 2; }
.gallery-card.side { grid-column: span 5; }
.gallery-card.third { grid-column: span 4; }
.gallery-card.half { grid-column: span 6; }
.gallery-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform .75s cubic-bezier(.2,.7,.2,1), filter .5s ease; }
.gallery-card.detail .gallery-photo { object-position: center 48%; }
.gallery-card:hover .gallery-photo { transform: scale(1.045); filter: saturate(1.04) contrast(1.01); }
.gallery-card::after { content: ""; position: absolute; z-index: 1; inset: 42% 0 0; background: linear-gradient(transparent, rgba(31,23,21,.68)); pointer-events: none; }
.gallery-caption { position: absolute; z-index: 3; left: 22px; bottom: 20px; color: white; text-shadow: 0 2px 18px rgba(0,0,0,.18); }
.gallery-caption b { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 26px; font-weight: 400; }
.gallery-caption small { opacity: .78; }
.gallery-zoom, .gallery-play { position: absolute; z-index: 4; right: 18px; top: 18px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,250,245,.78); backdrop-filter: blur(10px); font-size: 19px; transition: transform .25s ease, background .25s ease; color: var(--ink); }
.gallery-play { font-size: 13px; padding-left: 2px; }
.gallery-card:hover .gallery-zoom { transform: rotate(90deg); }
.gallery-card:hover .gallery-play { transform: scale(1.08); background: rgba(255,255,255,.92); }
.video-card { cursor: pointer; }
.video-card .gallery-video { background: #5d514b; }

.about-section { background: var(--paper-2); }
.about-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 82px; align-items: center; }
.about-visual { position: relative; min-height: 670px; }
.about-collage { position: absolute; inset: 0 28px 0 0; }
.about-collage-main { position: absolute; inset: 0 58px 70px 0; border-radius: 34px 190px 34px 34px; overflow: hidden; box-shadow: var(--shadow); background: #d7c5b8; }
.about-collage-main img, .about-collage-detail img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-collage-main img { object-position: center 30%; }
.about-collage-detail { position: absolute; width: 48%; height: 34%; right: 0; bottom: 0; border-radius: 22px; overflow: hidden; border: 7px solid var(--paper-2); box-shadow: 0 18px 50px rgba(74,49,41,.16); background: #cdb7aa; }
.about-collage-detail img { object-position: center; }
.about-badge { position: absolute; left: 24px; bottom: 30px; z-index: 2; display: flex; flex-direction: column; padding: 12px 16px; border-radius: 16px; background: rgba(255,250,245,.78); backdrop-filter: blur(12px); box-shadow: 0 12px 35px rgba(65,44,36,.08); }
.about-badge strong { font-family: Georgia, "Times New Roman", serif; font-size: 18px; font-weight: 400; }
.about-badge span { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .14em; margin-top: 2px; }
.signature { position: absolute; right: -28px; bottom: 112px; font-family: "Segoe Script", "Brush Script MT", cursive; font-size: clamp(52px,7vw,88px); color: rgba(117,80,68,.72); transform: rotate(-10deg); }
.about-copy h2 { margin: 14px 0 25px; font-size: clamp(52px,6.5vw,88px); }
.about-lead { font-family: Georgia, "Times New Roman", serif; font-size: 23px; line-height: 1.45; color: var(--ink) !important; }
.about-copy > p { color: var(--muted); max-width: 590px; }
.about-points { margin: 30px 0; display: grid; gap: 15px; }
.about-points > div { display: grid; grid-template-columns: 36px 1fr; gap: 14px; align-items: start; }
.about-points span { font-size: 10px; color: var(--accent-dark); letter-spacing: .12em; margin-top: 6px; }
.about-points p { margin: 0; color: var(--muted); }
.about-points strong { color: var(--ink); }

.process-section { background: var(--paper); }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.step { min-height: 260px; padding: 28px; border: 1px solid var(--line); border-radius: 25px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(155deg, rgba(255,255,255,.6), rgba(244,238,232,.25)); transition: transform .3s ease, box-shadow .3s ease; }
.step:hover { transform: translateY(-5px); box-shadow: 0 22px 60px rgba(74,49,41,.08); }
.step > span { margin-bottom: auto; font-size: 11px; color: var(--accent-dark); letter-spacing: .14em; }
.step h3 { margin: 0 0 10px; font-family: Georgia, "Times New Roman", serif; font-size: 30px; font-weight: 400; }
.step p { margin: 0; color: var(--muted); font-size: 14px; }

.faq-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; align-items: start; }
.faq-title { position: sticky; top: 120px; }
.faq-title h2 { margin: 14px 0 22px; font-size: clamp(54px,6.2vw,84px); }
.faq-title p { max-width: 360px; color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; list-style: none; padding: 25px 52px 25px 0; position: relative; font-family: Georgia, "Times New Roman", serif; font-size: 23px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 4px; top: 22px; font-family: Arial,sans-serif; font-size: 26px; color: var(--accent-dark); transition: transform .25s ease; }
details[open] summary::after { transform: rotate(45deg); }
details p { margin: -4px 50px 25px 0; color: var(--muted); }

.booking-section { padding-top: 75px; padding-bottom: 120px; }
.booking-shell { border-radius: 34px; overflow: hidden; background: var(--ink); color: white; display: grid; grid-template-columns: .95fr 1.05fr; min-height: 620px; }
.booking-copy { padding: 58px; display: flex; flex-direction: column; }
.booking-copy h2 { margin: 14px 0 22px; font-size: clamp(45px,5vw,70px); }
.booking-copy h2 em { color: #cfab98; }
.booking-copy > p { color: rgba(255,255,255,.62); max-width: 500px; }
.booking-copy code { font-size: .9em; background: rgba(255,255,255,.08); padding: 2px 5px; border-radius: 5px; }
.booking-contact { margin-top: auto; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); }
.booking-contact span { display: block; color: rgba(255,255,255,.5); font-size: 12px; margin-bottom: 8px; }
.booking-contact a { font-family: Georgia, "Times New Roman", serif; font-size: 25px; }

footer { border-top: 1px solid var(--line); padding: 30px 0 35px; }
.footer-inner { display: grid; grid-template-columns: 1fr auto auto; align-items: start; gap: 55px; }
.footer-inner p { color: var(--muted); font-size: 12px; }
.footer-links { display: grid; gap: 8px; font-size: 13px; color: var(--muted); }
.copyright { margin: 5px 0 0; }

.mobile-book { display: none; }
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(29,23,21,.90); backdrop-filter: blur(14px); display: grid; place-items: center; opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; padding: 50px 20px; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-inner { width: min(980px, 92vw); display: grid; justify-items: center; }
.lightbox-image, .lightbox-video { display: none; max-width: 100%; max-height: 76vh; border-radius: 26px; box-shadow: 0 28px 90px rgba(0,0,0,.35); background: #171311; object-fit: contain; }
.lightbox-image.active, .lightbox-video.active { display: block; }
.lightbox-video { width: min(980px, 92vw); aspect-ratio: 16 / 9; }
.lightbox-title { color: white; margin-top: 14px; font-family: Georgia, "Times New Roman", serif; font-size: 22px; text-align: center; }
.lightbox-close { position: absolute; right: 26px; top: 22px; width: 46px; height: 46px; border: 0; border-radius: 50%; background: rgba(255,255,255,.12); color: white; font-size: 27px; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .85s cubic-bezier(.2,.7,.2,1), transform .85s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .09s; }
.reveal-delay-2 { transition-delay: .18s; }

@media (max-width: 980px) {
  :root { --container: min(100% - 30px, 760px); }
  .desktop-nav { display: none; }
  .hero { padding-top: 108px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 65px; }
  .hero h1 { font-size: clamp(56px, 12vw, 88px); max-width: 760px; }
  .hero-visual { min-height: 560px; }
  .arch-photo { height: 540px; }
  .section { padding: 90px 0; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 20px; }
  .service-row { grid-template-columns: 42px 1fr 120px 50px; }
  .gallery { grid-auto-rows: 230px; }
  .about-grid { grid-template-columns: 1fr; gap: 55px; }
  .about-visual { min-height: 600px; }
  .about-collage { right: 0; }
  .signature { right: 5px; }
  .faq-grid { grid-template-columns: 1fr; gap: 35px; }
  .faq-title { position: static; }
  .booking-shell { grid-template-columns: 1fr; }
  .booking-copy { min-height: 440px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .header-inner { min-height: 66px; }
  .brand { font-size: 19px; }
  .header-inner .button-small { display: none; }
  .hero { padding-top: 98px; }
  .hero-grid { min-height: auto; }
  .hero h1 { font-size: clamp(50px, 14.5vw, 72px); }
  .lead { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-meta { margin-top: 34px; gap: 18px; }
  .hero-visual { min-height: 470px; }
  .arch-photo { width: 95%; height: 460px; border-radius: 170px 170px 25px 25px; }
  .floating-card-top { left: 0; top: 44px; }
  .floating-card-bottom { right: 0; bottom: 28px; }
  .hero-script { width: 240px; right: -55px; }
  .section { padding: 74px 0; }
  .section-heading h2, .about-copy h2, .faq-title h2 { font-size: clamp(44px, 13vw, 62px); }
  .service-row { grid-template-columns: 32px 1fr auto; gap: 12px; padding: 24px 0; }
  .service-main p { padding-right: 5px; }
  .service-price { grid-column: 2; text-align: left; font-size: 21px; }
  .circle-link { grid-column: 3; grid-row: 1 / span 2; align-self: center; width: 46px; height: 46px; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 330px; }
  .gallery-card.feature, .gallery-card.side, .gallery-card.third, .gallery-card.half { grid-column: 1; grid-row: auto; }
  .about-visual { min-height: 500px; }
  .about-collage { right: 0; }
  .about-collage-main { border-radius: 28px 150px 28px 28px; inset: 0 42px 58px 0; }
  .about-collage-detail { width: 52%; height: 31%; }
  .about-lead { font-size: 20px; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 220px; }
  summary { font-size: 20px; }
  .booking-section { padding-bottom: 90px; }
  .booking-shell { width: min(100% - 20px, 760px); border-radius: 28px; }
  .booking-copy { padding: 36px 26px; min-height: 410px; }
  .booking-copy h2 { font-size: clamp(40px,12vw,56px); }
  .footer-inner { grid-template-columns: 1fr; gap: 25px; }
  footer { padding-bottom: 110px; }
  .mobile-book { display: flex; position: fixed; z-index: 95; left: 12px; right: 12px; bottom: 11px; height: 56px; padding: 0 20px; align-items: center; justify-content: space-between; border-radius: 999px; background: var(--ink); color: white; box-shadow: 0 18px 45px rgba(44,36,33,.28); font-weight: 750; }
  .mobile-book b { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.11); }
  .lightbox-image, .lightbox-video { max-height: 64vh; }
}

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

/* Updated personal master block */
.about-portrait {
  position: absolute;
  inset: 0 28px 92px 0;
  border-radius: 34px 190px 34px 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #f0ece7;
}
.about-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(35,28,25,.18) 100%);
  pointer-events: none;
}
.about-portrait > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.about-visual:hover .about-portrait > img { transform: scale(1.018); }
.about-portrait .about-badge { bottom: 25px; }
.about-role {
  position: absolute;
  z-index: 4;
  left: 24px;
  right: 52px;
  bottom: 0;
  top: auto;
  min-height: 74px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255,250,245,.94);
  border: 1px solid rgba(118,88,73,.10);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 38px rgba(65,44,36,.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.about-role span {
  display: block;
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin: 0;
  white-space: nowrap;
}
.about-role strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 400;
  text-align: right;
  white-space: nowrap;
}
.about-links { display: flex; align-items: center; flex-wrap: wrap; gap: 18px 26px; }
.text-link-muted { color: var(--muted); }

/* Direct booking channels */
.booking-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 30px;
}
.booking-option {
  min-height: 142px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.055);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.booking-option:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.095);
  border-color: rgba(255,255,255,.24);
}
.booking-option-primary { background: #cfab98; color: #2c2421; border-color: transparent; }
.booking-option-primary:hover { background: #d7b6a5; border-color: transparent; }
.booking-option small { font-size: 10px; line-height: 1.35; opacity: .64; }
.booking-option strong {
  margin-top: auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.05;
}
.booking-option span { margin-top: 7px; font-size: 12px; font-weight: 700; opacity: .82; }
.booking-contact { margin-top: 25px; }
.booking-contact span { max-width: 390px; line-height: 1.5; }

@media (max-width: 980px) {
  .about-portrait { right: 0; }
}

@media (max-width: 700px) {
  .about-portrait { right: 0; bottom: 92px; border-radius: 28px 140px 28px 28px; }
  .about-role { left: 12px; right: 12px; bottom: 0; top: auto; min-height: 78px; padding: 12px 14px; gap: 10px; }
  .about-role span { font-size: 8px; white-space: normal; max-width: 90px; }
  .about-role strong { font-size: 18px; white-space: normal; max-width: 150px; }
  .about-portrait .about-badge { left: 14px; bottom: 16px; }
  .booking-options { grid-template-columns: 1fr; }
  .booking-option { min-height: 124px; }
  .about-links { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .about-portrait > img,
  .booking-option { transition-duration: .01ms !important; }
}

/* Location and Google Maps */
.location-section {
  background: var(--paper);
  padding-top: 105px;
  padding-bottom: 105px;
}
.location-heading { align-items: end; }
.location-copy {
  width: min(100%, 440px);
  padding-bottom: 6px;
}
.location-copy strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 400;
  line-height: 1.1;
}
.location-copy p {
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 14px;
}
.map-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--paper-2);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 7;
  min-height: 390px;
}
.google-map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
}
.map-privacy-note {
  max-width: 860px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}
.map-privacy-note a { text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 700px) {
  .location-section { padding-top: 80px; padding-bottom: 80px; }
  .location-heading { align-items: flex-start; }
  .location-copy { width: 100%; }
  .map-shell { border-radius: 22px; aspect-ratio: 4 / 5; min-height: 420px; }
  .google-map { min-height: 420px; }
}

/* Booking without contact form */
.booking-shell {
  grid-template-columns: 1fr;
  min-height: auto;
}
.booking-copy-wide {
  padding: 64px;
}
.booking-copy-wide > p {
  max-width: 760px;
  font-size: 17px;
}
.booking-options-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.booking-contact-personal {
  margin-top: 34px;
}
.booking-contact-personal span {
  margin-bottom: 6px;
}
.booking-contact-personal strong {
  display: block;
  max-width: 620px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.1;
}

@media (max-width: 980px) {
  .booking-options-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .booking-copy-wide { padding: 36px 26px; }
  .booking-copy-wide > p { font-size: 15px; }
  .booking-options-four { grid-template-columns: 1fr; }
}


/* Brand gaze label + guarded outbound actions */
[data-human-action] { cursor: pointer; }
.human-action-toast {
  position: fixed; z-index: 160; left: 50%; bottom: 88px; transform: translate(-50%, 18px);
  max-width: min(92vw, 460px); padding: 11px 15px; border-radius: 999px;
  background: rgba(44,36,33,.94); color: #fff; font-size: 12px; line-height: 1.35;
  opacity: 0; pointer-events: none; transition: opacity .22s ease, transform .22s ease;
  box-shadow: 0 14px 38px rgba(44,36,33,.20); text-align: center;
}
.human-action-toast.show { opacity: 1; transform: translate(-50%, 0); }
@media (max-width: 700px) {
  .brand-mark { width: 42px; height: 28px; }
  .brand-copy strong { font-size: 16px; }
  .brand-copy small { font-size: 7px; letter-spacing: .16em; }
}

/* Legal and privacy information */
.privacy-note {
  margin-top: 24px;
  max-width: 860px;
  font-size: 12px !important;
  line-height: 1.55;
  opacity: .72;
}
.privacy-note a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.footer-legal {
  margin-top: 14px !important;
  max-width: 560px;
  font-size: 11px !important;
  line-height: 1.55 !important;
  opacity: .68;
}

.legal-page { background: var(--bg); color: var(--ink); min-height: 100vh; }
.legal-header {
  position: sticky; top: 0; z-index: 20;
  border-bottom: 1px solid rgba(44,36,33,.08);
  background: rgba(244,238,232,.92);
  backdrop-filter: blur(16px);
}
.legal-header-inner {
  min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.legal-back { font-size: 13px; font-weight: 700; color: var(--ink); text-decoration: none; }
.legal-main { padding: 74px 0 110px; }
.legal-hero { max-width: 900px; margin-bottom: 52px; }
.legal-hero h1 { margin: 12px 0 18px; font-size: clamp(42px, 7vw, 86px); line-height: .95; font-weight: 400; }
.legal-hero p { max-width: 780px; font-size: 17px; line-height: 1.65; color: var(--muted); }
.legal-updated { display: inline-block; margin-top: 12px; font-size: 12px; color: var(--muted); }
.legal-content { max-width: 900px; }
.legal-section { padding: 34px 0; border-top: 1px solid rgba(44,36,33,.12); }
.legal-section h2 { margin: 0 0 16px; font-size: clamp(26px, 4vw, 38px); font-weight: 400; }
.legal-section h3 { margin: 26px 0 10px; font-size: 18px; }
.legal-section p, .legal-section li { font-size: 15px; line-height: 1.72; }
.legal-section p { margin: 0 0 13px; }
.legal-section ul { margin: 10px 0 16px 20px; padding: 0; }
.legal-section li { margin: 7px 0; }
.legal-section a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.legal-card {
  margin: 18px 0; padding: 22px; border: 1px solid rgba(44,36,33,.12); border-radius: 20px;
  background: rgba(255,255,255,.35);
}
.legal-card strong { display: block; margin-bottom: 6px; }
.legal-muted { color: var(--muted); }
.legal-table { width: 100%; border-collapse: collapse; margin: 18px 0; }
.legal-table th, .legal-table td { padding: 13px 12px; vertical-align: top; border-bottom: 1px solid rgba(44,36,33,.10); text-align: left; font-size: 13px; line-height: 1.55; }
.legal-table th { font-weight: 700; }
@media (max-width: 700px) {
  .legal-main { padding-top: 46px; }
  .legal-header-inner { min-height: 64px; }
  .legal-table, .legal-table tbody, .legal-table tr, .legal-table th, .legal-table td { display: block; width: 100%; }
  .legal-table thead { display: none; }
  .legal-table tr { padding: 12px 0; border-bottom: 1px solid rgba(44,36,33,.12); }
  .legal-table td { border: 0; padding: 5px 0; }
  .legal-table td::before { content: attr(data-label); display: block; margin-bottom: 2px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; opacity: .55; }
}
