:root {
  --oat:      #E7DAC2;
  --oat-deep: #D9C8A9;
  --sand:     #CFBA95;
  --cream:    #F3EAD7;
  --espresso: #211510;
  --coffee:   #3A2817;
  --cocoa:    #533B24;
  --mocha:    #8A6C48;
  --caramel:  #9A6531;
  --caramel-l:#C08A46;
  --blush:    #C9A56E;
  --blush-l:  #DBB87E;
  --line:     #CBB78F;
  --line-soft:#D9C8A9;

  --serif: "DM Serif Display", Georgia, "Times New Roman", serif;
  --sans:  "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1180px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --ease: cubic-bezier(.22,1,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--oat);
  color: var(--espresso);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
  margin: 0;
  letter-spacing: -0.01em;
}
p { margin: 0; }
a { color: inherit; }
img { max-width: 100%; display: block; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
}

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--caramel);
  display: inline-block;
}

/* ============ CURSOR ============ */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity .4s ease;
}
.cursor-dot {
  width: 7px; height: 7px;
  background: var(--caramel);
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 1px solid var(--caramel);
  transform: translate(-50%, -50%);
  transition: opacity .4s ease, width .35s var(--ease), height .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}
.cursor-ring.hot {
  width: 64px; height: 64px;
  background: color-mix(in srgb, var(--blush) 35%, transparent);
  border-color: transparent;
}
body.has-cursor { cursor: none; }
body.has-cursor a, body.has-cursor button { cursor: none; }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ============ SCROLL PROGRESS ============ */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--caramel), var(--blush));
  z-index: 200;
}

/* ============ GRAIN ============ */
.grain {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  opacity: .04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ PRELOADER ============ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--oat);
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 1.2rem;
  transition: transform 1s var(--ease);
}
.preloader.done { transform: translateY(-100%); }
.preloader svg { width: 84px; height: 84px; }
.preloader .pl-ring, .preloader .pl-mono {
  stroke: var(--caramel);
  fill: none;
  stroke-width: 1;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: draw 1.6s var(--ease) forwards;
}
.preloader .pl-mono { stroke: var(--espresso); animation-delay: .35s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.preloader .pl-word {
  font-family: var(--serif);
  font-size: 0.8rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--mocha);
  opacity: 0;
  animation: plfade .8s ease 1.1s forwards;
}
@keyframes plfade { to { opacity: 1; } }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 0.95em 1.7em;
  border-radius: 999px;
  border: 1px solid var(--espresso);
  position: relative;
  overflow: hidden;
  transition: color .4s var(--ease), transform .3s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  will-change: transform;
}
.btn > * { position: relative; z-index: 1; }
.btn--solid { background: var(--espresso); color: var(--oat); }
.btn--solid::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(120deg, var(--cocoa), var(--caramel));
  transform: translateY(101%);
  transition: transform .5s var(--ease);
}
.btn--solid:hover { border-color: var(--caramel); box-shadow: 0 16px 34px -16px rgba(42,32,25,.75); }
.btn--solid:hover::before { transform: translateY(0); }
.btn--light { background: var(--oat); color: var(--espresso); border-color: var(--oat); }
.btn--light::before { background: linear-gradient(120deg, var(--blush), var(--caramel-l)); }
.btn--light:hover { color: var(--espresso); border-color: var(--caramel-l); box-shadow: 0 12px 26px -14px rgba(0,0,0,.55); }
.btn--ghost { background: transparent; color: var(--espresso); }
.btn--ghost::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: var(--espresso);
  transform: translateY(101%);
  transition: transform .5s var(--ease);
}
.btn--ghost:hover { color: var(--oat); border-color: var(--espresso); }
.btn--ghost:hover::before { transform: translateY(0); }
.btn svg { width: 1.15em; height: 1.15em; }

:focus-visible { outline: 2px solid var(--caramel); outline-offset: 3px; border-radius: 4px; }

