/* ============================================================
   GOLDEN ART'S — Ambientes Planejados
   Paleta: espresso profundo + latão/dourado + creme + nogueira
   Tipografia: Fraunces (display serif) · Figtree (sans body)
   ============================================================ */

:root {
  /* Cores */
  --espresso: #171310;      /* neutro escuro elegante */
  --espresso-2: #221b16;
  --wood: #5a3e2b;          /* nogueira */
  --gold: #c8963e;          /* latão */
  --gold-lt: #e6c271;       /* dourado claro para highlights */
  --gold-deep: #a9772c;
  --cream: #f4eee2;         /* off-white quente */
  --cream-2: #efe6d5;
  --paper: #fbf8f2;
  --ink: #2a231d;           /* texto sobre claro */
  --ink-soft: #6b5f52;
  --line: rgba(23, 19, 16, 0.12);
  --line-gold: rgba(200, 150, 62, 0.45);
  --on-dark: #ece3d4;
  --on-dark-soft: #b4a794;

  /* Tipografia */
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Ritmo */
  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 24px 60px -28px rgba(23, 19, 16, 0.45);
  --shadow-soft: 0 12px 30px -18px rgba(23, 19, 16, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; }
em { font-style: italic; }

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

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--gold); color: var(--espresso); padding: 10px 16px; border-radius: var(--radius);
  font-weight: 600; transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

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

/* ---------- Eyebrow / structural ---------- */
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 0.7em;
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow--light { color: var(--gold-lt); }
.eyebrow--light::before { background: var(--gold-lt); }

/* ---------- Buttons ---------- */
.btn {
  --btn-pad-y: 0.85em; --btn-pad-x: 1.4em;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: 100px; border: 1px solid transparent; cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  position: relative; white-space: nowrap;
}
.btn--sm { font-size: 0.85rem; --btn-pad-y: 0.6em; --btn-pad-x: 1.1em; }
.btn--lg { font-size: 1.02rem; --btn-pad-y: 1em; --btn-pad-x: 1.7em; }
.btn--gold { background: var(--gold); color: #241a0c; box-shadow: 0 10px 24px -12px rgba(200, 150, 62, 0.8); }
.btn--gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(200, 150, 62, 0.9); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-2px); }
/* Ghost sobre superfícies escuras (hero, CTA final) */
.hero .btn--ghost, .cta-final .btn--ghost { color: var(--cream); border-color: rgba(236, 227, 212, 0.32); }
.hero .btn--ghost:hover, .cta-final .btn--ghost:hover { color: var(--espresso); background: var(--cream); border-color: var(--cream); }
.btn__wa { flex-shrink: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(23, 19, 16, 0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(200, 150, 62, 0.18);
  transition: padding 0.4s var(--ease), background 0.4s var(--ease);
  color: var(--on-dark);
}
.site-header[data-shrink] { background: rgba(23, 19, 16, 0.96); }
.header__inner { display: flex; align-items: center; gap: 1.5rem; padding-block: clamp(0.7rem, 1.6vw, 1.1rem); transition: padding 0.4s var(--ease); }
.site-header[data-shrink] .header__inner { padding-block: 0.6rem; }

.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--cream); }
.brand__mark { color: var(--gold-lt); display: inline-flex; }
.brand__word { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-size: 1.28rem; font-weight: 600; letter-spacing: 0.01em; }
.brand__sub { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.28em; color: var(--gold-lt); margin-top: 4px; }

.nav { display: flex; gap: 1.7rem; margin-left: auto; }
.nav a { font-size: 0.92rem; font-weight: 500; color: var(--on-dark); position: relative; padding-block: 4px; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--gold-lt); transition: width 0.3s var(--ease); }
.nav a:hover { color: var(--cream); }
.nav a:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 0.9rem; }
.icon-link { color: var(--on-dark); display: inline-flex; transition: color 0.3s var(--ease), transform 0.3s var(--ease); }
.icon-link:hover { color: var(--gold-lt); transform: translateY(-1px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; margin-left: auto; }
.nav-toggle span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--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); }

