/* Minho Móveis — Artesanal Quente
   Mobile-first, no framework. Pure CSS + design tokens. */

:root {
  --bg: #F5EDE0;
  --bg-alt: #EBE0CD;
  --ink: #1F1611;
  --ink-soft: #5C4A3A;
  --accent: #B85C2E;
  --accent-dk: #8A4220;
  --wood: #7A4A2B;
  --wood-lt: #B88A5C;
  --cream: #FAF4E8;
  --line: rgba(31, 22, 17, 0.12);
  --line-on-dark: rgba(245, 237, 224, 0.15);
  --whatsapp: #25D366;

  --font-display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-hand: "Caveat", cursive;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

/* Constrain horizontal overflow without breaking position:sticky */
body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: env(safe-area-inset-bottom);
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

/* ─────── Reusable atoms ─────── */

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px;
  font-weight: 400;
}

.eyebrow-hand {
  font-family: var(--font-hand);
  font-size: 22px;
  color: var(--accent);
  line-height: 1;
}

.h-display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
}

.h1 {
  font-size: clamp(38px, 10vw, 92px);
  line-height: 1.02;
}

.h2 {
  font-size: clamp(30px, 7vw, 56px);
  line-height: 1;
}

.h2-small {
  font-size: clamp(28px, 6vw, 44px);
  line-height: 1.05;
}

.h3 {
  font-size: 22px;
  line-height: 1.15;
}

em {
  font-style: italic;
}
.serif-italic {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent);
}

.lead {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 28px 0 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}
.container-narrow {
  max-width: 1100px;
  margin: 0 auto;
}
.container-tight {
  max-width: 860px;
  margin: 0 auto;
}

/* ─────── Buttons ─────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn-wa {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}
.btn-wa:hover {
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.btn-ink {
  background: var(--ink);
  color: var(--cream);
  font-weight: 500;
}
.btn-ink:hover {
  background: #2a1d16;
}

.btn-cream {
  background: var(--cream);
  color: var(--ink);
  font-weight: 500;
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 237, 224, 0.3);
  font-weight: 500;
}

.btn-on-accent {
  background: #fff;
  color: var(--accent);
}
.btn-outline-on-accent {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

/* ─────── Lang switcher ─────── */

.lang-switcher {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  gap: 2px;
  background: rgba(255, 255, 255, 0.78);
  padding: 4px;
  border-radius: 999px;
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  box-shadow: 0 2px 14px rgba(31, 22, 17, 0.08);
  font-family: var(--font-body);
  border: 1px solid rgba(31, 22, 17, 0.06);
}

