/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  padding-top: calc(var(--nav-h) + var(--space-l));
  padding-bottom: var(--space-xl);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(60% 55% at 82% 18%, oklch(0.95 0.03 18 / 0.55), transparent 62%),
    radial-gradient(50% 45% at 10% 78%, oklch(0.96 0.024 25 / 0.45), transparent 65%),
    linear-gradient(180deg, var(--bg), var(--cream));
}
/* transição suave hero → ticker */
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, var(--surface));
  pointer-events: none;
}
.hero__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  color: var(--gold);
  opacity: 0.35;
  z-index: 0;
}
.hero__flower {
  position: absolute;
  width: 180px;
  height: 180px;
}
.hero__flower--tl { top: 8%; left: -30px; transform: rotate(-15deg); }
.hero__flower--br { bottom: 8%; right: -20px; transform: rotate(200deg); }
@media (min-width: 900px) {
  .hero__flower { width: 260px; height: 260px; }
  .hero__flower--tl { top: 12%; left: 2%; }
  .hero__flower--br { bottom: 8%; right: 3%; }
}
.hero__grid {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
    gap: var(--space-2xl);
  }
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-m);
}
.hero__eyebrow { color: var(--gold-deep); }
.hero__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 3.2rem + 3.6vw, 6.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-deep);
  position: relative;
  padding-inline-end: 0.05em;
}
.hero__title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0.05em; bottom: -0.08em;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-hi), transparent);
  border-radius: 999px;
  opacity: 0.7;
}
.hero__sub {
  font-size: var(--step-1);
  color: var(--ink-2);
  max-width: 52ch;
  line-height: 1.55;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s);
}
.hero__meta {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.6rem;
  padding-top: var(--space-s);
  border-top: 1px solid var(--line-2);
  width: 100%;
  margin-top: var(--space-xs);
}
.hero__meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.86rem;
  color: var(--ink-2);
  font-weight: 500;
}
.hero__meta-icon { color: var(--gold); font-size: 0.9rem; }

/* hero media */
.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 520px;
  justify-self: center;
  width: 100%;
}
@media (min-width: 900px) {
  .hero__media { max-width: none; aspect-ratio: 5 / 6; justify-self: end; }
}
.hero__media-frame {
  position: relative;
  height: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--surface-2);
  box-shadow: var(--shadow-satin);
  isolation: isolate;
  contain: paint;
  clip-path: inset(0 round var(--r-xl));
}
.hero__media-frame img {
  width: 100%;
  height: 106%;
  object-fit: cover;
  object-position: center top;
  transform-origin: center top;
  transition: transform 800ms var(--ease-out);
  filter: saturate(1.02) contrast(1.03);
  will-change: transform;
}
.hero__frame-arc {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 55%, oklch(0.38 0.06 15 / 0.35));
  z-index: 1;
}
.hero__badge {
  position: absolute;
  bottom: var(--space-s);
  left: var(--space-s);
  right: var(--space-s);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.05rem 0.7rem 0.55rem;
  background: color-mix(in oklch, var(--bg) 82%, transparent);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  backdrop-filter: blur(14px) saturate(1.3);
  border-radius: var(--r-round);
  border: 1px solid oklch(1 0 0 / 0.4);
  box-shadow: var(--shadow-lift);
  max-width: max-content;
  margin-inline: auto;
}
.hero__badge-mark {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  background: var(--surface);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.hero__badge-mark img { width: 100%; height: 100%; object-fit: contain; padding: 3px; }
.hero__badge div { display: flex; flex-direction: column; line-height: 1.1; }
.hero__badge-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.hero__badge-value {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink);
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  z-index: 2;
}
.hero__scroll-label {
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -100%; left: -1px;
  width: 3px; height: 40%;
  background: var(--gold);
  animation: scroll-drop 2.4s var(--ease-in-out) infinite;
}
@keyframes scroll-drop {
  0%   { top: -50%; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
@media (min-width: 900px) and (min-height: 700px) {
  .hero__scroll { display: inline-flex; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll-line::after { animation: none; opacity: 0.5; top: 30%; }
}

/* ============ CURADORIA ============ */
.curadoria__grid {
  display: grid;
  gap: var(--space-m);
  grid-template-columns: 1fr;
  grid-template-areas:
    "tall"
    "wide"
    "small"
    "dark";
}
@media (min-width: 720px) {
  .curadoria__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "tall wide"
      "tall small"
      "tall dark";
  }
}
@media (min-width: 1000px) {
  .curadoria__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-areas:
      "tall wide wide"
      "tall small dark";
    grid-auto-rows: minmax(180px, auto);
  }
}
.cat--tall  { grid-area: tall; }
.cat--wide  { grid-area: wide; }
.cat--small { grid-area: small; }
.cat--dark  { grid-area: dark; }

.cat {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: var(--space-m);
  border-radius: var(--r-l);
  background: var(--bg);
  border: 1px solid var(--line-2);
  overflow: hidden;
  color: var(--ink);
  transition:
    transform var(--dur-med) var(--ease-out),
    border-color var(--dur-med) var(--ease-out),
    box-shadow var(--dur-med) var(--ease-out);
}
.cat:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lift);
}
.cat__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: auto;
}
.cat__num {
  font-size: 0.78rem;
  color: var(--gold-deep);
  letter-spacing: -0.02em;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.cat__title {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--ink);
  line-height: 1.05;
}
.cat__desc {
  color: var(--ink-2);
  font-size: 0.95rem;
  max-width: 40ch;
}
.cat__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  border-top: 1px solid var(--line-2);
  padding-top: 0.8rem;
  transition: color var(--dur-fast);
}
.cat:hover .cat__cta { color: var(--gold-deep); }
.cat:hover .cat__cta .arrow { transform: translateX(4px); }