/* ============ Header ============ */
header {
  position: sticky; top: 0; z-index: 120;
  background: color-mix(in srgb, var(--espresso) 90%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in srgb, var(--caramel) 26%, transparent);
  transition: border-color .4s ease, background .4s ease;
}
header.scrolled { background: var(--espresso); border-color: color-mix(in srgb, var(--caramel) 45%, transparent); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 1.05rem; }
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--espresso); }
header .brand { color: var(--oat); }
header .monogram circle { stroke: var(--caramel-l); }
header .monogram text { fill: var(--oat); }
.brand .monogram { width: 40px; height: 40px; flex: none; }
.brand .wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand .wordmark b { font-family: var(--serif); font-weight: 400; font-size: 1.18rem; letter-spacing: 0.02em; }
.brand .wordmark span { font-size: 0.6rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--mocha); margin-top: 3px; }
header .brand .wordmark span { color: var(--blush); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; font-size: 0.9rem; letter-spacing: 0.03em; color: var(--oat-deep); position: relative; padding-block: 4px; transition: color .3s ease; }
.nav-links a:hover { color: var(--oat); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--caramel-l); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 1.25rem; }
@media (max-width: 860px) { .nav-links { display: none; } }

/* ============ Hero ============ */
.hero { position: relative; padding-top: clamp(3rem, 8vw, 6rem); padding-bottom: clamp(3rem, 7vw, 5rem); overflow: hidden; }
.gel-field { position: absolute; inset: -14% -8%; z-index: 0; filter: blur(66px); opacity: .78; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; will-change: transform; }
.blob.b1 { width: 40vw; height: 40vw; right: -2%; top: -10%; background: radial-gradient(circle at 50% 50%, var(--caramel-l), transparent 64%); opacity: .58; }
.blob.b2 { width: 30vw; height: 30vw; right: 14%; top: 26%; background: radial-gradient(circle at 50% 50%, var(--blush), transparent 66%); opacity: .5; }
.blob.b3 { width: 26vw; height: 26vw; right: 30%; top: 6%; background: radial-gradient(circle at 50% 50%, var(--sand), transparent 68%); opacity: .42; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero h1 { font-size: clamp(2.3rem, 7vw, 5.2rem); font-weight: 300; margin-top: 1.4rem; }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: inline-block; transform: translateY(110%); }
.hero h1 em {
  font-style: italic;
  background: linear-gradient(100deg, var(--caramel) 0%, var(--blush-l) 45%, var(--caramel) 60%, var(--caramel) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: sheen 5.5s ease-in-out 2s infinite;
}
@keyframes sheen { 0%,100% { background-position: 0% 0; } 50% { background-position: 120% 0; } }
.hero .lead { max-width: 40ch; margin-top: 1.6rem; color: var(--cocoa); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.hero-meta { display: flex; flex-wrap: nowrap; justify-content: center; text-align: center; gap: 1rem 1.4rem; margin-top: 2.8rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.hero-meta div { display: flex; flex-direction: column; align-items: center; }
.hero-meta b { font-family: var(--serif); font-weight: 500; font-size: 1.2rem; color: var(--espresso); white-space: nowrap; }
.hero-meta span { font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mocha); margin-top: 2px; white-space: nowrap; }
.hero-portrait { position: relative; aspect-ratio: 4 / 5; border-radius: 220px 220px 18px 18px; overflow: hidden; box-shadow: 0 40px 80px -40px rgba(42,32,25,.5); }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-portrait { max-width: 420px; margin-inline: auto; border-radius: 180px 180px 16px 16px; }
}

/* Hero reveal orchestration */
.anim-up { opacity: 0; transform: translateY(26px); }
.ready .hero .anim-up { animation: heroUp .9s var(--ease) forwards; }
.ready .hero .anim-up.d1 { animation-delay: .05s; }
.ready .hero .anim-up.d2 { animation-delay: .15s; }
.ready .hero .anim-up.d3 { animation-delay: .25s; }
.ready .hero .anim-up.d4 { animation-delay: .35s; }
@keyframes heroUp { to { opacity: 1; transform: none; } }
.ready .hero h1 .line > span { animation: lineUp 1s var(--ease) forwards; }
.ready .hero h1 .line:nth-child(1) > span { animation-delay: .15s; }
.ready .hero h1 .line:nth-child(2) > span { animation-delay: .30s; }
@keyframes lineUp { to { transform: none; } }

/* ============ Image placeholders ============ */
.ph { position: relative; width: 100%; height: 100%; background: radial-gradient(120% 90% at 30% 15%, var(--cream) 0%, var(--oat-deep) 55%, var(--sand) 100%); display: grid; place-content: center; text-align: center; color: var(--mocha); border: 1px solid var(--line-soft); overflow: hidden; }
.ph::before { content: ""; position: absolute; inset: 10px; border: 1px solid color-mix(in srgb, var(--caramel) 40%, transparent); border-radius: inherit; pointer-events: none; }
.ph::after { content: ""; position: absolute; top: -60%; left: -30%; width: 40%; height: 220%; background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent); transform: rotate(18deg); animation: gloss 6s ease-in-out infinite; }
@keyframes gloss { 0% { left: -40%; } 55%,100% { left: 130%; } }
.ph .ph-in { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 0.55rem; padding: 1rem; }
.ph .ph-in svg { width: 30px; height: 30px; opacity: .6; }
.ph .ph-in span { font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; }
.ph .ph-in small { font-size: 0.72rem; letter-spacing: 0.03em; text-transform: none; color: var(--mocha); max-width: 22ch; line-height: 1.4; }
/* Foto real preenchendo o placeholder */
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; display: block; }
.ph.has-photo { background: var(--espresso); }
.ph.has-photo::after { display: none; }

