/* ============================================
   Pronto! Reformas e Arquitetura - style.css
   ============================================ */

:root {
  --cream: #f4e7cf;
  --cream-light: #fbf7ef;
  --logo-bg: #eddbc7;
  --paper: #fffdf8;
  --coral: #c95749;
  --coral-dark: #a93d33;
  --ink: #26251f;
  --muted: #716f65;
  --sage: #76866f;
  --line: rgba(38,37,31,.15);
  --radius-xl: 32px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  margin: 0;
  background: var(--cream-light);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }

button, input, textarea { font: inherit; }

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

.site-shell { overflow: clip; }

.section-pad {
  padding-left: clamp(24px, 5vw, 80px);
  padding-right: clamp(24px, 5vw, 80px);
}

.section-block {
  padding-top: clamp(88px, 10vw, 150px);
  padding-bottom: clamp(88px, 10vw, 150px);
}

/* ===== HEADER ===== */
.site-header {
  position: relative;
  z-index: 20;
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 7px clamp(24px, 5vw, 80px);
  background: var(--logo-bg);
  border-bottom: 1px solid rgba(201,87,73,.28);
}

.brand { display: inline-flex; align-items: center; width: 318px; min-width: 318px; }

.header-logo { display: block; width: 310px; height: auto; object-fit: contain; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 45px);
  margin-left: auto;
}

.desktop-nav a {
  font-size: 14px;
  font-weight: 700;
  transition: color .2s ease;
}

.desktop-nav a:hover { color: var(--coral); }

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.mobile-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform .3s ease, opacity .3s ease;
  border-radius: 2px;
}

.mobile-nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }

.mobile-nav-toggle.active span:nth-child(2) { opacity: 0; }

.mobile-nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--cream-light);
  z-index: 100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  transition: color .2s ease;
}

.mobile-menu a:hover { color: var(--coral); }

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--ink);
}

.header-cta {
  padding: 14px 19px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  gap: 18px;
  align-items: center;
}

.header-cta span { font-size: 20px; line-height: .7; }

.header-cta:hover { background: var(--ink); color: #fff; }

/* ===== HERO ===== */
.hero {
  min-height: calc(100vh - 88px);
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(540px, 1.04fr);
  gap: clamp(44px, 6vw, 100px);
  align-items: center;
  padding-top: 60px;
  padding-bottom: 80px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(201,87,73,.14);
  border-radius: 50%;
  left: -170px;
  top: 15%;
}

.hero-copy { padding-top: 10px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 24px;
  color: var(--coral-dark);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .145em;
  text-transform: uppercase;
}

.eyebrow > span { width: 26px; height: 2px; background: currentColor; }

.eyebrow.light { color: var(--cream); }

.hero h1,
.section-heading h2,
.values-intro h2,
.portfolio h2,
.story h2,
.final-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.052em;
  line-height: .97;
}

.hero h1 { font-size: clamp(58px, 6.5vw, 108px); max-width: 730px; }

h1 em, h2 em { color: var(--coral); font-weight: 500; }

.hero-lead {
  max-width: 620px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 36px 0 46px;
  flex-wrap: wrap;
}