/* tall — dominado por foto */
.cat--tall {
  padding: 0;
  min-height: 460px;
}
.cat--tall .cat__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cat--tall .cat__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 900ms var(--ease-out);
}
.cat--tall:hover .cat__media img { transform: scale(1.03); }
.cat--tall::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, oklch(0.30 0.06 15 / 0.75));
  z-index: 1;
}
.cat--tall .cat__body {
  padding: var(--space-m);
  color: oklch(0.99 0.01 60);
}
.cat--tall .cat__title,
.cat--tall .cat__desc,
.cat--tall .cat__cta { color: oklch(0.99 0.01 60); }
.cat--tall .cat__num { color: oklch(0.9 0.06 60); }
.cat--tall .cat__cta { border-top-color: oklch(1 0 0 / 0.35); }
@media (min-width: 1000px) {
  .cat--tall { min-height: 100%; }
}

/* wide — presentes, com decoração */
.cat--wide {
  background:
    radial-gradient(circle at 100% 0%, oklch(0.94 0.05 15 / 0.9), transparent 50%),
    var(--surface);
  min-height: 260px;
}
.cat__deco {
  position: absolute;
  top: var(--space-s);
  right: var(--space-s);
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 0.4rem;
  color: var(--rose);
  z-index: 1;
  pointer-events: none;
}
.cat__deco-flower { width: 56px; height: 56px; }
.cat__deco-word {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--ink-2);
  max-width: 130px;
  text-align: right;
  line-height: 1.2;
}
/* No mobile o card fica estreito — mantemos só a flor pequena,
   o texto decorativo colidia com o corpo do card. */
@media (max-width: 720px) {
  .cat__deco { top: 0.7rem; right: 0.7rem; }
  .cat__deco-flower { width: 44px; height: 44px; }
  .cat__deco-word { display: none; }
  .cat--wide .cat__body { padding-right: 3rem; }
}

/* dark — novidades */
.cat--dark {
  background: linear-gradient(160deg, oklch(0.28 0.06 20), oklch(0.19 0.04 15));
  color: oklch(0.98 0.01 60);
  border-color: transparent;
}
.cat--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 10%, oklch(0.70 0.11 70 / 0.35), transparent 55%);
  z-index: 0;
}
.cat--dark .cat__num { color: var(--gold-hi); }
.cat--dark .cat__title,
.cat--dark .cat__desc,
.cat--dark .cat__cta { color: oklch(0.98 0.01 60); }
.cat--dark .cat__desc { color: oklch(0.85 0.02 60); }
.cat--dark .cat__cta { border-top-color: oklch(1 0 0 / 0.15); }