/* ============ Section shell ============ */
section { padding-block: clamp(3.5rem, 8vw, 6.5rem); position: relative; }
.section-head { max-width: 46ch; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); font-weight: 300; margin-top: 0.9rem; }
.section-head p { margin-top: 1rem; color: var(--cocoa); }
.band { background: var(--cream); border-block: 1px solid var(--line-soft); }
.band-deep { background: var(--espresso); color: var(--oat); }
.band-deep .eyebrow { color: var(--blush); }
.band-deep h2, .band-deep h3 { color: var(--oat); }

/* ============ Marquee ============ */
.marquee { overflow: hidden; border-block: 1px solid var(--coffee); background: var(--espresso); padding-block: 1.2rem; }
.marquee-track { display: flex; gap: 3rem; width: max-content; animation: marq 26s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--oat-deep); display: inline-flex; align-items: center; gap: 3rem; white-space: nowrap; }
.marquee span::after { content: "✦"; font-style: normal; color: var(--caramel-l); font-size: 0.9rem; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ============ Sobre ============ */
.sobre-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.sobre-portrait { aspect-ratio: 5 / 6; border-radius: 16px; overflow: hidden; }
.sobre-body h2 { font-size: clamp(2rem, 4.2vw, 3rem); font-weight: 300; margin-top: 0.9rem; }
.sobre-body p { margin-top: 1.2rem; color: var(--cocoa); max-width: 52ch; }
.diffs { list-style: none; margin: 2.2rem 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.8rem; }
.diffs li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.98rem; color: var(--espresso); }
.diffs li svg { width: 18px; height: 18px; flex: none; margin-top: 4px; color: var(--caramel); }
@media (max-width: 780px) { .sobre-grid { grid-template-columns: 1fr; } .sobre-portrait { max-width: 360px; } .diffs { grid-template-columns: 1fr; } }

/* ============ Serviços ============ */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.service { position: relative; background: var(--oat); border: 1px solid var(--line); border-radius: 16px; padding: 2rem 1.8rem 1.9rem; display: flex; flex-direction: column; min-height: 260px; overflow: hidden; transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease); }
.band .service { background: var(--cream); }
.service::after { content: ""; position: absolute; top: 0; left: -75%; width: 50%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,.6), transparent); transform: skewX(-18deg); transition: left .8s var(--ease); }
.service:hover { transform: translateY(-6px); border-color: var(--caramel); box-shadow: 0 26px 50px -28px rgba(42,32,25,.6); }
.service:hover::after { left: 130%; }
.service .s-num { font-family: var(--serif); font-style: italic; font-size: 0.95rem; color: var(--caramel); }
.service h3 { font-size: 1.5rem; font-weight: 400; margin-top: 0.9rem; }
.service .s-dur { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mocha); margin-top: 0.5rem; }
.service .s-desc { color: var(--cocoa); font-size: 0.95rem; margin-top: 1rem; }
.service .s-price { font-family: var(--serif); font-size: 2.2rem; font-weight: 400; margin-top: auto; padding-top: 1.4rem; }
.service .s-price small { font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mocha); display: block; margin-bottom: 0.1rem; }
@media (max-width: 820px) { .services { grid-template-columns: 1fr; max-width: 460px; } }

.combo { margin-top: 1.8rem; background: var(--espresso); color: var(--oat); border-radius: 16px; padding: clamp(1.6rem, 3vw, 2.4rem); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem; position: relative; overflow: hidden; }
.combo::before { content: ""; position: absolute; width: 260px; height: 260px; right: -60px; top: -80px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--caramel) 55%, transparent), transparent 70%); }
.combo > * { position: relative; }
.combo .eyebrow { color: var(--blush); }
.combo h3 { color: var(--oat); font-size: 1.5rem; font-weight: 400; margin-top: 0.5rem; }
.combo p { color: color-mix(in srgb, var(--oat) 78%, transparent); margin-top: 0.4rem; max-width: 46ch; font-size: 0.95rem; }

