/* =========================================================================
   Raquel Floristeries — floristeriaraquel.com
   Sistema visual alineado con Floradomicilio (rojo corporativo #b11c22,
   rosa suave #f4e9ea, Inter) + Fraunces como serif de acento.
   ========================================================================= */

:root {
  --brand: #b11c22;
  --brand-dark: #8f151a;
  --brand-rgb: 177, 28, 34;
  --brand-subtle: #f4e9ea;
  --brand-light: rgba(177, 28, 34, 0.08);
  --blush: #fbf5f5;
  --ink: #071325;
  --text: #1f2a33;
  --muted: #55606a;
  --line: rgba(2, 6, 23, 0.08);
  --bg1: #f7f9fb;
  --bg2: #ffffff;
  --leaf: #2c5530;

  --font-sans: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: Fraunces, "Iowan Old Style", Georgia, serif;

  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 6px 18px rgba(2, 6, 23, 0.04);
  --shadow: 0 18px 40px rgba(2, 6, 23, 0.08);
  --shadow-brand: 0 14px 30px rgba(var(--brand-rgb), 0.28);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --wrap: 1240px;
  --header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg1), var(--bg2) 600px);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--brand-dark); }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
figure { margin: 0; }
.break { overflow-wrap: anywhere; }
@media (max-width: 420px) { .contact-list .break, .contact-text .break { font-size: .9rem; } }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
@media (max-width: 640px) { .wrap { padding: 0 16px; } }