/* ============ CURADORIA (contexto) ============ */
#curadoria {
  background: var(--surface);
  position: relative;
}
#curadoria::before,
#curadoria::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  pointer-events: none;
}
#curadoria::before { top: 0; background: linear-gradient(180deg, var(--cream), transparent); }
#curadoria::after  { bottom: 0; background: linear-gradient(180deg, transparent, var(--bg)); }

/* ============ EDITORIAL ============ */
.editorial {
  background: var(--bg);
  position: relative;
}
.editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(600px 400px at 15% 40%, oklch(0.94 0.036 18 / 0.4), transparent 65%),
    radial-gradient(500px 350px at 88% 65%, oklch(0.96 0.025 25 / 0.35), transparent 65%);
}
.editorial > * { position: relative; }
.editorial__grid {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}
@media (min-width: 900px) {
  .editorial__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: var(--space-2xl);
  }
}
.editorial__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-satin);
  max-width: 520px;
  justify-self: center;
  width: 100%;
}
.editorial__media img {
  width: 100%; height: 108%;
  object-fit: cover;
  object-position: center 15%;
  transform-origin: center top;
  filter: saturate(1.04);
}
.editorial__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
}
.editorial__body h2 em { font-style: italic; color: var(--gold-deep); }
.editorial__quote {
  position: relative;
  padding: var(--space-m);
  padding-left: calc(var(--space-m) + 20px);
  background: var(--bg);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-m);
  font-family: var(--f-display);
  font-style: italic;
  font-size: var(--step-1);
  color: var(--ink);
  line-height: 1.4;
  max-width: 52ch;
  box-shadow: var(--shadow-hair);
}
.editorial__quote em { color: var(--gold-deep); }
.editorial__quote-mark {
  position: absolute;
  top: -10px; left: 12px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}

/* ============ EXPERIÊNCIA ============ */
.experiencia__grid {
  display: grid;
  gap: var(--space-m);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}
.pillar {
  padding: var(--space-l) var(--space-m);
  background: var(--bg);
  border-radius: var(--r-l);
  border: 1px solid var(--line-2);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition:
    transform var(--dur-med) var(--ease-out),
    border-color var(--dur-med) var(--ease-out),
    box-shadow var(--dur-med) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 60%; height: 4px;
  background: linear-gradient(90deg, var(--gold-hi), transparent);
  opacity: 0.7;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lift);
}
.pillar__icon {
  width: 46px; height: 46px;
  color: var(--gold-deep);
  margin-bottom: 0.2rem;
}
.pillar__icon svg { width: 100%; height: 100%; }
.pillar__num {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}
.pillar__title {
  font-family: var(--f-display);
  font-size: 1.4rem;
  line-height: 1.15;
  color: var(--ink);
}
.pillar__body {
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ============ EXPERIÊNCIA ============ */
.experiencia {
  background: var(--cream);
  position: relative;
}
.experiencia::before,
.experiencia::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  pointer-events: none;
}
.experiencia::before { top: 0; background: linear-gradient(180deg, var(--bg), transparent); }
.experiencia::after  { bottom: 0; background: linear-gradient(180deg, transparent, var(--surface-2)); }