/* Serviços on dark band */
.band-deep .section-head h2 { color: var(--oat); }
.band-deep .section-head p { color: color-mix(in srgb, var(--oat) 72%, transparent); }
.band-deep .service { background: var(--cream); border-color: color-mix(in srgb, var(--caramel) 30%, transparent); box-shadow: 0 22px 44px -30px rgba(0,0,0,.6); }
.band-deep .service h3 { color: var(--espresso); }
.band-deep .service .s-dur { color: var(--mocha); }
.band-deep .service .s-desc { color: var(--cocoa); }
.band-deep .service .s-price { color: var(--espresso); }
.band-deep .service .s-price small { color: var(--mocha); }
.band-deep .service .s-num { color: var(--caramel); }
.band-deep .service:hover { border-color: var(--caramel); box-shadow: 0 30px 56px -26px rgba(0,0,0,.7); }
.band-deep .service::after { background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent); }
.band-deep .combo { background: linear-gradient(120deg, var(--caramel), var(--cocoa)); }
.band-deep .combo::before { background: radial-gradient(circle, rgba(255,255,255,.14), transparent 70%); }

/* ============ Portfólio (carrossel) ============ */
.carousel { position: relative; }
.car-viewport { overflow: hidden; border-radius: 16px; }
.car-track { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; padding: 2px; scrollbar-width: none; cursor: grab; }
.car-track::-webkit-scrollbar { display: none; }
.car-track.dragging { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; }
.car-slide { flex: 0 0 clamp(260px, 44%, 380px); scroll-snap-align: center; aspect-ratio: 4 / 5; border-radius: 16px; overflow: hidden; margin: 0; background: var(--espresso); box-shadow: 0 24px 50px -30px rgba(42,32,25,.5); }
.car-slide img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; -webkit-user-drag: none; user-select: none; }
.car-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 6; width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-soft); background: color-mix(in srgb, var(--cream) 90%, transparent); backdrop-filter: blur(6px); color: var(--espresso); display: grid; place-content: center; cursor: pointer; box-shadow: 0 10px 24px -12px rgba(42,32,25,.5); transition: background .25s ease, opacity .25s ease; }
.car-arrow svg { width: 22px; height: 22px; }
.car-arrow:hover { background: var(--cream); }
.car-prev { left: -8px; }
.car-next { right: -8px; }
.car-arrow[disabled] { opacity: .3; cursor: default; }
.car-dots { display: flex; justify-content: center; gap: 8px; margin-top: 1.5rem; }
.car-dots button { width: 8px; height: 8px; border-radius: 50%; border: none; background: color-mix(in srgb, var(--mocha) 40%, transparent); cursor: pointer; padding: 0; transition: transform .25s ease, background .25s ease; }
.car-dots button.active { background: var(--caramel); transform: scale(1.45); }
@media (max-width: 640px) {
  .car-slide { flex-basis: 80%; }
  .car-prev { left: 4px; } .car-next { right: 4px; }
}

/* ============ Antes & Depois SLIDER ============ */
.ba-wrap { max-width: 760px; margin-inline: auto; }
.ba-slider { position: relative; aspect-ratio: 16 / 11; border-radius: 20px; overflow: hidden; user-select: none; touch-action: none; box-shadow: 0 30px 60px -34px rgba(42,32,25,.55); cursor: ew-resize; }
.ba-layer { position: absolute; inset: 0; }
.ba-layer .ph { border: none; }
.ba-layer .ph::before { display: none; }
.ba-after { clip-path: inset(0 0 0 50%); }
.ba-tag { position: absolute; bottom: 14px; z-index: 3; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; background: color-mix(in srgb, var(--espresso) 82%, transparent); color: var(--oat); padding: 5px 12px; border-radius: 999px; backdrop-filter: blur(4px); }
.ba-tag.before { left: 14px; }
.ba-tag.after { right: 14px; background: var(--caramel); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--oat); transform: translateX(-50%); z-index: 4; }
.ba-knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 46px; height: 46px; border-radius: 50%; background: var(--oat); display: grid; place-content: center; box-shadow: 0 6px 18px -6px rgba(42,32,25,.7); color: var(--espresso); }
.ba-knob svg { width: 22px; height: 22px; }
.ba-hint { text-align: center; margin-top: 1rem; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mocha); }