.mobile-menu { display: none; flex-direction: column; gap: 0.4rem; padding: 0.6rem var(--gutter) 1.4rem; background: rgba(23, 19, 16, 0.98); border-bottom: 1px solid rgba(200,150,62,0.2); }
.mobile-menu a { color: var(--on-dark); padding: 0.7rem 0; font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-menu a:last-child { border: 0; }
.mobile-menu .btn { margin-top: 0.8rem; }
.mobile-menu__ig { color: var(--gold-lt) !important; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; color: var(--on-dark); overflow: hidden; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; animation: slowzoom 18s var(--ease) forwards; }
@keyframes slowzoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(23,19,16,0.55) 0%, rgba(23,19,16,0.35) 40%, rgba(23,19,16,0.82) 100%),
    linear-gradient(90deg, rgba(23,19,16,0.85) 0%, rgba(23,19,16,0.35) 55%, rgba(23,19,16,0.15) 100%);
}
.hero__inner { padding-block: clamp(3rem, 10vh, 7rem); }
.hero__frame { max-width: 720px; position: relative; padding-left: clamp(0px, 2.5vw, 34px); }
.hero__frame::before {
  content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(180deg, var(--gold-lt), transparent);
  display: none;
}
@media (min-width: 720px) { .hero__frame::before { display: block; } }

.hero__title {
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--cream);
  font-optical-sizing: auto;
}
.hero__title em { color: var(--gold-lt); font-style: italic; }
.hero__lead { font-size: clamp(1.05rem, 2vw, 1.22rem); max-width: 560px; color: var(--on-dark); margin-bottom: 2.2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.4rem; }

.hero__trust { list-style: none; padding: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 0.85rem; font-size: 0.9rem; color: var(--on-dark-soft); }
.hero__trust strong { color: var(--cream); font-weight: 600; }
.hero__trust .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); display: inline-block; }

.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 1px solid rgba(236,227,212,0.4); border-radius: 20px; display: flex; justify-content: center; z-index: 2; }
.hero__scroll span { width: 3px; height: 8px; background: var(--gold-lt); border-radius: 2px; margin-top: 8px; animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }

/* ---------- Section shell ---------- */
.section { padding-block: clamp(4.5rem, 10vw, 8rem); position: relative; }
.section__head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 3.8rem); }
.section__head--split { max-width: none; display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
@media (min-width: 860px) { .section__head--split { grid-template-columns: 1.1fr 0.9fr; align-items: end; gap: 3rem; } }
.section__title { font-size: clamp(1.9rem, 4vw, 3rem); color: var(--ink); }
.section__intro { margin-top: 1.1rem; color: var(--ink-soft); font-size: 1.08rem; }
.section__intro em { color: var(--gold-deep); font-style: italic; }

/* ---------- Ambientes cards ---------- */
.ambientes { background: linear-gradient(180deg, var(--paper), var(--cream)); }
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: clamp(1.1rem, 2vw, 1.6rem); }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-gold); }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; position: relative; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.card__title { font-size: 1.4rem; color: var(--ink); }
.card__desc { color: var(--ink-soft); font-size: 0.96rem; flex: 1; }
.card__cta {
  margin-top: 0.7rem; font-weight: 600; font-size: 0.92rem; color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 0.5em; align-self: flex-start;
}
.card__cta span { transition: transform 0.3s var(--ease); }
.card__cta:hover { color: var(--wood); }
.card__cta:hover span { transform: translateX(5px); }