.lang-switcher a {
  padding: 6px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.lang-switcher a:hover {
  color: var(--ink);
}

.lang-switcher a.active {
  background: var(--ink);
  color: var(--bg);
}

@media (max-width: 600px) {
  .lang-switcher {
    top: auto;
    bottom: 84px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ─────── Section base ─────── */

section {
  padding: 64px 20px;
  background: var(--bg);
}

section.alt {
  background: var(--bg-alt);
}
section.dark {
  background: var(--ink);
  color: var(--cream);
}
section.cream {
  background: var(--cream);
}

/* ─────── HERO ─────── */

.hero {
  padding: 20px 20px 40px;
  min-height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* Soft wood-grain texture, top-right corner only */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(
      ellipse 80% 60% at 100% 0%,
      rgba(184, 92, 46, 0.06),
      transparent 60%
    ),
    repeating-linear-gradient(
      92deg,
      transparent 0 9px,
      rgba(122, 74, 43, 0.04) 9px 10px
    );
  background-size: cover, 100% 100%;
}

/* Editorial right-side mark — counterweight to the H1 */
.hero-mark {
  position: absolute;
  top: 92px;
  right: 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  font-family: var(--font-body);
  color: var(--ink);
  pointer-events: none;
  z-index: 1;
}
.hero-mark-small {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-mark-big {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 84px;
  line-height: 0.9;
  letter-spacing: -0.025em;
  color: var(--accent);
  margin: 6px 0 4px;
}
.hero-mark-rule {
  width: 110px;
  height: 8px;
  color: var(--accent);
  opacity: 0.7;
  margin: 4px 0 8px;
  display: block;
}
.hero-mark-year {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--ink);
}
.hero-mark-hand {
  font-family: var(--font-hand);
  font-size: 22px;
  color: var(--accent);
  margin-top: 6px;
  transform: rotate(-2deg);
  transform-origin: right center;
}

/* Bottom-of-hero scroll cue */
.hero-cue {
  position: absolute;
  bottom: 32px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  pointer-events: none;
  z-index: 1;
}
.hero-cue-hand {
  font-family: var(--font-hand);
  font-size: 20px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--accent);
  transform: translateY(-2px);
}
.hero-cue-line {
  width: 70px;
  height: 1px;
  background: var(--ink);
  opacity: 0.4;
}
.hero-cue-arrow {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--accent);
  animation: cueBob 2.4s ease-in-out infinite;
}
@keyframes cueBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

@media (max-width: 1000px) {
  .hero-mark {
    top: 76px;
    right: 20px;
  }
  .hero-mark-big {
    font-size: 64px;
  }
}
@media (max-width: 700px) {
  .hero-mark,
  .hero-cue {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-cue-arrow {
    animation: none;
  }
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.brand .dot {
  color: var(--accent);
}

.brand-mark {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.hero-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
}

.hero .eyebrow-hand {
  margin-bottom: 14px;
  transform: rotate(-1.5deg);
  transform-origin: left center;
  align-self: flex-start;
  padding-top: 4px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.stats {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 5vw, 40px);
  font-size: 12px;
  color: var(--ink-soft);
}
.stats div strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  font-family: var(--font-display);
  font-weight: 500;
}

/* ─────── Section header ─────── */

.section-head {
  margin-bottom: 36px;
}
.section-head.row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}
.section-head .note {
  font-size: 13px;
  color: var(--ink-soft);
  max-width: 360px;
}

/* ─────── Services grid ─────── */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service {
  background: var(--bg);
  padding: 28px 24px;
  position: relative;
  min-height: 240px;
}

.service .num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--accent);
  font-style: italic;
  margin-bottom: 6px;
}
.service h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 4px;
}
.service .tagline {
  font-family: var(--font-hand);
  font-size: 17px;
  color: var(--accent);
  margin-bottom: 14px;
}
.service p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.service .badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 3px 7px;
  border-radius: 999px;
}
.service .ref {
  position: absolute;
  bottom: 20px;
  left: 24px;
  font-size: 13px;
  color: var(--accent);
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ─────── Kitchen scroll ─────── */

.kitchen-section {
  background: var(--ink);
  color: var(--cream);
  padding: 0;
  position: relative;
}

.kitchen-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.kitchen-head {
  padding: 24px 20px 12px;
  flex: 0 0 auto;
}
.kitchen-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 0.95;
  font-size: clamp(26px, 6vw, 48px);
  letter-spacing: -0.02em;
  margin: 4px 0 0;
  max-width: 720px;
}
.kitchen-svg-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  min-height: 0;
}
.kitchen-svg-wrap > div {
  width: 100%;
  height: 100%;
  max-width: 1100px;
}
.kitchen-foot {
  padding: 0 100px 24px 20px;
  flex: 0 0 auto;
}
@media (max-width: 800px) {
  .kitchen-foot {
    padding: 0 20px 24px;
  }
}
.progress {
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1px;
  overflow: hidden;
}
.progress > span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 0.1s;
}
.progress-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

.kitchen-spacer {
  height: 120vh;
}

/* Cozinhas hero variant */
.kitchen-hero {
  min-height: 120vh;
}
.kitchen-hero .kitchen-svg-wrap {
  max-height: 50vh;
}
.kitchen-hero-head {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.kitchen-hero-head .h1 {
  color: var(--cream);
  font-size: clamp(40px, 10vw, 88px);
  line-height: 0.95;
}
.kitchen-hero-foot {
  padding: 0 100px 24px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 800px) {
  .kitchen-hero-foot {
    padding: 0 20px 24px;
  }
}
.kitchen-hero-foot .keep {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.6);
}
.kitchen-hero-foot .req {
  font-size: 13px;
  color: var(--accent);
  text-decoration: underline;
}

/* ─────── About ─────── */