.button {
  border: 0;
  cursor: pointer;
  min-height: 54px;
  padding: 16px 24px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-weight: 800;
  font-size: 14px;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.button:hover { transform: translateY(-2px); }

.button span { font-size: 19px; line-height: .6; }

.button-primary { background: var(--coral); color: #fff; }

.button-primary:hover { background: var(--coral-dark); }

.button-dark { background: var(--ink); color: #fff; }

.button-dark:hover { background: #090908; }

.button-cream { background: var(--cream-light); color: var(--ink); }

.text-link {
  font-weight: 800;
  font-size: 14px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 6px;
}

.text-link span { margin-left: 12px; color: var(--coral); }

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  max-width: 610px;
}

.hero-proof > div {
  padding: 22px 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-proof > div + div {
  border-left: 1px solid var(--line);
  padding-left: 22px;
}

.hero-proof strong {
  font-family: Georgia, serif;
  color: var(--coral);
  font-size: 28px;
  font-weight: 500;
}

.hero-proof span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
}

.hero-side { position: relative; padding-bottom: 110px; }

.hero-image-card {
  height: 430px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  background: #d8c3a4;
}

.hero-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: inherit;
  pointer-events: none;
}

.hero-image-card > img { width: 100%; height: 100%; object-fit: cover; }

.image-note {
  position: absolute;
  top: 22px;
  right: 22px;
  border-radius: 100px;
  padding: 11px 15px 11px 10px;
  background: rgba(255,253,248,.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.image-note span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
}

/* ===== LEAD CARD / FORM ===== */
.lead-card {
  position: relative;
  z-index: 2;
  width: calc(100% - 56px);
  margin: -74px auto -110px;
  background: var(--paper);
  border-radius: 25px;
  padding: 28px;
  box-shadow: 0 26px 70px rgba(41,31,18,.18);
}

.form-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.form-kicker {
  color: var(--coral);
  margin: 0 0 7px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
}

.form-heading h2,
.form-success h2 {
  font-family: Georgia, serif;
  font-size: clamp(25px, 2vw, 32px);
  letter-spacing: -.035em;
  margin: 0;
  font-weight: 500;
}

.form-arrow {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--coral);
  font-size: 21px;
}

form { display: flex; flex-direction: column; gap: 13px; }

.form-row { display: grid; grid-template-columns: .8fr 1.2fr; gap: 12px; }

label { display: flex; flex-direction: column; gap: 7px; }

label > span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .065em;
  font-weight: 800;
  color: #56544d;
}

input, textarea {
  width: 100%;
  border: 1px solid #d8d3c7;
  border-radius: 12px;
  background: #fff;
  padding: 12px 13px;
  outline: none;
  font-size: 14px;
  color: var(--ink);
  transition: border .18s ease, box-shadow .18s ease;
}

textarea { resize: vertical; min-height: 78px; }

input::placeholder, textarea::placeholder { color: #9c998f; }

input:focus, textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(201,87,73,.1);
}

.consent {
  flex-direction: row;
  align-items: flex-start;
  gap: 9px;
  padding: 1px 2px;
}

.consent input { width: 16px; height: 16px; margin: 0; accent-color: var(--coral); }

.consent span {
  font-size: 10px;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  color: var(--muted);
}

.form-honey {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-destination {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
  margin: 0;
}

.submit-button { width: 100%; border-radius: 12px; min-height: 52px; justify-content: space-between; }

.submit-button:disabled { opacity: .65; cursor: wait; }

.form-error { font-size: 12px; color: var(--coral-dark); margin: -5px 0 0; line-height: 1.4; }

.form-success {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.form-success > p:not(.form-kicker) {
  color: var(--muted);
  line-height: 1.6;
  max-width: 430px;
  margin: 15px 0 24px;
}

.success-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  margin-bottom: 22px;
  font-size: 24px;
}

/* ===== BRAND STRIP ===== */
.brand-strip {
  min-height: 86px;
  background: var(--coral);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 54px);
  padding: 22px 30px;
  white-space: nowrap;
  overflow: hidden;
}

.brand-strip span {
  font-size: clamp(13px, 1.35vw, 19px);
  font-weight: 900;
  letter-spacing: .09em;
}

.brand-strip b { color: var(--cream); }

/* ===== SECTION HEADINGS ===== */
.section-heading h2,
.values-intro h2,
.portfolio h2,
.story h2 {
  font-size: clamp(48px, 5.3vw, 82px);
}

.split-heading {
  max-width: 1440px;
  margin: 0 auto clamp(48px, 7vw, 88px);
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 80px;
  align-items: end;
}

.split-heading > p,
.values-intro > p:last-child,
.portfolio-heading > div > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 0 4px;
}

/* ===== SERVICES ===== */
.service-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 270px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.2);
  transition: background .2s ease, transform .2s ease;
}