/* ============ SOBRE ============ */
.sobre {
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}
.sobre::before {
  /* subtle floral silhouette top-right */
  content: "";
  position: absolute;
  top: -60px; right: -80px;
  width: 340px; height: 340px;
  background:
    radial-gradient(circle at 30% 30%, oklch(0.95 0.025 20 / 0.7), transparent 65%);
  pointer-events: none;
  filter: blur(20px);
}
.sobre__grid {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}
@media (min-width: 900px) {
  .sobre__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: var(--space-2xl);
  }
}
.sobre__media {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 460px;
  width: 100%;
  justify-self: center;
}
.sobre__media-frame {
  position: relative;
  height: 100%;
  border-radius: 100% 100% 12px 12px / 60% 60% 12px 12px;
  overflow: hidden;
  box-shadow: var(--shadow-satin);
  background: var(--surface);
}
.sobre__media-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 12%;
}
.sobre__stamp {
  position: absolute;
  right: -12px;
  bottom: 24px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: var(--gold-deep);
  color: var(--bg);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 12px;
  box-shadow: var(--shadow-lift);
  transform: rotate(-8deg);
  border: 1px solid oklch(1 0 0 / 0.2);
}
.sobre__stamp-inner {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.15;
}
.sobre__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
}
.sobre__body h2 em { font-style: italic; color: var(--gold-deep); }
.sobre__signature {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: var(--space-xs);
  padding-top: var(--space-m);
  border-top: 1px solid var(--line-2);
}
.sobre__signature-name {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--ink);
  line-height: 1;
}
.sobre__signature-link {
  font-size: 0.86rem;
  color: var(--gold-deep);
  font-weight: 600;
  transition: color var(--dur-fast);
}
.sobre__signature-link:hover { color: var(--rose); }

/* ============ LOJA ============ */
.loja {
  background: var(--bg);
  position: relative;
}
.loja::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(700px 400px at 82% 15%, oklch(0.94 0.03 20 / 0.35), transparent 65%);
}
.loja > * { position: relative; }
.loja__grid {
  display: grid;
  gap: var(--space-m);
}
@media (min-width: 900px) {
  .loja__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-l);
  }
}
.loja__card {
  padding: var(--space-l);
  background: var(--bg);
  border-radius: var(--r-l);
  border: 1px solid var(--line-2);
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
  box-shadow: var(--shadow-hair);
}
.loja__row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-bottom: var(--space-s);
  border-bottom: 1px solid var(--line-2);
}
.loja__row:last-child { border-bottom: 0; padding-bottom: 0; }
.loja__row-label {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
}
.loja__row-value {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.5;
}
.loja__row-value--muted { color: var(--ink-2); font-size: 0.95rem; }
.loja__row-tag { color: var(--muted); margin-inline: 0.4rem; }
.loja__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.4rem;
}

/* mapa real (Google Maps embed) */
.loja__map {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.loja__map-frame {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--r-l);
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-satin);
}
.loja__map-iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: saturate(0.9) contrast(1.02);
}
/* Tag flutuante — nossa marca sobre o mapa */
.loja__map-tag {
  position: absolute;
  left: var(--space-s);
  bottom: var(--space-s);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0.95rem 0.6rem 0.6rem;
  background: color-mix(in oklch, var(--bg) 92%, transparent);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  backdrop-filter: blur(12px) saturate(1.3);
  border: 1px solid oklch(1 0 0 / 0.5);
  border-radius: var(--r-round);
  box-shadow: var(--shadow-lift);
  max-width: calc(100% - var(--space-s) * 2);
}
.loja__map-tag-mark {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold-deep);
  box-shadow:
    0 0 0 4px oklch(0.70 0.11 70 / 0.28),
    0 0 0 9px oklch(0.70 0.11 70 / 0.14);
  flex-shrink: 0;
}
.loja__map-tag div { display: flex; flex-direction: column; line-height: 1.15; }
.loja__map-tag-label {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink);
}
.loja__map-tag-address {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.loja__map-caption {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  padding-inline: 0.3rem;
  font-family: var(--f-body);
  font-style: normal;
}

/* ============ INSTAGRAM ============ */
.insta {
  background: var(--cream);
  position: relative;
}
.insta::before,
.insta::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  pointer-events: none;
}
.insta::before { top: 0; background: linear-gradient(180deg, var(--bg), transparent); }
.insta::after  { bottom: 0; background: linear-gradient(180deg, transparent, var(--surface-deep)); opacity: 0.3; }
.insta > * { position: relative; z-index: 1; }
.insta__head {
  display: flex;
  gap: var(--space-m);
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: var(--space-l);
}
.insta__head h2 em { font-style: italic; color: var(--gold-deep); }
.insta__grid {
  display: grid;
  gap: var(--space-s);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) {
  .insta__grid { grid-template-columns: repeat(4, 1fr); }
}
.insta__card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-m);
  overflow: hidden;
  background: var(--surface-2);
  display: block;
  color: oklch(0.99 0.01 60);
  isolation: isolate;
}
.insta__card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-out);
}
.insta__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, oklch(0.28 0.05 15 / 0.72));
  z-index: 1;
}
.insta__card:hover img { transform: scale(1.06); }
.insta__caption {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.75rem;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.92rem;
  z-index: 2;
  color: oklch(0.99 0.01 60);
  line-height: 1.25;
}