.about {
  background: var(--bg-alt);
  padding: 72px 20px;
}
.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 40px;
  align-items: center;
}
.portrait {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--bg), var(--cream));
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.portrait .glyph {
  width: 60%;
  opacity: 0.18;
}
.portrait .label {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  font-size: 10px;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.about-body .stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-body blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
  line-height: 1.4;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.about-body blockquote cite {
  display: block;
  font-family: var(--font-hand);
  font-style: normal;
  font-size: 18px;
  color: var(--accent);
  margin-top: 6px;
}
.about-body h2 {
  margin: 0 0 20px;
  font-size: clamp(30px, 6vw, 52px);
}

@media (max-width: 800px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ─────── Gallery ─────── */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 10px;
}

.tile {
  background: linear-gradient(135deg, var(--bg), var(--bg-alt));
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.tile .grain {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}
.tile .veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--cream) 0%,
    rgba(250, 244, 232, 0.8) 35%,
    transparent 65%
  );
  pointer-events: none;
}
.tile .photo-no {
  position: absolute;
  top: 10px;
  left: 12px;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.tile .caption {
  position: relative;
  z-index: 1;
}
.tile .caption .tag {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ink);
  line-height: 1.15;
  font-style: italic;
}
.tile .caption .zone {
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 3px;
}

.tile.large {
  grid-column: span 4;
  grid-row: span 2;
}
.tile.tall {
  grid-column: span 2;
  grid-row: span 2;
}
.tile.wide {
  grid-column: span 4;
  grid-row: span 1;
}
.tile.small {
  grid-column: span 2;
  grid-row: span 1;
}

@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
    gap: 8px;
  }
  .gallery-grid > .tile {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery-grid > .tile:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }
}

/* ─────── Process ─────── */

.process {
  border-top: 1px solid var(--line);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.process-step {
  border-top: 2px solid var(--ink);
  padding-top: 18px;
}
.process-step .n {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.process-step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.1;
}
.process-step p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* ─────── Materials ─────── */

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.material {
  padding: 18px 20px 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.material .name {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 4px;
}
.material .tone {
  font-size: 13px;
  color: rgba(245, 237, 224, 0.6);
}

/* ─────── Testimonials ─────── */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.t-card {
  margin: 0;
  background: var(--cream);
  padding: 26px 22px;
  border: 1px solid var(--line);
  position: relative;
}
.t-card .quote-mark {
  position: absolute;
  top: 14px;
  right: 18px;
  color: var(--accent);
  opacity: 0.4;
}
.t-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.4;
  color: var(--ink);
  font-style: italic;
}
.t-card figcaption {
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-soft);
}
.t-card figcaption strong {
  color: var(--ink);
}

/* ─────── Zones ─────── */

.zones {
  border-top: 1px solid var(--line);
}
.zones-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: 36px;
  align-items: start;
}
.zones-grid h2 {
  font-size: clamp(28px, 6vw, 44px);
  line-height: 1;
  margin: 0 0 14px;
}
.zones-grid p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.chip {
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  border: 1px solid var(--line);
}

@media (max-width: 700px) {
  .zones-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ─────── FAQ ─────── */

.faq-list {
}
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q-text {
  font-family: var(--font-display);
  font-size: clamp(17px, 2.5vw, 21px);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.3;
}
.faq-icon {
  color: var(--accent);
  transition: transform 0.2s;
  flex-shrink: 0;
  display: inline-flex;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 600px;
}
.faq-a p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 20px;
  max-width: 720px;
}

/* ─────── Contact ─────── */

.contact {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 20px 100px;
}
.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 40px;
}
.contact h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 7vw, 60px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--cream);
}
.contact .lead {
  color: rgba(245, 237, 224, 0.7);
  margin: 20px 0 28px;
  max-width: 540px;
}
.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-meta .row-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.contact-meta .addr {
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.3;
}
.contact-meta a.maps {
  font-size: 13px;
  color: var(--accent);
  text-decoration: underline;
  margin-top: 6px;
  display: inline-block;
}
.contact-meta table {
  font-size: 14px;
  color: rgba(245, 237, 224, 0.85);
  border-collapse: collapse;
}
.contact-meta td {
  padding: 3px 0;
}
.contact-meta td.days {
  padding-right: 22px;
  white-space: nowrap;
}
.contact-meta td.time {
  color: var(--cream);
}