.service-card:hover { background: var(--cream); transform: translateY(-4px); }

.service-card:nth-child(5) { grid-column: 1/2; }

.service-top {
  display: flex;
  justify-content: space-between;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
}

.service-top b { font-size: 20px; }

.service-card h3 {
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -.025em;
  margin: auto 0 12px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 13px;
  margin: 0;
}

/* ===== PORTFOLIO ===== */
.portfolio { background: var(--ink); color: var(--paper); }

.portfolio-heading {
  padding-top: clamp(85px, 9vw, 140px);
  display: grid;
  grid-template-columns: .45fr 1.55fr;
  gap: 40px;
  max-width: 1600px;
  margin: 0 auto;
}

.portfolio-heading h2 { margin-bottom: 26px; }

.portfolio-heading > div > p { color: #b9b5aa; }

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1600px;
  margin: 70px auto 0;
}

.comparison-card {
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
  overflow: hidden;
  background: #302f29;
}

.comparison-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.comparison-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.6,.2,1);
}

.comparison-card:hover img { transform: scale(1.025); }

.comparison-image > span {
  position: absolute;
  top: 18px;
  font-size: 10px;
  letter-spacing: .12em;
  font-weight: 900;
  padding: 9px 12px;
  border-radius: 100px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.before-label {
  left: 18px;
  color: #fff;
  background: rgba(38,37,31,.72);
}

.after-label {
  right: 18px;
  color: var(--ink);
  background: rgba(255,253,248,.9);
}

.comparison-copy {
  min-height: 112px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  padding: 22px;
}

.comparison-copy span {
  color: #a8a59b;
  font-size: 9px;
  letter-spacing: .14em;
  font-weight: 800;
}

.comparison-copy h3 {
  margin: 7px 0 0;
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: 25px;
}

.comparison-copy b {
  color: var(--cream);
  font-size: 11px;
  white-space: nowrap;
}

.simulation-note {
  max-width: 1600px;
  margin: 22px auto 0;
  padding-bottom: clamp(80px, 9vw, 130px);
  color: #8e8b82;
  font-size: 11px;
}

/* ===== VALUES ===== */
.values {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(50px, 8vw, 130px);
  align-items: start;
}

.values-intro { position: sticky; top: 130px; }

.values-intro h2 { max-width: 610px; }

.values-intro > p:last-child { margin-top: 30px; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.value-card {
  min-height: 235px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.value-card.featured { background: var(--coral); color: #fff; }

.value-check {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--coral);
  font-size: 15px;
}

.featured .value-check { color: #fff; }

.value-card h3 {
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -.02em;
  margin: auto 0 10px;
}

.value-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

.value-card.featured p { color: rgba(255,255,255,.82); }

/* ===== PROCESS ===== */
.process { background: var(--cream); }

.steps-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.step-card { padding-right: 28px; position: relative; }

.step-card > span {
  font-family: Georgia, serif;
  color: var(--coral);
  font-size: 22px;
}

.step-card > i {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--coral);
  margin: 18px 0 28px;
  position: relative;
}

.step-card > i::after {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
}

.step-card h3 {
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 11px;
}

.step-card p {
  font-size: 13px;
  line-height: 1.58;
  color: var(--muted);
  margin: 0;
  max-width: 250px;
}

/* ===== STORY ===== */
.story {
  background: var(--coral);
  color: #fff;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(70px, 10vw, 180px);
  align-items: center;
}

.story-number {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  justify-content: center;
}

.story-number strong {
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: clamp(160px, 20vw, 320px);
  letter-spacing: -.09em;
  line-height: .7;
  color: var(--cream);
}

.story-number span {
  font-size: 12px;
  letter-spacing: .12em;
  font-weight: 900;
  line-height: 1.5;
}

.story-copy { max-width: 750px; }

.story-copy h2 em { color: var(--cream); }

.story-copy > p:not(.eyebrow) {
  color: rgba(255,255,255,.84);
  font-size: 16px;
  line-height: 1.78;
}

.story-copy strong { color: #fff; }

.story-copy blockquote {
  margin: 34px 0 0;
  padding: 24px 0 0 30px;
  border-top: 1px solid rgba(255,255,255,.35);
  border-left: 3px solid var(--cream);
  font-family: Georgia, serif;
  font-size: 23px;
  font-style: italic;
  line-height: 1.45;
}

/* ===== FAQ ===== */
.seo-faq {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(50px, 8vw, 130px);
}

.faq-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.3vw, 82px);
  font-weight: 500;
  letter-spacing: -.052em;
  line-height: .97;
}

.faq-heading > p:last-child {
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin: 30px 0 0;
}

.faq-list { border-top: 1px solid var(--line); }

.faq-list details { border-bottom: 1px solid var(--line); }

.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 27px 0;
  font-family: Georgia, serif;
  font-size: clamp(20px, 2vw, 27px);
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary span {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid var(--coral);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--coral);
  font-family: Arial, sans-serif;
  transition: transform .2s ease;
}

.faq-list details[open] summary span { transform: rotate(45deg); }

.faq-list details > p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
  margin: -5px 55px 28px 0;
  max-width: 740px;
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding-top: clamp(80px, 9vw, 130px);
  padding-bottom: clamp(80px, 9vw, 130px);
  background: var(--sage);
  color: #fff;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.final-cta h2 { font-size: clamp(45px, 5.5vw, 86px); }

.final-cta h2 em { color: var(--cream); }

.final-actions {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}

.whatsapp-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 800;
}