/* ============ CTA FINAL ============ */
.cta-final {
  background:
    radial-gradient(1200px 700px at 50% 20%, oklch(0.55 0.12 15 / 0.65), transparent 60%),
    linear-gradient(160deg, oklch(0.42 0.088 15) 0%, oklch(0.32 0.07 12) 100%);
  color: var(--on-deep);
  position: relative;
  overflow: hidden;
  padding-block: calc(var(--space-2xl) * 1.1);
}
.cta-final__deco {
  position: absolute;
  inset: 0;
  color: oklch(0.85 0.09 60);
  opacity: 0.32;
  pointer-events: none;
}
.cta-final__branch {
  position: absolute;
  width: 480px;
  height: 480px;
  bottom: -80px;
  left: -100px;
}
.cta-final__branch--right {
  left: auto;
  right: -100px;
  top: -80px;
  bottom: auto;
  transform: scaleY(-1);
}
.cta-final__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-m);
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.cta-final__inner h2 {
  color: var(--on-deep);
  font-size: clamp(2.4rem, 3rem + 3vw, 5.2rem);
  line-height: 1;
}
.cta-final__inner h2 em {
  font-style: italic;
  color: oklch(0.88 0.11 78);
  font-weight: 500;
}
.cta-final__inner p {
  color: oklch(0.92 0.02 30);
  font-size: var(--step-1);
  max-width: 52ch;
}
.cta-final__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-m);
  align-items: center;
  justify-content: center;
  margin-top: var(--space-s);
}
.cta-final__insta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: oklch(0.90 0.06 60);
  font-weight: 600;
  padding-block: 0.6rem;
  border-bottom: 1px solid oklch(0.85 0.09 60 / 0.4);
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.cta-final__insta:hover { color: oklch(0.95 0.08 78); border-bottom-color: currentColor; }
.cta-final__insta-icon { font-size: 1rem; }
.cta-final__note {
  color: oklch(0.75 0.02 30);
  font-size: 0.86rem;
  margin-top: var(--space-s);
  padding-top: var(--space-m);
  border-top: 1px solid oklch(1 0 0 / 0.12);
  width: 100%;
}

/* ============ FOOTER ============ */
.footer {
  padding-block: var(--space-xl) var(--space-l);
  background: var(--bg);
  border-top: 1px solid var(--line-2);
}
.footer__inner {
  display: grid;
  gap: var(--space-l);
  grid-template-columns: 1fr;
  padding-bottom: var(--space-l);
  border-bottom: 1px solid var(--line-2);
}
@media (min-width: 720px) {
  .footer__inner { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
}
.footer__brand img { width: 76px; height: 76px; }
.footer__tag {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--ink-2);
  font-size: 1rem;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__col a {
  color: var(--ink-2);
  font-size: 0.9rem;
  transition: color var(--dur-fast);
}
.footer__col a:hover { color: var(--gold-deep); }
.footer__title {
  font-family: var(--f-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.footer__col--address p {
  color: var(--ink-2);
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer__foot {
  padding-top: var(--space-m);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s) var(--space-m);
  font-size: 0.8rem;
  color: var(--muted);
  justify-content: space-between;
  align-items: baseline;
}
.footer__foot-note {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--ink-3);
  max-width: 44ch;
}

/* space for sticky CTA on mobile */
@media (max-width: 899px) {
  .footer { padding-bottom: calc(var(--space-l) + 80px); }
}