/* ---------- Diferenciais ---------- */
.diferenciais { background: var(--espresso); color: var(--on-dark); position: relative; }
.diferenciais::before, .diferenciais::after { content: ""; position: absolute; left: var(--gutter); right: var(--gutter); height: 1px; background: var(--line-gold); }
.diferenciais::before { top: 0; }
.diferenciais::after { bottom: 0; }
.diferenciais .eyebrow { color: var(--gold-lt); }
.diferenciais .eyebrow::before { background: var(--gold-lt); }
.diferenciais .section__title { color: var(--cream); }
.diferenciais .section__intro { color: var(--on-dark-soft); }
.feats { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(1.4rem, 3vw, 2.4rem) clamp(1.4rem, 3vw, 2.6rem); }
.feat { position: relative; padding-top: 0.4rem; }
.feat__icon { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 50%; border: 1px solid var(--line-gold); color: var(--gold-lt); margin-bottom: 1rem; transition: background 0.4s var(--ease), transform 0.4s var(--ease); }
.feat:hover .feat__icon { background: rgba(200,150,62,0.12); transform: translateY(-3px); }
.feat h3 { font-size: 1.28rem; color: var(--cream); margin-bottom: 0.4rem; }
.feat p { color: var(--on-dark-soft); font-size: 0.96rem; }

/* ---------- Portfólio ---------- */
.portfolio { background: var(--cream); }
.mosaic { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; gap: clamp(0.7rem, 1.4vw, 1rem); }
@media (min-width: 720px) { .mosaic { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; } }
.mosaic__item { overflow: hidden; border-radius: var(--radius-lg); position: relative; grid-row: span 1; }
.mosaic__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.mosaic__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(23,19,16,0.35)); opacity: 0; transition: opacity 0.4s var(--ease); }
.mosaic__item:hover img { transform: scale(1.07); }
.mosaic__item:hover::after { opacity: 1; }
.mosaic__item--tall { grid-row: span 2; }
@media (min-width: 720px) { .mosaic__item--wide { grid-column: span 2; } }

.portfolio__cta { margin-top: 2.6rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem; justify-content: center; text-align: center; }
.portfolio__cta p { font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); }

/* ---------- Sobre ---------- */
.sobre { background: var(--paper); }
.sobre__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 860px) { .sobre__grid { grid-template-columns: 0.95fr 1.05fr; } }
.sobre__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.sobre__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.sobre__badge {
  position: absolute; left: 18px; bottom: 18px;
  background: var(--gold); color: #241a0c; font-weight: 600; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.14em; padding: 0.5em 1em; border-radius: 100px;
}
.sobre__text p { color: var(--ink-soft); margin-top: 1.1rem; }
.sobre__text strong { color: var(--ink); }
.sobre__text .btn { margin-top: 1.8rem; }

/* ---------- CTA final ---------- */
.cta-final { background: var(--espresso); color: var(--on-dark); text-align: center; padding-block: clamp(4rem, 9vw, 7rem); position: relative; overflow: hidden; }
.cta-final::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(200,150,62,0.16), transparent 60%); }
.cta-final__inner { position: relative; max-width: 640px; margin-inline: auto; }
.cta-final__title { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--cream); margin-bottom: 0.8rem; }
.cta-final__lead { color: var(--on-dark-soft); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-final .eyebrow { justify-content: center; }
.cta-final__phone { margin-top: 1.4rem; font-family: var(--font-display); font-size: 1.35rem; color: var(--gold-lt); letter-spacing: 0.02em; }

/* ---------- Footer ---------- */
.site-footer { background: #100d0a; color: var(--on-dark-soft); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.2rem; padding-bottom: 2.6rem; }
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1.3fr 1fr; gap: 2.4rem; } }
.footer__brand .brand__mark { color: var(--gold-lt); }
.footer__tagline { margin-top: 1rem; max-width: 30ch; font-size: 0.95rem; }
.footer__col h4, .footer__cta h4 { font-family: var(--font-body); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold-lt); margin-bottom: 1rem; font-weight: 600; }
.footer__col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.94rem; }
.footer__col a:hover { color: var(--cream); }
.footer__note { font-size: 0.82rem; color: #7c7062; }
.footer__cta .btn { width: 100%; }
.footer__base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem; padding-block: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.85rem; }
.footer__credit a { color: var(--gold-lt); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 28px -8px rgba(37,211,102,0.7);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(37,211,102,0.5); animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.5); opacity: 0; } }
.wa-float:hover { transform: scale(1.08); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Estatísticas ---------- */
.stats { background: var(--paper); border-bottom: 1px solid var(--line); }
.stats__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; padding-block: clamp(2.4rem, 5vw, 3.4rem); }
@media (min-width: 760px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; position: relative; }
@media (min-width: 760px) { .stat + .stat::before { content: ""; position: absolute; left: 0; top: 12%; height: 76%; width: 1px; background: var(--line); } }
.stat__num { display: block; font-family: var(--font-display); font-weight: 600; font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1; color: var(--gold-deep); letter-spacing: -0.02em; }
.stat__num--text { color: var(--gold-deep); }
.stat__label { display: block; margin-top: 0.5rem; font-size: 0.86rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.1em; }