.whatsapp-text svg { width: 23px; fill: currentColor; }

/* ===== FOOTER ===== */
.footer {
  padding-top: 70px;
  padding-bottom: 28px;
  background: #1e1e1a;
  color: #fff;
  display: grid;
  grid-template-columns: 1.4fr .65fr .85fr;
  gap: 70px;
}

.footer-brand img { width: 230px; height: auto; border-radius: 0; }

.footer-brand p {
  color: #98968e;
  max-width: 300px;
  line-height: 1.6;
  font-size: 13px;
}

.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
}

.footer-links span, .footer-contact span {
  color: var(--coral);
  font-size: 9px;
  letter-spacing: .14em;
  font-weight: 900;
  margin-bottom: 8px;
}

.footer-links a, .footer-contact a { color: #c8c5bc; }

.footer-contact p { color: #98968e; margin: 0; font-size: 12px; }

.footer-links a:hover, .footer-contact a:hover { color: #fff; }

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  color: #77756f;
  font-size: 11px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: flex;
  align-items: center;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.22));
  transition: transform .2s ease;
}

.whatsapp-float:hover { transform: translateY(-3px); }

.whatsapp-label {
  height: 48px;
  display: flex;
  align-items: center;
  padding: 0 17px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  border-radius: 100px 0 0 100px;
}

.whatsapp-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  margin-left: -4px;
}

