/* Kinés·sens — static design system */
:root {
  --bg: #f9f7f3;
  --bg-soft: #eeece5;
  --surface: #fdfcfa;
  --surface-raised: #ffffff;
  --ink: #2b2723;
  --ink-soft: #4a453f;
  --ink-muted: #6d655d;
  --accent: #3f6b52;
  --accent-strong: #33573f;
  --accent-soft: #e7e3d9;
  --gold: #876b36;
  --line: #e1ddd3;
  --footer: #2e2b26;
  --footer-ink: #d9d5cc;
  --max-width: 1200px;
  --reading-width: 760px;
  --radius: 10px;
  --radius-lg: 24px;
  --shadow: 0 16px 40px rgba(43, 39, 35, .08);
  --ease: cubic-bezier(.2, .8, .2, 1);
  font-size: 16px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
  font-family: "Work Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1; }
h1, h2, h3, h4 { margin: 0; color: var(--ink); font-family: "Cormorant Garamond", ui-serif, Georgia, serif; font-weight: 600; line-height: 1.05; }
h1 { font-size: clamp(2.9rem, 7vw, 5.7rem); letter-spacing: -.035em; }
h2 { font-size: clamp(2.1rem, 4vw, 3.25rem); letter-spacing: -.02em; }
h3 { font-size: clamp(1.45rem, 2.2vw, 1.9rem); }
p, ul, ol, blockquote { margin: 0; }
ul, ol { padding-left: 1.35rem; }
a { color: var(--accent); text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: var(--accent-strong); }
button, a { touch-action: manipulation; }
button, input, textarea, select { font: inherit; }
img, svg { display: block; max-width: 100%; }
address { font-style: normal; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; z-index: 100; top: .75rem; left: .75rem; transform: translateY(-150%);
  padding: .75rem 1rem; border-radius: 6px; color: #fff; background: var(--accent-strong); font-weight: 600;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #a68a4a; outline-offset: 4px; }
.container { width: min(100% - 2rem, var(--max-width)); margin-inline: auto; }
.container--narrow { max-width: var(--reading-width); }
.section { padding-block: clamp(3.75rem, 8vw, 7.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.section--soft { background: var(--bg-soft); }
.section--dark { color: var(--footer-ink); background: var(--footer); }
.section--dark h2, .section--dark h3 { color: #fff; }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1rem;
  color: var(--accent); font-size: .76rem; font-weight: 600; letter-spacing: .16em; line-height: 1.2; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 2.25rem; height: 1px; background: var(--gold); }
.lede { max-width: 42rem; color: var(--ink-soft); font-size: clamp(1.05rem, 1.8vw, 1.25rem); line-height: 1.75; }
.center .lede { margin-inline: auto; }
.prose { max-width: var(--reading-width); }
.prose > * + * { margin-top: 1.2rem; }
.prose p, .prose li { color: var(--ink-soft); line-height: 1.85; }
.prose h2 { margin-top: 3rem; font-size: clamp(1.8rem, 3vw, 2.45rem); }
.prose h3 { margin-top: 2rem; font-size: 1.65rem; }
.prose strong { color: var(--ink); }
.prose a { font-weight: 500; }
.muted { color: var(--ink-muted); }

/* Header and navigation */
.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(225, 221, 211, .9); background: var(--bg); backdrop-filter: blur(12px); }
.header-inner { position: relative; display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--ink); text-decoration: none; }
.brand:hover { color: var(--ink); }
.brand-mark { display: grid; place-items: center; width: 2.6rem; height: 2.6rem; overflow: hidden; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-word { font-family: "Cormorant Garamond", ui-serif, Georgia, serif; font-size: 1.8rem; font-weight: 600; line-height: .9; letter-spacing: -.02em; }
.brand-tagline { display: block; margin-top: .28rem; color: var(--accent); font-family: "Work Sans", ui-sans-serif, sans-serif; font-size: .57rem; font-weight: 600; letter-spacing: .16em; line-height: 1; text-transform: uppercase; }
.nav-toggle { display: inline-grid; place-items: center; width: 2.9rem; height: 2.9rem; padding: 0; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: var(--surface); cursor: pointer; }
.nav-toggle svg { width: 1.25rem; height: 1.25rem; }
.main-nav { display: none; flex-direction: column; gap: .25rem; padding: .75rem 0 1rem; border-top: 1px solid var(--line); }
.main-nav.open { display: flex; }
.main-nav a { display: inline-flex; align-items: center; min-height: 2.9rem; padding: .55rem .35rem; color: var(--ink-soft); font-size: .9rem; text-decoration: none; }
.main-nav a:hover { color: var(--accent); }
.main-nav a.active { color: var(--accent-strong); font-weight: 600; }
.main-nav .nav-booking { justify-content: center; margin-top: .5rem; color: #fff; }
.nav-booking, .btn { display: inline-flex; align-items: center; justify-content: center; gap: .6rem; min-height: 2.9rem; padding: .7rem 1.2rem; border: 1px solid transparent; border-radius: 999px; font-size: .86rem; font-weight: 600; line-height: 1.2; text-align: center; text-decoration: none; cursor: pointer; transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease); }
.nav-booking { color: #fff; background: var(--accent); }
.nav-booking:hover, .btn-primary:hover { color: #fff; background: var(--accent-strong); box-shadow: 0 8px 18px rgba(51, 87, 63, .2); transform: translateY(-1px); }
.nav-booking svg, .btn svg { width: 1rem; height: 1rem; }

/* Buttons and cards */
.btn-primary { color: #fff; background: var(--accent); }
.btn-secondary { color: var(--ink); border-color: var(--ink); background: transparent; }
.btn-secondary:hover { color: #fff; border-color: var(--ink); background: var(--ink); transform: translateY(-1px); }
.btn-quiet { color: var(--accent); border-color: var(--line); background: var(--surface); }
.btn-quiet:hover { border-color: var(--accent); background: var(--accent-soft); }
.btn-row { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; }
.card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.card-body { padding: clamp(1.25rem, 3vw, 2rem); }
.card-link { display: flex; flex-direction: column; min-height: 100%; color: inherit; overflow: hidden; text-decoration: none; transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease); }
.card-link:hover { color: inherit; border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-4px); }
.card-link .card-body { display: flex; flex: 1; flex-direction: column; }
.card-link .card-arrow { display: inline-flex; align-items: center; gap: .5rem; margin-top: auto; padding-top: 1.5rem; color: var(--accent); font-size: .82rem; font-weight: 600; }
.card-arrow svg { width: 1rem; height: 1rem; transition: transform .2s var(--ease); }
.card-link:hover .card-arrow svg { transform: translateX(4px); }
.grid-2, .grid-3, .grid-4 { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }

/* Local visual system */
.visual { position: relative; min-height: 18rem; overflow: hidden; isolation: isolate; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--accent-soft); }
.visual::after { position: absolute; z-index: -1; inset: 1rem; border: 1px solid rgba(111, 83, 60, .2); border-radius: 50%; content: ""; }
.visual--hero { min-height: min(40rem, 70vw); background: linear-gradient(145deg, #f4ede3 0%, #dfcfbc 100%); }
.visual--hero::before { position: absolute; right: -18%; bottom: -22%; width: 76%; aspect-ratio: 1; border: 1px solid rgba(126, 91, 61, .36); border-radius: 50%; box-shadow: 0 0 0 2.5rem rgba(126, 91, 61, .04), 0 0 0 5rem rgba(126, 91, 61, .04); content: ""; }
.visual__orb { position: absolute; top: 12%; right: 13%; width: 35%; aspect-ratio: 1; border-radius: 50%; background: rgba(255, 252, 247, .72); box-shadow: 0 1rem 3rem rgba(93, 64, 48, .08); }
.visual__stem { position: absolute; right: 39%; bottom: 14%; width: 2px; height: 58%; background: var(--accent); transform: rotate(28deg); transform-origin: bottom; }
.visual__leaf { position: absolute; width: 7rem; aspect-ratio: 1.3; border-radius: 100% 0 100% 0; background: var(--accent); transform: rotate(-26deg); }
.visual__leaf--one { right: 36%; bottom: 43%; }
.visual__leaf--two { right: 24%; bottom: 28%; width: 5.5rem; background: var(--gold); transform: rotate(40deg) scaleX(-1); }
.visual__label { position: absolute; left: 1.25rem; bottom: 1.25rem; max-width: 13rem; padding: .8rem 1rem; border: 1px solid rgba(111, 83, 60, .2); border-radius: var(--radius); color: var(--ink); background: var(--surface); font-size: .76rem; line-height: 1.45; }
.visual__label strong { display: block; margin-bottom: .2rem; color: var(--accent); font-family: "Cormorant Garamond", ui-serif, Georgia, serif; font-size: 1.35rem; line-height: 1; }
.visual__stamp { position: absolute; top: 1.25rem; left: 1.25rem; display: grid; place-items: center; width: 5.25rem; aspect-ratio: 1; border: 1px solid var(--gold); border-radius: 50%; color: var(--accent-strong); background: var(--bg); font-size: .63rem; font-weight: 600; letter-spacing: .08em; line-height: 1.2; text-align: center; text-transform: uppercase; transform: rotate(-12deg); }
.visual--small { min-height: 11rem; border-radius: var(--radius); }
.visual--small::after { inset: .75rem; }
.visual--small .visual__orb { top: 18%; right: 18%; width: 32%; }
.visual--small .visual__stem { right: 43%; bottom: 11%; height: 60%; }
.visual--small .visual__leaf { width: 4.6rem; }
.visual--small .visual__leaf--one { right: 39%; bottom: 38%; }
.visual--small .visual__leaf--two { right: 27%; bottom: 21%; width: 3.6rem; }
.visual--small .visual__label { right: .75rem; bottom: .75rem; left: .75rem; padding: .55rem .75rem; font-size: .7rem; }
.visual--small .visual__label strong { font-size: 1.05rem; }
.visual--warm { background: linear-gradient(145deg, #f2eadb 0%, #e5d7ba 100%); }
.visual--warm .visual__stem { background: var(--gold); }
.visual--warm .visual__leaf--one { background: var(--gold); }
.visual--blue { background: linear-gradient(145deg, #eeece7 0%, #d8d2c9 100%); }
.visual--blue .visual__stem { background: #6f726f; }
.visual--blue .visual__leaf--one { background: #6f726f; }
.visual--rose { background: linear-gradient(145deg, #eee7e1 0%, #dfcec1 100%); }
.visual--rose .visual__stem { background: #996b58; }
.visual--rose .visual__leaf--one { background: #996b58; }
.visual--dark { min-height: 14rem; background: linear-gradient(145deg, #4a3b31 0%, #2e2722 100%); }
.visual--dark::after { border-color: rgba(255,255,255,.2); }
.visual--dark .visual__orb { background: rgba(255, 254, 250, .12); }
.visual--dark .visual__stem { background: #e6c27a; }
.visual--dark .visual__leaf--one { background: #e6c27a; }
.visual--dark .visual__label { color: #fff; border-color: rgba(255,255,255,.22); background: #3c3028; }
.visual--dark .visual__label strong { color: #e6c27a; }
.visual__caption { margin-top: .65rem; color: var(--ink-muted); font-size: .72rem; }

/* Homepage */
.utility-bar { color: var(--footer-ink); background: var(--footer); font-size: .74rem; }
.utility-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 2.25rem; }
.utility-bar a { color: #fff; font-weight: 600; text-decoration: none; white-space: nowrap; }
.hero { padding-block: clamp(3.25rem, 8vw, 7.5rem) clamp(3.75rem, 7vw, 6.5rem); }
.hero__grid { display: grid; align-items: center; gap: clamp(2.25rem, 6vw, 6rem); }
.hero__copy { max-width: 38rem; }
.hero h1 { max-width: 11ch; margin-bottom: 1.5rem; }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero__copy .lede { margin-bottom: 2rem; }
.hero__meta { display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; margin-top: 1.5rem; color: var(--ink-muted); font-size: .77rem; }
.hero__meta span { display: inline-flex; align-items: center; gap: .45rem; }
.hero__meta svg { width: 1rem; height: 1rem; color: var(--gold); }
.hero-media { max-width: 34rem; margin-inline: auto; }
.portrait-card { position: relative; min-height: min(40rem, 70vw); overflow: hidden; isolation: isolate; border: 1px solid var(--line); border-radius: var(--radius-lg); background-color: #f1e9df; background-image: radial-gradient(circle at 82% 30%, transparent 0 21%, rgba(126, 91, 61, .28) 21.15% 21.3%, transparent 21.5% 29%, rgba(126, 91, 61, .04) 29.15% 29.3%, transparent 29.5%), linear-gradient(145deg, #f1e9df 0%, #d9cbbd 100%); box-shadow: 0 2rem 5rem rgba(93, 64, 48, .12); }
.portrait-card::before, .portrait-card::after { display: none; }
.portrait-card picture { position: absolute; z-index: 1; inset: 1.25rem 0 0; }
.portrait-card__image { width: 100%; height: 100%; object-fit: contain; object-position: center bottom; }
.portrait-card__kicker { position: absolute; z-index: 2; top: 1.25rem; left: 1.25rem; padding: .3rem .5rem; border: 1px solid var(--line); border-radius: 6px; color: var(--accent-strong); background: var(--surface); font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.portrait-card__label { position: absolute; z-index: 3; right: 1.25rem; bottom: 1.25rem; left: 1.25rem; max-width: 15rem; padding: .8rem 1rem; border: 1px solid rgba(111, 83, 60, .2); border-radius: var(--radius); color: var(--ink); background: var(--surface); font-size: .76rem; line-height: 1.45; }
.portrait-card__label strong { display: block; margin-bottom: .2rem; color: var(--accent); font-family: "Cormorant Garamond", ui-serif, Georgia, serif; font-size: 1.35rem; line-height: 1; }
.media-caption { margin-top: .65rem; color: var(--ink-muted); font-size: .72rem; }
.intro-strip { padding-block: 1rem; border-block: 1px solid var(--line); background: var(--surface); }
.intro-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.intro-strip p { color: var(--ink-soft); font-size: .86rem; }
.intro-strip strong { color: var(--accent); font-weight: 600; }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.trust-item { display: flex; align-items: flex-start; gap: .8rem; min-height: 100%; padding: 1rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.trust-item__icon { display: grid; place-items: center; flex: none; width: 2rem; height: 2rem; border-radius: 50%; color: var(--accent); background: var(--accent-soft); }
.trust-item__icon svg { width: 1rem; height: 1rem; }
.trust-item span:last-child { color: var(--ink-soft); font-size: .78rem; line-height: 1.45; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2.5rem; }
.section-heading > div { max-width: 40rem; }
.section-heading p { margin-top: 1rem; color: var(--ink-soft); }
.section-heading .eyebrow { margin-bottom: .75rem; }
.card-link__art { padding: .75rem .75rem 0; }
.local-panel { display: grid; align-items: stretch; gap: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); }
.local-panel__copy { padding: clamp(1.5rem, 5vw, 4rem); }
.local-panel__copy p + p { margin-top: 1rem; }
.local-panel__copy .lede { margin-bottom: 1.5rem; font-size: 1.05rem; }
.local-panel__map { display: flex; min-height: 18rem; flex-direction: column; background: var(--bg-soft); }
.local-panel__map-frame { position: relative; flex: 1 1 auto; min-height: clamp(17rem, 38vw, 24rem); }
.local-panel__map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.local-panel__map-meta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .9rem 1.25rem; border-top: 1px solid var(--line); background: var(--surface); }
.local-panel__map-meta p { color: var(--ink-soft); font-size: .78rem; line-height: 1.45; }
.local-panel__map-meta strong { display: block; color: var(--ink); font-size: .84rem; }
.map-link { display: inline-flex; align-items: center; justify-content: center; gap: .45rem; min-height: 44px; padding: .6rem .75rem; border-radius: 6px; color: var(--accent); font-size: .78rem; font-weight: 600; text-align: center; text-decoration: none; white-space: nowrap; transition: background-color .2s var(--ease), color .2s var(--ease); }
.map-link:hover { color: var(--accent-strong); background: var(--accent-soft); }
.map-link svg { width: 1rem; height: 1rem; flex: none; }
.quote { padding: clamp(1.5rem, 4vw, 3rem); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); }
.quote__mark { color: var(--gold); font-family: Georgia, serif; font-size: 3.4rem; line-height: .7; }
.quote blockquote { margin: 1.25rem 0; color: var(--ink); font-family: "Cormorant Garamond", ui-serif, Georgia, serif; font-size: clamp(1.6rem, 3vw, 2.25rem); line-height: 1.18; }
.quote cite { color: var(--ink-muted); font-size: .8rem; font-style: normal; }
.review-grid { display: grid; gap: 1rem; }
.review { display: flex; flex-direction: column; height: 100%; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.review__stars { margin-bottom: .9rem; color: var(--gold); letter-spacing: .14em; font-size: .9rem; }
.review blockquote { flex: 1; color: var(--ink-soft); font-size: .93rem; line-height: 1.7; }
.review cite { margin-top: 1.25rem; color: var(--ink); font-size: .8rem; font-style: normal; font-weight: 600; }
.cta-band { display: grid; align-items: center; gap: 1.5rem; padding: clamp(1.5rem, 5vw, 3rem); border-radius: var(--radius-lg); color: var(--footer-ink); background: var(--footer); }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); }
.cta-band p { max-width: 37rem; margin-top: .75rem; color: var(--footer-ink); }
.cta-band .btn-secondary { color: #fff; border-color: rgba(255,255,255,.65); }
.cta-band .btn-secondary:hover { color: var(--footer); border-color: #fff; background: #fff; }

/* Interior pages */
.page-hero { padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(2.5rem, 5vw, 4rem); }
.page-hero__inner { max-width: 53rem; }
.page-hero h1 { max-width: 13ch; margin-bottom: 1.25rem; font-size: clamp(3rem, 7vw, 5.4rem); }
.page-hero--center .page-hero__inner { margin-inline: auto; text-align: center; }
.page-hero--center h1 { margin-inline: auto; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.5rem; color: var(--ink-muted); font-size: .75rem; }
.breadcrumb a { color: var(--ink-muted); }
.breadcrumb span[aria-hidden] { color: var(--gold); }
.feature-layout { display: grid; align-items: center; gap: clamp(2rem, 6vw, 6rem); }
.feature-layout--reverse .feature-layout__art { order: 2; }
.feature-layout__copy h2 { margin-bottom: 1.2rem; }
.feature-layout__copy p + p { margin-top: 1rem; }
.feature-layout__copy p { color: var(--ink-soft); line-height: 1.85; }
.profile-card { margin: 0; }
.profile-card__portrait { position: relative; min-height: min(36rem, 68vw); overflow: hidden; isolation: isolate; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg, #f1e9df 0%, #d9cbbd 100%); }
.profile-card__portrait::before { position: absolute; right: -18%; bottom: -15%; width: 76%; aspect-ratio: 1; border: 1px solid rgba(126, 91, 61, .26); border-radius: 50%; box-shadow: 0 0 0 2.5rem rgba(126, 91, 61, .04); content: ""; }
.profile-card__portrait picture { position: absolute; z-index: 1; inset: 1rem 0 0; }
.profile-card__portrait img { width: 100%; height: 100%; object-fit: contain; object-position: center bottom; }
.profile-card__brand { position: relative; z-index: 2; display: flex; align-items: center; gap: .8rem; margin: -3.25rem 1rem 0; padding: .65rem .8rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.profile-card__brand img { flex: none; width: 4.5rem; height: 4.5rem; object-fit: cover; border: 1px solid var(--line); border-radius: 50%; background: #fff; }
.profile-card__brand strong { display: block; color: var(--ink); font-family: "Cormorant Garamond", ui-serif, Georgia, serif; font-size: 1.35rem; line-height: 1.05; }
.profile-card__brand span { display: block; margin-top: .25rem; color: var(--ink-muted); font-size: .72rem; line-height: 1.35; }
.profile-card__caption { margin-top: .8rem; color: var(--ink-muted); font-size: .72rem; }
.editorial-media { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow); }
.editorial-media picture { display: block; }
.editorial-media img { width: 100%; height: clamp(14rem, 36vw, 30rem); aspect-ratio: 16 / 7; object-fit: cover; }
.editorial-media figcaption { padding: .75rem 1rem; color: var(--ink-muted); font-size: .72rem; }
.highlight-quote { margin: 2rem 0; padding-left: 1.25rem; border-left: 2px solid var(--gold); color: var(--accent); font-family: "Cormorant Garamond", ui-serif, Georgia, serif; font-size: clamp(1.5rem, 3vw, 2.1rem); font-style: italic; line-height: 1.2; }
.pill-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.pill { padding: .55rem .8rem; border: 1px solid var(--line); border-radius: 999px; color: var(--accent-strong); background: var(--surface); font-size: .75rem; font-weight: 600; }
.audience-grid { display: grid; gap: .85rem; }
.audience-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.audience-card__image { display: block; width: 100%; height: clamp(11rem, 22vw, 14rem); aspect-ratio: 16 / 9; object-fit: cover; }
.audience-card__body { padding: 1.2rem 1.35rem 1.35rem; }
.audience-card h3 { margin-bottom: .75rem; color: var(--accent); font-size: 1.5rem; }
.audience-card ul { color: var(--ink-soft); font-size: .88rem; line-height: 1.7; }
.audience-card li::marker { color: var(--gold); }
.triad-grid { display: grid; gap: 1rem; }
.triad-card { padding: 1.5rem; border: 1px solid var(--line); border-top: 3px solid var(--accent); border-radius: var(--radius); background: var(--surface); }
.triad-card:nth-child(2) { border-top-color: var(--gold); }
.triad-card:nth-child(3) { border-top-color: #8b7660; }
.triad-card h3 { margin-bottom: .65rem; font-size: 1.35rem; }
.triad-card p { color: var(--ink-soft); font-size: .9rem; line-height: 1.65; }
.steps { display: grid; gap: 1.5rem; margin-top: 1.5rem; }
.step { display: grid; grid-template-columns: 3.5rem 1fr; gap: 1rem; align-items: start; }
.step__number { color: var(--accent); font-family: "Cormorant Garamond", ui-serif, Georgia, serif; font-size: 2.4rem; font-weight: 600; line-height: 1; }
.step h3 { margin-bottom: .4rem; font-size: 1.5rem; }
.step p { color: var(--ink-soft); line-height: 1.75; }
.tech-grid { display: grid; gap: 1rem; }
.tech-card { overflow: hidden; }
.tech-card__art { margin: .75rem .75rem 0; }
.tech-card .card-body { padding: 1.35rem; }
.tech-card h3 { margin-bottom: .2rem; font-size: 1.5rem; }
.tech-card__tag { margin-bottom: .9rem; color: var(--ink-muted); font-size: .75rem; font-weight: 600; letter-spacing: .04em; }
.tech-card p { color: var(--ink-soft); font-size: .88rem; line-height: 1.7; }
.tech-card .tech-card__result { margin-top: .85rem; color: var(--accent); font-size: .78rem; font-style: italic; }
.price-grid { display: grid; gap: 1rem; }
.price-card { padding: 1.5rem; text-align: center; }
.price-card__amount { color: var(--accent); font-family: "Cormorant Garamond", ui-serif, Georgia, serif; font-size: 3.5rem; font-weight: 600; line-height: 1; }
.price-card__label { margin-top: .55rem; color: var(--ink-soft); font-size: .9rem; }
.price-card--featured { border-color: var(--accent); box-shadow: var(--shadow); }
.price-card__note { max-width: 42rem; margin: 1.5rem auto 0; color: var(--ink-muted); font-size: .82rem; text-align: center; }
.faq-list { display: grid; gap: .75rem; max-width: 52rem; margin-inline: auto; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.faq-q { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 3.75rem; gap: 1rem; padding: 1rem 1.25rem; border: 0; color: var(--ink); background: transparent; font-size: .95rem; font-weight: 600; text-align: left; cursor: pointer; }
.faq-q:hover { color: var(--accent); background: var(--accent-soft); }
.faq-q__icon { display: grid; place-items: center; flex: none; width: 1.5rem; height: 1.5rem; border-radius: 50%; color: var(--accent); background: var(--accent-soft); font-size: 1.25rem; font-weight: 400; line-height: 1; }
.faq-a { padding: 0 1.25rem 1.25rem; color: var(--ink-soft); font-size: .9rem; line-height: 1.75; }
.faq-a[hidden] { display: none; }
.badge-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.badge { padding: .55rem .8rem; border: 1px solid var(--accent); border-radius: 999px; color: var(--accent-strong); background: var(--accent-soft); font-size: .75rem; font-weight: 600; }
.contact-grid { display: grid; gap: 1rem; }
.contact-card { padding: 1.25rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.contact-card__icon { display: grid; place-items: center; width: 2.25rem; height: 2.25rem; margin-bottom: .85rem; border-radius: 50%; color: var(--accent); background: var(--accent-soft); }
.contact-card__icon svg { width: 1.1rem; height: 1.1rem; }
.contact-card h2 { margin-bottom: .35rem; font-size: 1.45rem; }
.contact-card p { color: var(--ink-soft); font-size: .9rem; line-height: 1.65; }
.contact-card a { font-weight: 600; }
.map-card { display: flex; min-height: 100%; flex-direction: column; overflow: hidden; border-radius: var(--radius-lg); color: #fff; background: var(--footer); }
.map-card__frame { position: relative; min-height: 17rem; aspect-ratio: 16 / 10; background: var(--bg-soft); }
.map-card__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-card__body { padding: clamp(1.5rem, 4vw, 3rem); }
.map-card__body .eyebrow { color: #d8bd80; }
.map-card h2 { margin-bottom: .7rem; color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.map-card p { max-width: 20rem; color: var(--footer-ink); }
.map-card__address { margin-top: 1rem; }
.map-card__address strong { color: #fff; }
.map-card .btn { margin-top: 1.5rem; }
.legal-note { padding: 1rem 1.25rem; border-left: 3px solid var(--gold); color: var(--ink-soft); background: var(--accent-soft); font-size: .83rem; }

/* 404 page */
.not-found { padding-block: clamp(3.5rem, 8vw, 7rem); }
.not-found__layout { display: grid; align-items: center; gap: clamp(3rem, 8vw, 7rem); }
.not-found__copy { max-width: 39rem; }
.not-found h1 { max-width: 11ch; margin-bottom: 1.35rem; font-size: clamp(3.2rem, 8vw, 6rem); }
.not-found .lede { margin-bottom: 1.4rem; }
.not-found__message { max-width: 34rem; margin-bottom: 1.8rem; padding: .75rem 1rem; border-left: 3px solid var(--gold); color: var(--ink-soft); background: var(--accent-soft); font-size: .86rem; }
.not-found__help { max-width: 37rem; margin-top: 1.5rem; color: var(--ink-muted); font-size: .82rem; }
.not-found__help a { font-weight: 600; }
.not-found__art { width: 100%; max-width: 34rem; margin-inline: auto; }
.not-found__visual { display: grid; place-items: center; min-height: min(31rem, 72vw); background: linear-gradient(145deg, #f4ede3 0%, #dfcfbc 100%); box-shadow: 0 2rem 5rem rgba(93, 64, 48, .12); }
.not-found__visual::before { position: absolute; right: -18%; bottom: -22%; width: 76%; aspect-ratio: 1; border: 1px solid rgba(126, 91, 61, .36); border-radius: 50%; box-shadow: 0 0 0 2.5rem rgba(126, 91, 61, .04), 0 0 0 5rem rgba(126, 91, 61, .04); content: ""; }
.not-found__number { position: relative; z-index: 2; color: #5f7c68; font-family: "Cormorant Garamond", ui-serif, Georgia, serif; font-size: clamp(10rem, 27vw, 18rem); font-weight: 600; letter-spacing: -.08em; line-height: .75; user-select: none; }
.not-found__route { position: absolute; z-index: 1; inset: 15% 8% 12% 10%; width: 82%; height: 73%; color: var(--accent); opacity: .92; transform: rotate(-6deg); }
.not-found__route path:first-child { stroke-dasharray: 1 10; stroke-width: 4; }
.not-found__route circle { filter: drop-shadow(0 .4rem .5rem rgba(63, 107, 82, .18)); }
.not-found__visual .visual__label { z-index: 2; }
.not-found-links { border-top: 1px solid var(--line); background: var(--bg-soft); }
.not-found-links__heading { margin-bottom: 1.75rem; }
.not-found-links__heading h2 { max-width: 20ch; }
.not-found-links__grid { display: grid; gap: .75rem; }
.not-found-link { display: grid; grid-template-columns: 2.5rem minmax(0, 1fr) auto; align-items: center; gap: .8rem; min-height: 5.5rem; padding: 1rem 1.1rem; border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink); background: var(--surface); text-decoration: none; transition: border-color .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease), transform .2s var(--ease); }
.not-found-link:hover { color: var(--ink); border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-2px); }
.not-found-link__index { color: var(--gold); font-family: "Cormorant Garamond", ui-serif, Georgia, serif; font-size: 1.55rem; line-height: 1; }
.not-found-link strong { display: block; margin-bottom: .18rem; font-family: "Cormorant Garamond", ui-serif, Georgia, serif; font-size: 1.35rem; line-height: 1; }
.not-found-link > span:nth-child(2) > span { color: var(--ink-muted); font-size: .78rem; line-height: 1.45; }
.not-found-link > svg { width: 1.1rem; color: var(--accent); transition: transform .2s var(--ease); }
.not-found-link:hover > svg { transform: translateX(4px); }

/* Footer */
.site-footer { margin-top: auto; padding: 4rem 0 1.5rem; color: var(--footer-ink); background: var(--footer); }
.footer-grid { display: grid; gap: 2.25rem; }
.footer-title { color: #fff; font-family: "Cormorant Garamond", ui-serif, Georgia, serif; font-size: 2rem; font-weight: 600; line-height: 1; }
.footer-subtitle { margin-top: .5rem; color: #c5baad; font-size: .76rem; }
.footer-heading { margin-bottom: .85rem; color: #d8bd80; font-size: .7rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.footer-address { margin-top: 1rem; color: var(--footer-ink); font-size: .82rem; line-height: 1.8; }
.footer-address a { color: #fff; text-decoration: none; }
.footer-links { display: grid; gap: .55rem; }
.footer-links a { color: var(--footer-ink); font-size: .82rem; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem; margin-top: 3rem; padding-top: 1.25rem; border-top: 1px solid rgba(217,213,204,.2); color: #c5baad; font-size: .72rem; }
.footer-bottom a { color: #fff; }

@media (min-width: 600px) {
  .container { width: min(100% - 3rem, var(--max-width)); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(3, 1fr); }
  .triad-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (min-width: 900px) {
  .container { width: min(100% - 4rem, var(--max-width)); }
  .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero__grid { grid-template-columns: minmax(0, .95fr) minmax(0, .75fr); }
  .feature-layout { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); }
  .feature-layout--reverse { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); }
  .feature-layout--reverse .feature-layout__art { order: 2; }
  .audience-grid { grid-template-columns: repeat(3, 1fr); }
  .local-panel { grid-template-columns: 1.05fr .95fr; }
  .local-panel__map { min-height: 100%; }
  .cta-band { grid-template-columns: 1fr auto; }
  .cta-band .btn-row { justify-content: flex-end; }
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
  .not-found__layout { grid-template-columns: minmax(0, .95fr) minmax(0, .75fr); }
  .not-found-links__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1080px) {
  .nav-toggle { display: none; }
  .header-inner { min-height: 82px; }
  .main-nav { display: flex; flex-direction: row; align-items: center; gap: .55rem; padding: 0; border-top: 0; }
  .main-nav a { min-height: 2.5rem; padding: .45rem .6rem; font-size: .78rem; }
  .main-nav a:not(.nav-booking).active { position: relative; }
  .main-nav a:not(.nav-booking).active::after { position: absolute; right: .6rem; bottom: .08rem; left: .6rem; height: 2px; border-radius: 2px; background: var(--gold); content: ""; }
  .main-nav .nav-booking { margin-left: .35rem; padding-inline: 1rem; }
}

@media (max-width: 1079px) {
  .main-nav.open {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    padding: .75rem 1rem 1.25rem;
    border: 1px solid var(--line);
    border-top: 0;
    background: var(--bg);
    box-shadow: 0 1rem 2rem rgba(93, 64, 48, .12);
  }
  .main-nav.open a { padding-inline: .75rem; }
  .main-nav.open a:not(.nav-booking).active { border-radius: 6px; color: var(--accent-strong); background: var(--accent-soft); }
}

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

@media (max-width: 599px) {
  .utility-bar__inner, .intro-strip__inner { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: .55rem; }
  .utility-bar a { white-space: normal; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 1.25rem; }
  .hero h1 { max-width: 12ch; }
  .btn-row > .btn { flex: 1 1 100%; }
  .btn-row > .btn:last-child { margin-top: 0; }
  .local-panel__map-meta { align-items: stretch; flex-direction: column; }
  .map-link { width: 100%; }
  .footer-bottom { flex-direction: column; }
}