/* ---------- FAQ ---------- */
.faq { background: var(--paper); }
.faq__list { max-width: 820px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 1.25rem 2.4rem 1.25rem 0; position: relative;
  font-family: var(--font-display); font-size: clamp(1.1rem, 2.4vw, 1.35rem); color: var(--ink);
  transition: color 0.3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; position: absolute; right: 4px; top: 50%; width: 12px; height: 12px; margin-top: -6px;
  background:
    linear-gradient(var(--gold-deep), var(--gold-deep)) center/12px 2px no-repeat,
    linear-gradient(var(--gold-deep), var(--gold-deep)) center/2px 12px no-repeat;
  transition: transform 0.35s var(--ease);
}
.faq__item[open] summary { color: var(--gold-deep); }
.faq__item[open] summary::after { transform: rotate(135deg); }
.faq__item summary:hover { color: var(--gold-deep); }
.faq__answer { padding: 0 2.4rem 1.4rem 0; color: var(--ink-soft); }
.faq__answer p { max-width: 68ch; }
.faq__answer strong { color: var(--ink); }
@media (prefers-reduced-motion: no-preference) {
  .faq__item[open] .faq__answer { animation: faqIn 0.4s var(--ease); }
  @keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
}

/* ---------- CTA final: layout com formulário ---------- */
.cta-final__grid { position: relative; display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; text-align: left; max-width: var(--wrap); margin-inline: auto; }
@media (min-width: 900px) { .cta-final__grid { grid-template-columns: 1fr 0.9fr; } }
.cta-final__grid .eyebrow { justify-content: flex-start; }
.cta-final__grid .cta-final__title, .cta-final__grid .cta-final__lead { text-align: left; }
.cta-final__contact { list-style: none; padding: 0; margin-top: 1.6rem; display: flex; flex-direction: column; gap: 0.9rem; }
.cta-final__contact li { display: flex; align-items: center; gap: 0.7rem; color: var(--on-dark); font-size: 1rem; }
.cta-final__contact strong { color: var(--gold-lt); font-weight: 600; }
.cta-final__ico { width: 38px; height: 38px; flex-shrink: 0; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line-gold); color: var(--gold-lt); }

.quote-card { background: var(--paper); color: var(--ink); border-radius: 14px; padding: clamp(1.4rem, 3vw, 2rem); box-shadow: 0 30px 70px -30px rgba(0,0,0,0.6); border: 1px solid rgba(200,150,62,0.25); text-align: left; }
.quote-card__title { font-size: 1.5rem; color: var(--ink); margin-bottom: 1.1rem; }
.quote-form { display: flex; flex-direction: column; gap: 0.9rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field > span { font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; }
.field > span em { font-style: normal; color: #a99; text-transform: none; letter-spacing: 0; font-weight: 400; }
.field input, .field select, .field textarea {
  font: inherit; font-size: 0.98rem; color: var(--ink);
  padding: 0.7em 0.85em; border: 1px solid var(--line); border-radius: 8px; background: #fff;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease); width: 100%;
}
.field textarea { resize: vertical; min-height: 68px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,150,62,0.18); }
.field-row { display: grid; grid-template-columns: 1fr; gap: 0.9rem; }
@media (min-width: 480px) { .field-row { grid-template-columns: 1fr 1fr; } }
.quote-form__submit { width: 100%; margin-top: 0.3rem; }
.quote-form__note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.2rem; }

/* ---------- Responsive header ---------- */
@media (max-width: 900px) {
  .nav, .header__actions { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu[data-open] { display: flex; }
}