.whatsapp-icon svg { width: 34px; fill: #fff; }

/* ===== THANKS PAGE ===== */
.thanks-page {
  min-height: 100vh;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: var(--logo-bg);
}

.thanks-page > a > img { width: 260px; height: auto; }

.thanks-card {
  width: min(100%, 620px);
  padding: clamp(30px, 6vw, 58px);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 26px 70px rgba(41,31,18,.14);
  text-align: center;
}

.thanks-card > span {
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-size: 25px;
}

.thanks-card > p:first-of-type {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
}

.thanks-card h1 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(38px, 7vw, 62px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1;
}

.thanks-card h1 + p {
  margin: 23px auto 30px;
  max-width: 470px;
  color: var(--muted);
  line-height: 1.65;
}

.thanks-card > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.thanks-back {
  font-size: 13px;
  font-weight: 800;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
}

/* ===== RESPONSIVE: 1180px ===== */
@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .mobile-nav-toggle { display: block; }
  .hero { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero h1 { font-size: clamp(55px, 6.8vw, 82px); }
  .lead-card { width: calc(100% - 30px); padding: 22px; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card:nth-child(5) { grid-column: auto; }
  .values { grid-template-columns: .8fr 1.2fr; gap: 50px; }
  .story { grid-template-columns: .7fr 1.3fr; }
  .story-number { flex-direction: column; align-items: center; gap: 20px; }
}

/* ===== RESPONSIVE: 900px ===== */
@media (max-width: 900px) {
  .site-header { position: sticky; top: 0; min-height: 94px; }
  .brand { width: 244px; min-width: 244px; }
  .header-logo { width: 238px; }
  .header-cta { padding: 12px 15px; }
  .hero { grid-template-columns: 1fr; min-height: 0; padding-top: 70px; gap: 55px; }
  .hero-copy { max-width: 740px; }
  .hero-side { padding-bottom: 120px; }
  .hero-image-card { height: 500px; }
  .lead-card { max-width: 650px; width: calc(100% - 50px); margin-top: -88px; }
  .split-heading { grid-template-columns: 1fr; gap: 30px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-heading { grid-template-columns: 1fr; gap: 20px; }
  .comparison-grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .values-intro { position: static; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 50px 20px; }
  .story { grid-template-columns: 1fr; }
  .story-number { flex-direction: row; justify-content: flex-start; }
  .story-number strong { font-size: 190px; }
  .final-cta { align-items: flex-start; flex-direction: column; }
  .seo-faq { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ===== RESPONSIVE: 600px ===== */
@media (max-width: 600px) {
  .section-pad { padding-left: 20px; padding-right: 20px; }
  .site-header { min-height: 84px; padding: 5px 16px; }
  .brand { width: 194px; min-width: 194px; }
  .header-logo { width: 188px; }
  .header-cta { font-size: 0; min-height: 43px; width: 43px; padding: 0; justify-content: center; }
  .header-cta span { font-size: 21px; }
  .hero { padding-top: 54px; padding-bottom: 65px; }
  .hero h1 { font-size: clamp(49px, 15vw, 67px); }
  .hero-lead { font-size: 16px; line-height: 1.6; margin-top: 24px; }
  .hero-actions { margin: 29px 0 38px; gap: 20px; }
  .button-primary { width: 100%; justify-content: space-between; }
  .text-link { margin: 0 auto; }
  .hero-proof > div { padding-right: 10px; }
  .hero-proof > div + div { padding-left: 10px; }
  .hero-proof strong { font-size: 22px; }
  .hero-proof span { font-size: 8.5px; }
  .hero-side { padding-bottom: 550px; margin-left: -20px; margin-right: -20px; }
  .hero-image-card { height: 340px; border-radius: 0; }
  .hero-image-card > img { object-position: 65% center; }
  .image-note { top: 16px; right: 16px; }
  .lead-card { position: absolute; top: 295px; left: 16px; width: calc(100% - 32px); margin: 0; padding: 22px 18px; border-radius: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .form-heading h2 { font-size: 26px; }
  .brand-strip { justify-content: flex-start; gap: 23px; min-height: 72px; }
  .brand-strip span { font-size: 13px; }
  .section-heading h2, .values-intro h2, .portfolio h2, .story h2 { font-size: clamp(43px, 13vw, 60px); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 230px; }
  .portfolio-heading { padding-top: 85px; }
  .comparison-grid { padding-left: 14px; padding-right: 14px; margin-top: 45px; }
  .comparison-copy { align-items: flex-start; flex-direction: column; min-height: 130px; }
  .comparison-copy h3 { font-size: 22px; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 215px; }
  .steps-grid { grid-template-columns: 1fr; gap: 42px; }
  .step-card { padding-right: 0; }
  .step-card p { max-width: none; }
  .story-number { gap: 16px; }
  .story-number strong { font-size: 150px; }
  .story-copy blockquote { padding-left: 20px; font-size: 20px; }
  .faq-list summary { padding: 22px 0; font-size: 21px; }
  .faq-list details > p { margin-right: 0; }
  .final-actions { width: 100%; }
  .button-cream { width: 100%; justify-content: space-between; }
  .footer { grid-template-columns: 1fr; gap: 38px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .whatsapp-label { display: none; }
  .whatsapp-icon { width: 57px; height: 57px; }
  .whatsapp-float { right: 16px; bottom: 16px; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ADMIN STYLES ===== */
.admin-body {
  background: #f5f3ef;
  font-family: Arial, Helvetica, sans-serif;
  min-height: 100vh;
}

.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: var(--cream-light);
}

.admin-login-card {
  width: 100%;
  max-width: 420px;
  background: var(--paper);
  border-radius: 24px;
  padding: 48px 36px;
  box-shadow: 0 26px 70px rgba(41,31,18,.14);
  text-align: center;
}

.admin-login-card h1 {
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: 28px;
  margin: 0 0 8px;
}

.admin-login-card p {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 28px;
}

.admin-login-card form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admin-login-card label {
  text-align: left;
}

.admin-login-card .button {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.admin-error {
  color: var(--coral-dark);
  font-size: 12px;
  margin: -8px 0 0;
}

.admin-header {
  background: var(--ink);
  color: #fff;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-header h1 {
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: 20px;
  margin: 0;
}

.admin-header nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.admin-header nav a {
  color: #c8c5bc;
  font-size: 13px;
  font-weight: 700;
  transition: color .2s;
}

.admin-header nav a:hover { color: #fff; }

.admin-header nav .logout-btn {
  background: var(--coral);
  color: #fff;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
}

.admin-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 24px;
}

.admin-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.admin-stat {
  background: var(--paper);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.admin-stat strong {
  font-family: Georgia, serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--coral);
  display: block;
}

.admin-stat span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.admin-table-wrap {
  background: var(--paper);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.admin-table-toolbar {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
}

.admin-table-toolbar h2 {
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: 20px;
  margin: 0;
}

.admin-table-toolbar form {
  display: flex;
  gap: 10px;
  flex-direction: row;
  align-items: center;
}

.admin-table-toolbar input[type="search"] {
  width: 240px;
  padding: 10px 14px;
  border: 1px solid #d8d3c7;
  border-radius: 10px;
  font-size: 13px;
}

.admin-table-toolbar .btn-csv {
  background: var(--sage);
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: background .2s;
}

.admin-table-toolbar .btn-csv:hover { background: #5d6d56; }

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.admin-table th {
  text-align: left;
  padding: 14px 20px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  user-select: none;
}

.admin-table th:hover { color: var(--coral); }

.admin-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.admin-table tr:hover { background: rgba(201,87,73,.04); }

.admin-table .actions {
  display: flex;
  gap: 8px;
}

.admin-table .actions button {
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
}

.admin-table .actions .edit-btn { color: var(--sage); border-color: var(--sage); }
.admin-table .actions .edit-btn:hover { background: var(--sage); color: #fff; }
.admin-table .actions .delete-btn { color: var(--coral); border-color: var(--coral); }
.admin-table .actions .delete-btn:hover { background: var(--coral); color: #fff; }

.admin-pagination {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.admin-pagination a,
.admin-pagination span {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition: all .2s;
}

.admin-pagination a {
  color: var(--ink);
  border: 1px solid var(--line);
}

.admin-pagination a:hover {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
}

.admin-pagination .current {
  background: var(--coral);
  color: #fff;
  border: 1px solid var(--coral);
}

.admin-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.admin-modal.open { display: flex; }

.admin-modal-card {
  background: var(--paper);
  border-radius: 20px;
  padding: 36px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 26px 70px rgba(0,0,0,.25);
}

.admin-modal-card h2 {
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 20px;
}

.admin-modal-card label {
  margin-bottom: 14px;
}

.admin-modal-card .modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.admin-modal-card .modal-actions button {
  flex: 1;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  min-height: 44px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  transition: all .2s;
}

.btn-secondary:hover { border-color: var(--ink); }