.skip-link { position: absolute; left: -999px; top: 8px; background: var(--brand); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 1000; }
.skip-link:focus { left: 8px; color: #fff; }
:focus-visible { outline: 3px solid rgba(var(--brand-rgb), .45); outline-offset: 3px; border-radius: 6px; }

/* ------------------------------------------------------------------ type */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 14px;
}
.eyebrow i { font-size: 1rem; }
.display, .display-2 {
  font-family: var(--font-serif); font-weight: 500; letter-spacing: -0.02em; color: var(--ink);
  font-optical-sizing: auto;
}
.display { font-size: clamp(2.5rem, 5.6vw, 4.6rem); line-height: 1.02; }
.display-2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); line-height: 1.08; }
.display em, .display-2 em { font-style: italic; font-weight: 400; color: var(--brand); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--muted); max-width: 54ch; }

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px; border: 1.5px solid transparent;
  font: 600 .95rem/1.2 var(--font-sans); cursor: pointer; white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 15px 26px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { background: var(--brand-dark); color: #fff; box-shadow: 0 18px 36px rgba(var(--brand-rgb), .34); }
.btn-ghost { background: #fff; color: var(--brand); border-color: rgba(var(--brand-rgb), .2); }
.btn-ghost:hover { border-color: var(--brand); background: var(--blush); color: var(--brand); }
.btn-light { background: #fff; color: var(--brand); }
.btn-light:hover { color: var(--brand-dark); box-shadow: 0 12px 26px rgba(0, 0, 0, .18); }
.btn-outline-light { color: #fff; border-color: rgba(255, 255, 255, .55); background: transparent; }
.btn-outline-light:hover { color: #fff; border-color: #fff; background: rgba(255, 255, 255, .1); }

.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: .95rem; }
.link-arrow i { transition: transform .2s var(--ease); }
.link-arrow:hover i { transform: translateX(4px); }

/* ---------------------------------------------------------------- header */
.site-header { position: sticky; top: 0; z-index: 100; }
.topbar { background: var(--brand); color: rgba(255, 255, 255, .92); font-size: .82rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 36px; }
.topbar i { margin-right: 4px; opacity: .85; }
.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: #fff; text-decoration: underline; }

.navbar {
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled .navbar { box-shadow: 0 8px 24px rgba(2, 6, 23, .06); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 24px; }
.brand img { height: 48px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-menu ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-link { position: relative; display: block; padding: 10px 14px; color: var(--muted); font-weight: 500; }
.nav-link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px; border-radius: 2px;
  background: var(--brand); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.nav-link:hover, .nav-link.is-active { color: var(--brand); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }

.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: #fff; border-radius: 12px; cursor: pointer; padding: 0 11px; flex-direction: column; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .topbar-hours { display: none; }
  .nav-toggle { display: flex; }
  .navbar-inner { min-height: 66px; }
  .brand img { height: 40px; }
  .nav-menu {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 12px;
    padding: 12px 16px 20px; background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 30px rgba(2, 6, 23, .08);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .nav-menu.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav-menu ul { flex-direction: column; }
  .nav-link { padding: 14px 8px; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-link::after { display: none; }
}
@media (max-width: 520px) {
  .topbar-inner > span:first-child { display: none; }
  .topbar-inner { justify-content: center; }
}

/* ---------------------------------------------------------------- hero */
.hero { position: relative; padding: clamp(40px, 7vw, 96px) 0 clamp(56px, 8vw, 110px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 60% at 85% 20%, rgba(var(--brand-rgb), .10), transparent 70%),
    radial-gradient(45% 50% at 5% 90%, rgba(244, 233, 234, .9), transparent 70%),
    linear-gradient(180deg, var(--blush), #fff);
}
.hero-petals {
  position: absolute; right: -120px; top: -120px; width: 520px; height: 520px; z-index: -1; opacity: .5;
  background: radial-gradient(circle at 30% 30%, rgba(var(--brand-rgb), .18), transparent 60%);
  border-radius: 58% 42% 55% 45% / 45% 55% 45% 55%;
  filter: blur(10px);
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift { to { transform: translate(-40px, 40px) rotate(20deg); } }

.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-copy .lead { margin: 22px 0 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust { list-style: none; padding: 0; margin: 40px 0 0; display: flex; flex-wrap: wrap; gap: 14px 28px; }
.hero-trust li { display: flex; align-items: center; gap: 12px; font-size: .88rem; color: var(--muted); }
.hero-trust i { width: 42px; height: 42px; flex: none; display: grid; place-items: center; border-radius: 50%; background: #fff; color: var(--brand); font-size: 1.1rem; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.hero-trust strong { display: block; color: var(--ink); font-size: .92rem; }

.hero-media { position: relative; aspect-ratio: 5 / 5.4; }
.hero-img { position: absolute; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); background: var(--brand-subtle); }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-main { inset: 0 18% 8% 0; border-radius: 200px 200px var(--radius-lg) var(--radius-lg); }
.hero-img-main img { object-position: 50% 60%; animation: slowzoom 14s ease-out both; }
@keyframes slowzoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-img-side { width: 42%; aspect-ratio: 3 / 4; right: 0; bottom: 0; border: 6px solid #fff; }
.hero-badge {
  position: absolute; left: -18px; bottom: 18%;
  display: flex; align-items: center; gap: 12px; padding: 12px 18px 12px 12px;
  background: #fff; border-radius: 999px; box-shadow: var(--shadow); font-size: .85rem; color: var(--muted);
  animation: float 5s ease-in-out infinite;
}
.hero-badge strong { display: block; color: var(--ink); font-size: .95rem; }
.hero-badge-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: var(--brand-subtle); color: var(--brand); }
@keyframes float { 50% { transform: translateY(-8px); } }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 560px; width: 100%; margin: 0 auto; }
  .hero-badge { left: 0; }
}

/* ------------------------------------------------------------ occasions */
.occasions { background: var(--ink); color: #fff; overflow: hidden; padding: 18px 0; }
.occasions-track { display: flex; align-items: center; gap: 28px; width: max-content; animation: marquee 38s linear infinite; }
.occasions-track span { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.2rem, 2vw, 1.55rem); white-space: nowrap; }
.occasions-track i { color: #f08f93; font-size: 1.1rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ------------------------------------------------------------- sections */
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section-tight { padding: clamp(32px, 5vw, 56px) 0; }
.section-head { max-width: 680px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin-top: 12px; }
.section-head-row { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 24px; text-align: left; flex-wrap: wrap; }
.section-head-row h2 { margin: 0; }

/* -------------------------------------------------------- specialities */
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.spec-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.spec-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.spec-img { aspect-ratio: 4 / 4.4; overflow: hidden; background: var(--brand-subtle); }
.spec-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.spec-card:hover .spec-img img { transform: scale(1.05); }
.spec-body { position: relative; padding: 28px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.spec-body p { color: var(--muted); font-size: .95rem; flex: 1; }
.spec-body h3 { font-size: 1.3rem; font-weight: 700; }
.spec-num {
  position: absolute; top: -26px; right: 22px; width: 52px; height: 52px; display: grid; place-items: center;
  border-radius: 50%; background: var(--brand); color: #fff; font: 600 1rem var(--font-serif); box-shadow: var(--shadow-brand);
}
@media (max-width: 900px) { .spec-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } .spec-img { aspect-ratio: 16 / 11; } }

/* --------------------------------------------------------------- promos */
.promo-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; }
.promo {
  position: relative; display: flex; align-items: flex-end; min-height: 380px; border-radius: var(--radius-lg);
  overflow: hidden; color: #fff; isolation: isolate; box-shadow: var(--shadow);
}
.promo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s var(--ease); }
.promo::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(7, 19, 37, 0) 25%, rgba(7, 19, 37, .78)); }
.promo-shop::before { background: linear-gradient(200deg, rgba(var(--brand-rgb), .15) 10%, rgba(120, 12, 18, .88)); }
.promo:hover img { transform: scale(1.05); }
.promo:hover { color: #fff; }
.promo-body { padding: 32px; }
.promo-body h3 { color: #fff; font-family: var(--font-serif); font-weight: 500; font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 8px 0; }
.promo-body p { color: rgba(255, 255, 255, .9); max-width: 36ch; }
.promo-tag { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; background: rgba(255, 255, 255, .18); backdrop-filter: blur(6px); }
@media (max-width: 800px) { .promo-grid { grid-template-columns: 1fr; } .promo { min-height: 320px; } }

/* ---------------------------------------------------------------- about */
.about { background: linear-gradient(180deg, #fff, var(--blush)); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4 / 3.3; object-fit: cover; width: 100%; }
.about-stamp {
  position: absolute; right: -28px; bottom: -28px; width: 128px; height: 128px; border-radius: 50%;
  background: var(--brand); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-brand);
}
.about-stamp svg { position: absolute; inset: 4px; width: calc(100% - 8px); height: calc(100% - 8px); animation: spin 22s linear infinite; }
.about-stamp text { fill: #fff; font: 600 9.5px var(--font-sans); letter-spacing: 1.5px; text-transform: uppercase; }
.about-stamp i { font-size: 1.8rem; }
@keyframes spin { to { transform: rotate(360deg); } }
.about-copy p { color: var(--muted); font-size: 1.05rem; }
.check-list { list-style: none; padding: 0; margin: 20px 0 30px; display: grid; gap: 10px; }
.check-list li { display: flex; gap: 10px; align-items: center; color: var(--text); font-weight: 500; }
.check-list i { color: var(--brand); font-size: 1.15rem; }
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-stamp { right: 12px; bottom: -24px; width: 104px; height: 104px; }
}

/* ------------------------------------------------------- gallery teaser */
.teaser-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 240px 240px; gap: 16px; }
.teaser-item { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--brand-subtle); }
.teaser-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.teaser-item:hover img { transform: scale(1.06); }
.teaser-1, .teaser-4 { grid-row: span 2; }
.teaser-5 { grid-column: span 2; }
@media (max-width: 800px) {
  .teaser-grid { grid-template-columns: 1fr 1fr; grid-template-rows: none; grid-auto-rows: 180px; }
  .teaser-1 { grid-row: span 2; }
  .teaser-4 { grid-row: auto; }
  .teaser-5 { grid-column: auto; }
}

/* ---------------------------------------------------------- quote band */
.quote-band, .cta-band {
  position: relative; overflow: hidden; border-radius: var(--radius-lg); color: #fff;
  background:
    radial-gradient(70% 120% at 100% 0%, rgba(255, 255, 255, .14), transparent 60%),
    linear-gradient(135deg, var(--brand), #7d1117);
  box-shadow: var(--shadow-brand);
}
.quote-band { text-align: center; padding: clamp(48px, 7vw, 84px) 24px; }
.quote-mark { font-size: 3.4rem; line-height: 1; opacity: .35; }
.quote-text { font-family: var(--font-serif); font-size: clamp(1.9rem, 4vw, 3.2rem); line-height: 1.1; margin: 4px 0 28px; }
.quote-text em { font-style: italic; font-weight: 400; color: #ffd8da; }
.quote-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cta-band { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: clamp(32px, 5vw, 56px); }
.cta-band h2 { color: #fff; margin: 0 0 6px; }
.cta-band h2 em { color: #ffd8da; }
.cta-band p { margin: 0; color: rgba(255, 255, 255, .85); }

/* -------------------------------------------------------- contact band */
.contact-band { background: var(--blush); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 24px; align-items: stretch; }
.contact-cards { display: grid; gap: 14px; }
.contact-card {
  display: flex; gap: 16px; align-items: flex-start; padding: 22px; background: #fff; border-radius: var(--radius);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); color: var(--text);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s ease;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(var(--brand-rgb), .25); color: var(--text); }
.contact-icon { width: 48px; height: 48px; flex: none; display: grid; place-items: center; border-radius: 14px; background: var(--brand-subtle); color: var(--brand); font-size: 1.25rem; }
.contact-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contact-label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); }
.contact-text strong { font-size: 1.08rem; color: var(--ink); }
.contact-text small { color: var(--muted); font-size: .88rem; }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; min-height: 340px; box-shadow: var(--shadow); border: 6px solid #fff; background: var(--brand-subtle); }
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }
.map-wide iframe { min-height: 420px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------ page hero */
.page-hero {
  position: relative; padding: clamp(72px, 11vw, 140px) 0 clamp(56px, 8vw, 100px); color: #fff; overflow: hidden; isolation: isolate;
  background: var(--ink) var(--hero-img) center / cover no-repeat;
}
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(120, 12, 18, .88), rgba(7, 19, 37, .45)); }
.page-hero .display { color: #fff; margin: 0; }
.page-hero .display em { color: #ffd8da; }
.page-hero .lead { color: rgba(255, 255, 255, .88); margin: 16px 0 0; }
.page-hero-soft { color: var(--text); background: linear-gradient(180deg, var(--blush), #fff); }
.page-hero-soft::before {
  background: radial-gradient(50% 80% at 90% 10%, rgba(var(--brand-rgb), .10), transparent 70%),
              radial-gradient(40% 60% at 0% 100%, rgba(244, 233, 234, .9), transparent 70%);
}
.page-hero-soft .display { color: var(--ink); }
.page-hero-soft .display em { color: var(--brand); }
.page-hero-soft .lead { color: var(--muted); }
.page-hero-compact { padding: clamp(48px, 7vw, 80px) 0 clamp(28px, 4vw, 44px); }
.page-hero-compact .display { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.crumbs { display: flex; align-items: center; gap: 8px; font-size: .85rem; margin-bottom: 18px; color: inherit; opacity: .85; }
.crumbs a { color: inherit; font-weight: 600; }
.crumbs i { font-size: .7rem; }
.page-hero-soft .crumbs a { color: var(--brand); }

/* ------------------------------------------------------------- services */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: calc(-1 * clamp(96px, 12vw, 150px)); position: relative; z-index: 2; }
.service-card {
  background: #fff; border-radius: var(--radius-lg); padding: 34px 30px; border: 1px solid var(--line); box-shadow: var(--shadow);
  display: flex; flex-direction: column; transition: transform .3s var(--ease);
}
.service-card:hover { transform: translateY(-6px); }
.service-card h2 { font-size: 1.3rem; font-weight: 700; margin-top: 22px; }
.service-card p { color: var(--muted); flex: 1; }
.service-icon { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 20px; background: var(--brand); color: #fff; font-size: 1.6rem; box-shadow: var(--shadow-brand); }
@media (max-width: 900px) { .service-grid { grid-template-columns: 1fr; margin-top: calc(-1 * clamp(72px, 10vw, 110px)); } }

.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.feature-media img { width: 100%; aspect-ratio: 4 / 4.2; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.feature-copy p { color: var(--muted); font-size: 1.05rem; }
.feature-reverse .feature-media { order: 2; }
@media (max-width: 900px) { .feature { grid-template-columns: 1fr; } .feature-reverse .feature-media { order: 0; } .feature-media img { aspect-ratio: 16 / 12; } }

/* -------------------------------------------------------------- gallery */
.masonry { columns: 3 300px; column-gap: 18px; }
.masonry-item { position: relative; display: block; margin-bottom: 18px; border-radius: var(--radius); overflow: hidden; break-inside: avoid; background: var(--brand-subtle); box-shadow: var(--shadow-sm); }
.masonry-item img { width: 100%; height: auto; transition: transform .6s var(--ease); }
.masonry-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(120, 12, 18, .5)); opacity: 0; transition: opacity .3s ease; }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item:hover::after { opacity: 1; }
.masonry-zoom { position: absolute; right: 14px; bottom: 14px; z-index: 2; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: var(--brand); opacity: 0; transform: translateY(8px); transition: all .3s var(--ease); }
.masonry-item:hover .masonry-zoom { opacity: 1; transform: none; }

.lightbox { position: fixed; inset: 0; z-index: 500; background: rgba(7, 19, 37, .92); display: flex; align-items: center; justify-content: center; padding: 24px; }
.lightbox[hidden] { display: none; }
.lb-figure { max-width: min(1100px, 100%); max-height: 100%; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.lb-figure img { max-height: calc(100vh - 120px); width: auto; border-radius: var(--radius); box-shadow: 0 30px 60px rgba(0, 0, 0, .4); }
.lb-figure figcaption { color: rgba(255, 255, 255, .85); font-size: .95rem; text-align: center; }
.lb-btn { position: absolute; width: 48px; height: 48px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .12); color: #fff; font-size: 1.3rem; cursor: pointer; display: grid; place-items: center; transition: background .2s ease; }
.lb-btn:hover { background: var(--brand); }
.lb-close { top: 18px; right: 18px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) { .lb-prev, .lb-next { top: auto; bottom: 18px; transform: none; } }

/* -------------------------------------------------------------- contact */
.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
.contact-aside { position: sticky; top: calc(var(--header-h) + 52px); }
.contact-photo { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); margin-bottom: 24px; }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list i { width: 44px; height: 44px; flex: none; display: grid; place-items: center; border-radius: 12px; background: var(--brand-subtle); color: var(--brand); font-size: 1.15rem; }
.contact-list span { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); }
.contact-list a { color: var(--ink); font-weight: 600; }
.contact-list a:hover { color: var(--brand); }
.contact-list div { min-width: 0; color: var(--ink); }

.form-card { background: #fff; border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 44px); border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-card h2 { font-family: var(--font-serif); font-weight: 500; font-size: 2rem; }
.form-intro { color: var(--muted); margin-bottom: 24px; }
.contact-form { display: grid; gap: 18px; }
.field { display: grid; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { font-size: .88rem; font-weight: 600; color: var(--ink); }
.field label span { color: var(--brand); }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; color: var(--ink); background: var(--bg1); border: 1.5px solid transparent; border-radius: 12px; padding: 13px 16px;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; min-height: 140px; }
.field select { appearance: none; cursor: pointer; padding-right: 42px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23b11c22' stroke-width='2'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.field input:hover, .field textarea:hover, .field select:hover { background: #f1f4f7; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; background: #fff; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(var(--brand-rgb), .1); }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: var(--muted); cursor: pointer; }
.check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--brand); flex: none; }
.check a { font-weight: 600; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.alert { display: flex; gap: 10px; align-items: flex-start; padding: 14px 16px; border-radius: 12px; margin-bottom: 20px; font-size: .95rem; }
.alert i { font-size: 1.15rem; margin-top: 1px; }
.alert-ok { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } .contact-aside { position: static; } }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- legal */
.legal-layout { display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: start; }
.legal-nav { position: sticky; top: calc(var(--header-h) + 52px); display: grid; gap: 4px; padding: 10px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.legal-nav a { padding: 10px 14px; border-radius: 10px; color: var(--muted); font-weight: 500; }
.legal-nav a:hover { background: var(--blush); color: var(--brand); }
.legal-nav a[aria-current="page"] { background: var(--brand-subtle); color: var(--brand); font-weight: 700; }
.prose { max-width: 780px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 48px); box-shadow: var(--shadow-sm); color: var(--text); overflow-wrap: anywhere; }
.prose h2 { font-family: var(--font-serif); font-weight: 500; font-size: 1.6rem; margin: 1.8em 0 .6em; }
.prose h3 { font-size: 1.08rem; font-weight: 700; margin: 1.6em 0 .5em; }
.prose > :first-child { margin-top: 0; }
.prose p, .prose li { color: #3a4550; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .4em; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 900px) { .legal-layout { grid-template-columns: 1fr; gap: 20px; } .legal-nav { position: static; display: flex; flex-wrap: wrap; } }

/* ------------------------------------------------------------------ 404 */
.not-found-inner { text-align: center; max-width: 620px; }
.not-found-code { display: block; font-family: var(--font-serif); font-size: clamp(6rem, 18vw, 10rem); line-height: 1; color: var(--brand-subtle); font-weight: 600; }
.not-found p { color: var(--muted); margin-bottom: 28px; }

/* --------------------------------------------------------------- social */
.social-band { background: linear-gradient(180deg, #fff, var(--blush)); overflow: hidden; }
.social-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.social-copy > p { color: var(--muted); font-size: 1.05rem; max-width: 46ch; }
.social-cards { display: grid; gap: 14px; margin: 28px 0 22px; max-width: 460px; }
.social-card {
  display: flex; align-items: center; gap: 16px; padding: 14px 16px 14px 14px; border-radius: 18px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); color: var(--ink);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s ease;
}
.social-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: var(--ink); }
.social-card-icon { width: 52px; height: 52px; flex: none; display: grid; place-items: center; border-radius: 16px; color: #fff; font-size: 1.5rem; }
.social-ig .social-card-icon { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.social-tt .social-card-icon { background: #010101; text-shadow: -2px -1px 0 #25f4ee, 2px 1px 0 #fe2c55; }
.social-ig:hover { border-color: rgba(214, 36, 159, .35); }
.social-tt:hover { border-color: rgba(1, 1, 1, .3); }
.social-card-text { display: flex; flex-direction: column; flex: 1; min-width: 0; line-height: 1.3; }
.social-card-text strong { font-size: 1.05rem; }
.social-card-text small { color: var(--muted); font-size: .9rem; overflow: hidden; text-overflow: ellipsis; }
.social-card-cta { padding: 9px 18px; border-radius: 999px; background: var(--brand); color: #fff; font-weight: 600; font-size: .88rem; transition: background .2s ease; }
.social-card:hover .social-card-cta { background: var(--brand-dark); }
.social-tag { font-size: .92rem; color: var(--muted); margin: 0; }
.social-tag i { color: var(--brand); font-size: 1.05rem; margin-right: 4px; vertical-align: -2px; }
.social-tag strong { color: var(--brand); }

.social-feed { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 1fr); gap: 14px; aspect-ratio: 1 / .92; transform: rotate(-2deg); }
.feed-item { position: relative; display: block; overflow: hidden; border-radius: 18px; background: var(--brand-subtle); box-shadow: var(--shadow-sm); }
.feed-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.feed-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(7, 19, 37, .55)); opacity: 0; transition: opacity .3s ease; }
.feed-item:hover img { transform: scale(1.06); }
.feed-item:hover::after { opacity: 1; }
.feed-reel { grid-row: span 2; border-radius: 22px; box-shadow: var(--shadow); }
.feed-reel::after { opacity: 1; background: linear-gradient(180deg, rgba(7, 19, 37, .05) 40%, rgba(7, 19, 37, .7)); }
.feed-badge { position: absolute; top: 10px; right: 10px; z-index: 2; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: rgba(255, 255, 255, .92); color: var(--ink); font-size: .95rem; }
.feed-play { position: absolute; left: 50%; top: 50%; z-index: 2; transform: translate(-50%, -50%); width: 64px; height: 64px; display: grid; place-items: center; border-radius: 50%; background: rgba(255, 255, 255, .25); backdrop-filter: blur(6px); color: #fff; font-size: 2rem; transition: transform .3s var(--ease), background .3s ease; }
.feed-reel:hover .feed-play { transform: translate(-50%, -50%) scale(1.1); background: var(--brand); }
.feed-caption { position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2; color: #fff; font-weight: 600; font-size: .92rem; line-height: 1.3; }
@media (max-width: 900px) {
  .social-grid { grid-template-columns: 1fr; }
  .social-feed { transform: none; aspect-ratio: auto; grid-template-rows: none; grid-auto-rows: 150px; }
}
@media (max-width: 420px) { .social-card-cta { padding: 8px 14px; } }

.topbar-right { display: inline-flex; align-items: center; gap: 14px; }
.topbar-right a[aria-label] i { margin: 0; font-size: .95rem; }

/* -------------------------------------------------------------- cookies */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 400;
  max-width: 1080px; margin: 0 auto; background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--line); box-shadow: 0 24px 60px rgba(2, 6, 23, .18);
  animation: cookie-in .45s var(--ease) both;
}
.cookie-banner[hidden], .cookie-modal[hidden] { display: none; }
@keyframes cookie-in { from { opacity: 0; transform: translateY(20px); } }
.cookie-banner-inner { display: flex; align-items: center; gap: 24px; padding: 20px 24px; }
.cookie-banner-text { flex: 1; min-width: 0; }
.cookie-banner-text strong { display: flex; align-items: center; gap: 8px; color: var(--ink); font-size: 1.02rem; margin-bottom: 4px; }
.cookie-banner-text strong i { color: var(--brand); }
.cookie-banner-text p { margin: 0; font-size: .9rem; color: var(--muted); }
.cookie-banner-text a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner-actions { display: flex; gap: 10px; flex: none; }
.cookie-banner-actions .btn, .cookie-modal-foot .btn { padding: 11px 18px; font-size: .9rem; }
@media (max-width: 820px) {
  .cookie-banner-inner { flex-direction: column; align-items: stretch; gap: 16px; padding: 18px; }
  .cookie-banner-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-banner-actions [data-cookie-action="accept"] { grid-column: 1 / -1; order: -1; }
}

.cookie-modal { position: fixed; inset: 0; z-index: 450; display: flex; align-items: center; justify-content: center; padding: 16px; background: rgba(7, 19, 37, .55); backdrop-filter: blur(4px); }
.cookie-modal-card { width: 100%; max-width: 560px; max-height: calc(100vh - 32px); overflow-y: auto; background: #fff; border-radius: var(--radius-lg); padding: 28px; box-shadow: 0 30px 70px rgba(0, 0, 0, .25); }
.cookie-modal-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.cookie-modal-head h2 { font-family: var(--font-serif); font-weight: 500; font-size: 1.7rem; margin: 0; }
.cookie-close { width: 40px; height: 40px; border-radius: 50%; border: 0; background: var(--bg1); color: var(--ink); cursor: pointer; display: grid; place-items: center; }
.cookie-close:hover { background: var(--brand-subtle); color: var(--brand); }
.cookie-modal-intro { color: var(--muted); font-size: .92rem; margin: 10px 0 18px; }
.cookie-cat { padding: 16px 0; border-top: 1px solid var(--line); }
.cookie-cat-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.cookie-cat-head strong { color: var(--ink); }
.cookie-cat p { margin: 6px 0 0; color: var(--muted); font-size: .88rem; }
.cookie-pill { display: inline-block; margin-left: 6px; padding: 2px 10px; border-radius: 999px; background: var(--brand-subtle); color: var(--brand); font-size: .72rem; font-weight: 700; }
.cookie-switch { position: relative; display: inline-block; width: 46px; height: 26px; flex: none; }
.cookie-switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.cookie-switch span { position: absolute; inset: 0; border-radius: 999px; background: #d4d8de; cursor: pointer; transition: background .2s ease; }
.cookie-switch span::before { content: ""; position: absolute; left: 3px; top: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, .2); transition: transform .2s var(--ease); }
.cookie-switch input:checked + span { background: var(--brand); }
.cookie-switch input:checked + span::before { transform: translateX(20px); }
.cookie-switch input:disabled + span { opacity: .55; cursor: not-allowed; }
.cookie-switch input:focus-visible + span { outline: 3px solid rgba(var(--brand-rgb), .45); outline-offset: 2px; }
.cookie-modal-foot { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; padding-top: 18px; border-top: 1px solid var(--line); }
@media (max-width: 520px) { .cookie-modal-foot { display: grid; } .cookie-modal-card { padding: 22px; } }

.map-placeholder { height: 100%; min-height: 328px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 28px; text-align: center;
  background:
    radial-gradient(circle at 20% 30%, rgba(var(--brand-rgb), .06) 0 2px, transparent 3px) 0 0 / 28px 28px,
    linear-gradient(135deg, var(--blush), var(--brand-subtle)); }
.map-wide .map-placeholder { min-height: 408px; }
.map-placeholder strong { color: var(--ink); font-size: 1.05rem; }
.map-placeholder p { margin: 0 0 8px; color: var(--muted); font-size: .88rem; max-width: 38ch; }
.map-pin { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 50%; background: var(--brand); color: #fff; font-size: 1.6rem; box-shadow: var(--shadow-brand); margin-bottom: 6px; }
.map-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }

.table-wrap { overflow-x: auto; margin: 1em 0 1.4em; }
.prose table { width: 100%; border-collapse: collapse; font-size: .9rem; min-width: 520px; }
.prose th, .prose td { text-align: left; vertical-align: top; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.prose th { background: var(--blush); color: var(--ink); font-weight: 700; }
.prose code { background: var(--bg1); padding: 2px 6px; border-radius: 6px; font-size: .85em; }

/* --------------------------------------------------------------- footer */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, .7); padding: 72px 0 28px; font-size: .95rem; }
.site-footer a { color: rgba(255, 255, 255, .78); }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr 1.7fr .8fr; gap: 40px; }
.footer-brand img { height: 52px; width: auto; background: #fff; padding: 8px 14px; border-radius: 12px; margin-bottom: 20px; }
.footer-tagline { font-family: var(--font-serif); font-style: italic; font-size: 1.35rem; color: #fff; margin-bottom: 10px; }
.footer-brand p:not(.footer-tagline) { max-width: 36ch; }
.social { display: flex; gap: 10px; margin-top: 20px; }
.social a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(255, 255, 255, .08); font-size: 1.1rem; transition: background .2s ease, transform .2s var(--ease); }
.social a:hover { background: var(--brand); transform: translateY(-3px); }
.footer-col h4 { color: #fff; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact i { color: #f08f93; margin-top: 2px; }
.footer-contact a, .footer-contact span { overflow-wrap: anywhere; font-size: .92rem; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .85rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------- call button */
.fab-call { display: none; }
@media (max-width: 760px) {
  .fab-call {
    position: fixed; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); z-index: 90;
    width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%;
    background: var(--brand); color: #fff; font-size: 1.35rem; box-shadow: var(--shadow-brand);
  }
  .fab-call:hover { color: #fff; }
}

/* --------------------------------------------------------------- reveal */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

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