.contact-foot {
  margin-top: 60px;
  padding: 24px 90px 0 0;
  border-top: 1px solid rgba(245, 237, 224, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(245, 237, 224, 0.5);
}
@media (max-width: 800px) {
  .contact-foot {
    padding: 24px 0 0 0;
  }
}
.contact-foot .sign {
  font-family: var(--font-hand);
  font-size: 16px;
  color: var(--accent);
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ─────── Floating CTAs ─────── */
/* Desktop: two circular FABs in bottom-right.
   Mobile (<800px): full-width pill bar with gradient fade. */

.minho-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: auto;
  z-index: 100;
  display: flex;
  flex-direction: column-reverse;
  gap: 12px;
  pointer-events: none;
  background: transparent;
  padding: 0;
}
.minho-floating a {
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  pointer-events: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.minho-floating a:hover {
  transform: translateY(-2px);
}
.minho-floating a span {
  /* hide labels on desktop FABs — they show only on mobile bar */
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.minho-floating .call {
  background: #1a1612;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}
.minho-floating .wa {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.38);
}
.minho-floating a svg {
  width: 24px;
  height: 24px;
}

/* Mobile: full-width bar at bottom */
@media (max-width: 800px) {
  body {
    padding-bottom: 88px;
  }
  .minho-floating {
    bottom: 0;
    left: 0;
    right: 0;
    flex-direction: row;
    gap: 10px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: linear-gradient(
      to top,
      var(--bg) 55%,
      rgba(245, 237, 224, 0)
    );
  }
  .minho-floating a {
    flex: 1;
    width: auto;
    height: auto;
    padding: 14px 18px;
    border-radius: 999px;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.01em;
  }
  .minho-floating a span {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    clip: auto;
    overflow: visible;
    white-space: normal;
  }
  .minho-floating a svg {
    width: 18px;
    height: 18px;
  }
}

/* ─────── Cozinhas page extras ─────── */

.kitchen-intro {
  padding: 72px 20px;
}
.kitchen-intro p {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 32px);
  line-height: 1.35;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
}

.styles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.style-card {
  background: var(--cream);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.style-card .top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}
.style-card .num {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  color: var(--accent);
}
.swatches {
  display: flex;
  gap: 4px;
}
.swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--line);
}
.style-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 12px;
}
.style-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.style-card .footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.style-card .footer .label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.style-card .footer .list {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.5;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.detail-group {
  border-top: 2px solid var(--ink);
  padding-top: 16px;
}
.detail-group h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
  margin: 0 0 12px;
}
.detail-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.detail-group li {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-soft);
  padding-left: 14px;
  position: relative;
}
.detail-group li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 1px;
  background: var(--accent);
}

.journey {
  background: var(--ink);
  color: var(--cream);
  padding: 72px 20px;
}
.journey h2 {
  color: var(--cream);
}
.journey-list {
  display: flex;
  flex-direction: column;
  max-width: 1000px;
  margin: 0 auto;
}
.journey-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: clamp(16px, 4vw, 36px);
  padding: 22px 0;
  border-top: 1px solid rgba(245, 237, 224, 0.15);
  align-items: baseline;
}
.journey-row .n {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 5vw, 40px);
  color: var(--accent);
}
.journey-row h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 3vw, 26px);
  color: var(--cream);
  margin: 0 0 6px;
  line-height: 1.15;
}
.journey-row p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(245, 237, 224, 0.75);
  margin: 0;
  max-width: 640px;
}
.journey-duration {
  font-family: var(--font-hand);
  font-size: 18px;
  color: var(--accent);
  white-space: nowrap;
  align-self: baseline;
}

@media (max-width: 600px) {
  .journey-row {
    grid-template-columns: 50px 1fr;
  }
  .journey-duration {
    grid-column: 2;
    margin-top: 6px;
    font-size: 16px;
  }
}

.price-note {
  background: var(--cream);
  padding: 72px 20px;
}
.price-note .container-tight {
  max-width: 720px;
}
.price-note h2 {
  margin: 0;
  font-size: clamp(28px, 6vw, 44px);
  line-height: 1.05;
}
.price-note .body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.price-note .body p {
  margin: 0;
}
.price-note .body .quote {
  padding-top: 8px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
}
.price-note .body .quote cite {
  display: block;
  font-family: var(--font-hand);
  font-style: normal;
  font-size: 18px;
  color: var(--accent);
  margin-top: 6px;
}

.cta-final {
  background: var(--accent);
  color: var(--cream);
  padding: 72px 20px;
  text-align: center;
}
.cta-final h2 {
  color: var(--cream);
  margin: 0 0 24px;
}
.cta-final .hand {
  font-family: var(--font-hand);
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 8px;
}
.cta-final p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  max-width: 540px;
  margin: 0 auto 32px;
}
.cta-final .row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.cta-final .back {
  display: inline-block;
  margin-top: 36px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}

/* ─────── Motion-safe ─────── */

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .kitchen-spacer {
    height: 0;
  }
  .kitchen-sticky {
    position: relative;
    height: auto;
    min-height: 70vh;
  }
}