/* ============ Depoimentos ============ */
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.quote { background: var(--cream); border: 1px solid var(--line-soft); border-radius: 16px; padding: 2rem 1.8rem; display: flex; flex-direction: column; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.quote:hover { transform: translateY(-5px); box-shadow: 0 24px 46px -30px rgba(42,32,25,.5); }
.quote .stars { color: var(--caramel); letter-spacing: 3px; font-size: 0.95rem; }
.quote blockquote { margin: 1rem 0 0; font-family: var(--serif); font-size: 1.28rem; line-height: 1.45; font-weight: 300; color: var(--espresso); }
.quote .who { margin-top: auto; padding-top: 1.4rem; display: flex; align-items: center; gap: 0.8rem; }
.quote .who .av { width: 40px; height: 40px; border-radius: 50%; background: var(--oat-deep); display: grid; place-content: center; font-family: var(--serif); color: var(--cocoa); border: 1px solid var(--line); flex: none; }
.quote .who b { font-family: var(--sans); font-weight: 500; font-size: 0.92rem; }
.quote .who span { font-size: 0.78rem; color: var(--mocha); display: block; }
@media (max-width: 820px) { .quotes { grid-template-columns: 1fr; } }

/* ============ Info ============ */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.info-card { background: var(--cream); border: 1px solid var(--line-soft); border-radius: 16px; padding: 1.9rem 1.8rem; transition: transform .5s var(--ease), border-color .5s var(--ease); }
.info-card:hover { transform: translateY(-4px); border-color: var(--caramel); }
.info-card .ic { width: 34px; height: 34px; display: grid; place-content: center; color: var(--caramel); margin-bottom: 1rem; }
.info-card .ic svg { width: 26px; height: 26px; }
.info-card h3 { font-size: 1.35rem; font-weight: 400; }
.info-card p, .info-card ul { margin-top: 0.7rem; color: var(--cocoa); font-size: 0.96rem; }
.info-card ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.35rem; }
.info-card .todo { display: inline-block; margin-top: 0.6rem; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--caramel); border: 1px dashed var(--caramel); border-radius: 999px; padding: 3px 10px; }
.hours { list-style: none; margin: 0.9rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.92rem; color: var(--cocoa); padding: 0.42rem 0; border-bottom: 1px dotted var(--line); }
.hours li:last-child { border-bottom: none; }
.hours li .h { font-variant-numeric: tabular-nums; color: var(--espresso); }
.hours li.closed .h { color: var(--mocha); font-style: italic; }
.info-link { display: inline-flex; align-items: center; gap: 0.4em; margin-top: 1rem; font-size: 0.86rem; letter-spacing: 0.05em; color: var(--caramel); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .3s ease; }
.info-link:hover { border-color: var(--caramel); }
@media (max-width: 720px) { .info-grid { grid-template-columns: 1fr; } }

.brands { margin-top: 1.2rem; display: flex; flex-wrap: wrap; gap: 0.7rem; }
.brands span { font-size: 0.82rem; letter-spacing: 0.06em; color: var(--cocoa); border: 1px solid var(--line); border-radius: 999px; padding: 0.4em 1em; background: var(--oat); }

/* ============ Final CTA ============ */
.final { text-align: center; overflow: hidden; }
.final .wrap { position: relative; z-index: 1; }
.final h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 300; max-width: 18ch; margin-inline: auto; }
.final h2 em { font-style: italic; color: var(--blush); }
.final p { margin-top: 1.2rem; color: color-mix(in srgb, var(--oat) 80%, transparent); }
.final .btn--solid { background: var(--oat); color: var(--espresso); border-color: var(--oat); margin-top: 2.2rem; }
.final .btn--solid::before { background: linear-gradient(120deg, var(--blush), var(--blush-l)); }
.final .btn--solid:hover { color: var(--espresso); border-color: var(--blush); }

/* ============ Footer ============ */
footer { background: var(--oat); border-top: 1px solid var(--line); padding-block: clamp(2.5rem, 5vw, 3.6rem); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; align-items: start; }
.foot-grid p { color: var(--cocoa); font-size: 0.94rem; margin-top: 1rem; max-width: 34ch; }
.foot-col h4 { font-family: var(--sans); font-weight: 500; font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mocha); }
.foot-col ul { list-style: none; padding: 0; margin: 1rem 0 0; display: flex; flex-direction: column; gap: 0.55rem; }
.foot-col a { text-decoration: none; color: var(--espresso); font-size: 0.95rem; transition: color .3s ease; }
.foot-col a:hover { color: var(--caramel); }
.foot-bottom { margin-top: 2.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line-soft); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem; font-size: 0.8rem; color: var(--mocha); }
.foot-credit { margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--line-soft); text-align: center; font-size: 0.8rem; color: var(--mocha); }
.foot-credit a { color: inherit; font-weight: 500; text-decoration: none; transition: color .25s ease; }
.foot-credit a:hover { color: var(--oat); }
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr; gap: 1.8rem; } }

/* ============ Reveal ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

.parallax { will-change: transform; }

/* ============ FAB ============ */
.fab { position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 130; width: 58px; height: 58px; border-radius: 50%; background: var(--espresso); color: var(--oat); display: grid; place-content: center; box-shadow: 0 14px 30px -12px rgba(42,32,25,.7); transition: transform .35s var(--ease), background .35s ease; }
.fab::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 1px solid var(--caramel); animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.7); opacity: 0; } }
.fab:hover { transform: scale(1.09); background: var(--caramel); }
.fab svg { width: 27px; height: 27px; position: relative; }

/* ============ Mobile menu ============ */
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 0; background: transparent; border: none; cursor: pointer; z-index: 130; }
.nav-toggle span { display: block; width: 24px; height: 2px; margin: 0 auto; background: var(--oat); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; position: fixed; inset: 0; z-index: 110; background: var(--espresso); flex-direction: column; justify-content: center; gap: 0; padding: 5rem var(--gutter) 2.5rem; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s; }
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu .mlink { font-family: var(--serif); font-size: clamp(1.35rem, 6vw, 1.85rem); color: var(--oat); text-decoration: none; padding: 0.62rem 0; border-bottom: 1px solid color-mix(in srgb, var(--caramel) 22%, transparent); transition: color .3s ease; }
.mobile-menu .mlink:hover, .mobile-menu .mlink:active { color: var(--caramel-l); }
.mobile-menu .btn { margin-top: 1.8rem; justify-content: center; }
.mobile-menu .mm-social { margin-top: 1.5rem; align-self: center; text-align: center; font-size: 0.9rem; letter-spacing: 0.04em; color: var(--blush); text-decoration: none; }

/* ============ FAQ ============ */
.faq { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: 0.8rem; }
.faq details { background: var(--cream); border: 1px solid var(--line-soft); border-radius: 14px; overflow: hidden; transition: border-color .35s var(--ease); }
.faq details[open] { border-color: var(--caramel); }
.faq summary { list-style: none; cursor: pointer; padding: 1.2rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-family: var(--serif); font-size: 1.18rem; color: var(--espresso); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { flex: none; width: 22px; height: 22px; position: relative; transition: transform .35s var(--ease); }
.faq summary .plus::before, .faq summary .plus::after { content: ""; position: absolute; top: 50%; left: 50%; width: 13px; height: 2px; background: var(--caramel); transform: translate(-50%,-50%); border-radius: 2px; }
.faq summary .plus::after { transform: translate(-50%,-50%) rotate(90deg); transition: transform .35s var(--ease); }
.faq details[open] summary .plus::after { transform: translate(-50%,-50%) rotate(0); }
.faq .faq-a { padding: 0 1.5rem 1.3rem; color: var(--cocoa); font-size: 0.98rem; line-height: 1.65; max-width: 60ch; }

/* ============ Responsivo extra ============ */
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .mobile-menu { display: flex; }
}
@media (max-width: 560px) {
  .nav-cta .btn--light { display: none; }
  .services { margin-inline: auto; }
  .hero-portrait { border-radius: 150px 150px 14px 14px; }
  .hero-actions { flex-wrap: nowrap; justify-content: center; }
  .hero-actions .btn { flex: 1; justify-content: center; }
}
@media (max-width: 600px) {
  .hero-meta { flex-wrap: wrap; gap: 1.2rem 1.8rem; }
  .hero-meta b { font-size: 1.35rem; }
  .hero-meta span { font-size: 0.72rem; }
}
@media (max-width: 400px) {
  :root { --gutter: 1.1rem; }
  .brand .wordmark b { font-size: 1.05rem; }
}

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .gel-field { filter: blur(48px); }
  .reveal, .anim-up { opacity: 1 !important; transform: none !important; }
  .hero h1 .line > span { transform: none !important; }
  .cursor-dot, .cursor-ring { display: none !important; }
  .preloader { display: none !important; }
}
