:root {
  --ink: #181613;
  --muted: #6d665d;
  --cream: #f6f0e7;
  --paper: #fffdf9;
  --sand: #e7d4bb;
  --copper: #9b5c35;
  --green: #1f7a4f;
  --line: rgba(24, 22, 19, 0.14);
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
main { overflow: hidden; }

.announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 7px 24px;
  background: var(--ink);
  color: #f4eee5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.announcement-dot { width: 3px; height: 3px; border-radius: 50%; background: #c99a72; }

.site-header {
  position: sticky;
  z-index: 15;
  top: 0;
  height: 86px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, .88);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; width: fit-content; }
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, #b9784e, #774127);
  box-shadow: 0 8px 24px rgba(119, 65, 39, .2);
  color: white;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.05em;
}
.brand strong, .brand small { display: block; }
.brand strong { font-family: var(--display); font-size: 25px; font-weight: 700; letter-spacing: -.025em; line-height: .85; }
.brand small { margin-top: 5px; color: var(--muted); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
nav { display: flex; gap: 34px; }
nav a { position: relative; font-size: 13px; font-weight: 700; }
nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px; background: var(--ink); transition: right .25s ease; }
nav a:hover::after, nav a:focus-visible::after { right: 0; }
.header-cta { justify-self: end; }

.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid rgba(155, 92, 53, .35); outline-offset: 3px; }
.button-dark { background: var(--ink); color: white; }
.button-dark:hover { background: var(--copper); }
.button-light { background: white; color: var(--ink); }
.button-light:hover { background: var(--cream); }
.button-outline { width: 100%; border-color: var(--ink); background: transparent; color: var(--ink); }
.button-outline:hover { background: var(--ink); color: white; }

.hero {
  max-width: 1440px;
  min-height: 690px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .84fr 1.16fr;
}
.hero-copy { padding: 8vw 6vw 6vw 5vw; display: flex; flex-direction: column; justify-content: center; }
.section-kicker { margin: 0 0 22px; display: flex; align-items: center; gap: 10px; color: var(--copper); font-size: 10px; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }
.section-kicker::before { content: ""; width: 24px; height: 1px; background: currentColor; }
h1, h2 { margin: 0; font-family: var(--display); font-weight: 600; letter-spacing: -.045em; line-height: .91; text-wrap: balance; }
h1 { max-width: 670px; font-size: clamp(58px, 5.4vw, 88px); }
h2 { font-size: clamp(42px, 4.5vw, 68px); }
h1 em { color: var(--copper); font-weight: 500; }
.hero-description { max-width: 590px; margin: 30px 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 30px; }
.text-link { padding: 8px 0; border-bottom: 1px solid var(--ink); font-size: 12px; font-weight: 800; }
.text-link span { margin-left: 12px; }
.text-link.strong { font-size: 13px; }
.hero-proof { margin-top: 56px; padding: 22px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: 18px; background: rgba(246,240,231,.6); }
.hero-proof div { padding-right: 18px; }
.hero-proof div + div { padding-left: 18px; border-left: 1px solid var(--line); }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { font-family: var(--display); font-size: 21px; font-weight: 700; }
.hero-proof span { margin-top: 4px; color: var(--muted); font-size: 10px; }
.hero-media { position: relative; min-height: 650px; background: #dcae7b; overflow: hidden; border-radius: 0 0 0 34px; }
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 100px rgba(55, 30, 13, .1); pointer-events: none; }
.hero-price { position: absolute; z-index: 1; top: 34px; right: 34px; width: 114px; height: 114px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 50%; background: var(--ink); color: white; transform: rotate(6deg); }
.hero-price span { font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.hero-price strong { margin-top: 2px; font-family: var(--display); font-size: 29px; }
.hero-caption { position: absolute; z-index: 1; left: 26px; bottom: 24px; padding: 13px 17px; display: flex; align-items: center; gap: 9px; background: rgba(255,255,255,.9); backdrop-filter: blur(8px); font-size: 10px; font-weight: 700; letter-spacing: .04em; }
.pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(31,122,79,.12); }

.trust-strip { min-height: 82px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-strip span { padding: 0 4vw; display: flex; align-items: center; gap: 16px; font-family: var(--display); font-size: 18px; font-weight: 600; }
.trust-strip span + span { border-left: 1px solid var(--line); }
.trust-strip b { color: var(--copper); font: 700 9px Arial, sans-serif; letter-spacing: .08em; }

.section { padding: 120px max(5vw, calc((100vw - 1300px) / 2)); }
.section-heading { display: grid; grid-template-columns: 1.5fr .65fr; align-items: end; gap: 80px; margin-bottom: 60px; }
.section-heading h2 { max-width: 820px; }
.section-heading > p { margin: 0 0 6px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.mobile-scroll-hint { display: none; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { position: relative; min-height: 540px; padding: 34px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(160deg, #fffefa, #faf5ee); overflow: hidden; box-shadow: 0 16px 45px rgba(79, 50, 25, .045); }
.price-card.featured { background: linear-gradient(145deg, #24211d, #11100e); color: white; border-color: var(--ink); transform: translateY(-12px); box-shadow: 0 28px 70px rgba(24, 22, 19, .18); }
.popular-badge { position: absolute; top: 0; right: 0; padding: 10px 15px; border-radius: 0 0 0 14px; background: var(--copper); color: white; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.card-index { margin-bottom: 48px; color: #a49b90; font: 700 10px Arial, sans-serif; letter-spacing: .12em; }
.card-eyebrow { margin: 0 0 9px; color: var(--copper); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.price-card.featured .card-eyebrow { color: #d8a57e; }
.price-card h3 { margin: 0; font-family: var(--display); font-size: 34px; font-weight: 600; line-height: 1; }
.price { margin: 22px 0 18px; display: flex; align-items: baseline; }
.price small { margin-right: 5px; font-size: 13px; }
.price strong { font-family: var(--display); font-size: 55px; font-weight: 600; letter-spacing: -.04em; }
.price span { margin-left: 7px; color: #91877b; font-size: 10px; }
.card-description { min-height: 48px; margin: 0 0 24px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.featured .card-description { color: #bfb8af; }
.price-card ul { margin: 0 0 30px; padding: 22px 0 0; border-top: 1px solid var(--line); list-style: none; }
.featured ul { border-color: rgba(255,255,255,.17); }
.price-card li { display: flex; gap: 10px; margin: 10px 0; font-size: 12px; }
.price-card li span { color: var(--copper); }
.price-card .button { margin-top: auto; width: 100%; }
.card-whatsapp { margin-top: 15px; text-align: center; text-decoration: underline; text-underline-offset: 3px; font-size: 10px; opacity: .72; }
.availability-note { margin: 26px 0 0; color: var(--muted); text-align: center; font-size: 11px; }
.availability-note span { color: var(--green); margin-right: 7px; }

.craft-section { display: grid; grid-template-columns: 1fr 1fr; padding-top: 80px; padding-bottom: 80px; background: var(--cream); }
.craft-media { position: relative; min-height: 720px; overflow: hidden; border-radius: 28px; box-shadow: 0 28px 80px rgba(70, 43, 23, .15); }
.craft-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.craft-stamp { position: absolute; right: 24px; bottom: 24px; width: 130px; height: 130px; display: grid; place-content: center; text-align: center; border-radius: 50%; background: var(--paper); transform: rotate(-7deg); }
.craft-stamp strong { font-family: var(--display); font-size: 30px; }
.craft-stamp span { font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.craft-copy { padding: 7vw 5vw 7vw 8vw; align-self: center; }
.craft-copy .lead { margin: 30px 0 40px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.feature-list { margin-bottom: 36px; border-top: 1px solid var(--line); }
.feature-list > div { padding: 22px 0; display: grid; grid-template-columns: 45px 1fr; border-bottom: 1px solid var(--line); }
.feature-list > div > span { color: var(--copper); font-size: 9px; font-weight: 800; }
.feature-list h3 { margin: 0 0 5px; font-family: var(--display); font-size: 23px; font-weight: 600; }
.feature-list p { margin: 0; color: var(--muted); font-size: 12px; }

.process { background: var(--ink); color: white; }
.process-title { max-width: 650px; margin-bottom: 70px; }
.process-title .section-kicker { color: #d7a27b; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.2); }
.process-grid article { min-height: 240px; padding: 30px 50px 0 0; }
.process-grid article + article { padding-left: 50px; border-left: 1px solid rgba(255,255,255,.2); }
.process-grid span { color: #d7a27b; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.process-grid h3 { margin: 42px 0 12px; font-family: var(--display); font-size: 34px; font-weight: 600; }
.process-grid p { max-width: 280px; margin: 0; color: #b5aea5; font-size: 13px; line-height: 1.7; }

.order-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 10vw; align-items: start; background: #efe1d1; }
.order-intro { position: sticky; top: 40px; }
.order-intro h2 { max-width: 560px; }
.order-intro > p:not(.section-kicker) { max-width: 500px; margin: 30px 0; color: var(--muted); font-size: 15px; line-height: 1.8; }
.order-contact { margin-top: 45px; padding-top: 25px; border-top: 1px solid var(--line); }
.order-contact span, .order-contact strong { display: block; }
.order-contact span { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.order-contact strong { margin-top: 6px; font-family: var(--display); font-size: 30px; font-weight: 600; }
.order-builder { padding: 44px; border: 1px solid rgba(255,255,255,.7); border-radius: 28px; background: rgba(255,253,249,.93); box-shadow: 0 25px 80px rgba(79, 50, 25, .1); }
fieldset { margin: 0 0 28px; padding: 0; border: 0; }
legend, .field > span { margin-bottom: 13px; display: block; font-size: 11px; font-weight: 800; letter-spacing: .05em; }
.field > span small { color: var(--muted); font-weight: 400; }
.option-list { display: grid; gap: 9px; }
.option-list label { min-height: 66px; padding: 0 18px; display: grid; grid-template-columns: 1fr auto; align-items: center; border: 1px solid var(--line); border-radius: 14px; cursor: pointer; transition: border .2s, background .2s, transform .2s; }
.option-list label.selected { border-color: var(--ink); background: var(--cream); }
.option-list input { position: absolute; opacity: 0; }
.option-list label > span { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.option-list b { font-family: var(--display); font-size: 21px; font-weight: 600; }
.option-list small { font-size: 11px; font-weight: 800; }
.option-list i { width: 14px; height: 14px; margin-left: 18px; border: 1px solid #978e83; border-radius: 50%; box-shadow: inset 0 0 0 3px var(--paper); }
.option-list label.selected i { background: var(--ink); }
.field { display: block; margin: 26px 0; }
.field input, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 14px; background: white; padding: 16px; color: var(--ink); font-size: 13px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #a69e94; }
.order-total { margin-top: 30px; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); }
.order-total span { color: var(--muted); font-size: 11px; }
.order-total strong { font-family: var(--display); font-size: 38px; font-weight: 600; }
.button-whatsapp { width: 100%; background: var(--green); color: white; }
.button-whatsapp:hover { background: #175f3d; }
.whatsapp-symbol { width: 22px; height: 22px; display: grid; place-items: center; border: 1px solid white; border-radius: 50%; }
.privacy-note { margin: 12px 0 0; color: var(--muted); text-align: center; font-size: 9px; }

.specs { display: grid; grid-template-columns: .65fr 1.35fr; gap: 8vw; }
.specs dl { margin: 0; border-top: 1px solid var(--line); }
.specs dl div { padding: 21px 0; display: grid; grid-template-columns: .65fr 1.35fr; gap: 20px; border-bottom: 1px solid var(--line); }
.specs dt { font-size: 11px; font-weight: 800; }
.specs dd { margin: 0; color: var(--muted); font-size: 12px; }

.faq { display: grid; grid-template-columns: .65fr 1.35fr; gap: 8vw; padding-top: 60px; }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { padding: 25px 0; display: flex; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-family: var(--display); font-size: 24px; font-weight: 600; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { font-family: Arial, sans-serif; font-weight: 300; transition: transform .2s; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { max-width: 680px; margin: -5px 45px 26px 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.final-cta { margin: 20px; padding: 7vw; display: flex; align-items: end; justify-content: space-between; gap: 40px; border-radius: 32px; background: linear-gradient(135deg, #a7633c, #784226); color: white; box-shadow: 0 30px 90px rgba(86, 45, 22, .16); }
.final-cta .section-kicker { color: #f3d6c2; }
.final-cta h2 { max-width: 800px; }
.final-cta p:not(.section-kicker) { margin: 22px 0 0; color: #f3d6c2; }
.final-cta .button { flex: 0 0 auto; }

footer { max-width: 1340px; margin: 0 auto; padding: 70px 30px 95px; display: grid; grid-template-columns: 1fr 1fr; gap: 35px; align-items: end; }
.footer-brand { grid-row: span 2; }
footer > p { margin: 0; color: var(--muted); text-align: right; font-size: 12px; }
footer > div { display: flex; justify-content: flex-end; gap: 24px; font-size: 11px; font-weight: 700; }
footer > small { grid-column: 1 / -1; padding-top: 30px; border-top: 1px solid var(--line); color: var(--muted); font-size: 9px; }
.mobile-order { display: none; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding: 80px 7vw 65px; }
  .hero-media { min-height: 620px; }
  .section { padding: 95px 6vw; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .craft-copy { padding-left: 6vw; }
  .order-section { gap: 5vw; }
}

@media (max-width: 800px) {
  body { padding-bottom: 84px; }
  .announcement { min-height: 30px; font-size: 8px; gap: 8px; }
  .announcement span:nth-child(3) { display: none; }
  .site-header { height: 72px; padding: 0 18px; box-shadow: 0 8px 30px rgba(40,30,20,.06); }
  .header-cta { display: none; }
  .brand-mark { width: 42px; height: 42px; }
  .brand strong { font-size: 22px; }
  .brand small { display: none; }
  .hero-copy { padding: 56px 22px 40px; }
  h1 { font-size: clamp(52px, 16vw, 72px); line-height: .88; }
  h2 { font-size: clamp(43px, 13vw, 60px); line-height: .92; }
  .hero-description { margin: 24px 0; font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 14px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { align-self: center; }
  .hero-proof { margin-top: 38px; padding: 18px 10px; border-radius: 16px; text-align: center; }
  .hero-proof span { display: none; }
  .hero-proof strong { font-size: 15px; }
  .hero-media { min-height: 470px; margin: 0 12px 18px; border-radius: 26px; }
  .hero-media img { object-position: 61% center; }
  .hero-price { top: 20px; right: 20px; width: 92px; height: 92px; }
  .hero-price strong { font-size: 21px; }
  .trust-strip { min-height: 66px; display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .trust-strip::-webkit-scrollbar { display: none; }
  .trust-strip span { min-height: 66px; padding: 0 23px; flex: 0 0 auto; border-bottom: 0; scroll-snap-align: start; font-size: 15px; }
  .trust-strip span:nth-child(3) { border-left: 1px solid var(--line); }
  .section { padding: 78px 22px; }
  .section-heading { margin-bottom: 42px; }
  .mobile-scroll-hint { margin: -22px 0 18px; display: flex; align-items: center; gap: 10px; color: var(--copper); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
  .pricing-grid { display: flex; gap: 14px; margin-right: -22px; padding: 12px 22px 36px 0; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .pricing-grid::-webkit-scrollbar { display: none; }
  .price-card, .price-card.featured { min-height: 510px; padding: 28px; flex: 0 0 calc(100vw - 58px); transform: none; scroll-snap-align: center; }
  .card-index { margin-bottom: 34px; }
  .craft-section { grid-template-columns: 1fr; padding: 22px; }
  .craft-media { min-height: 540px; border-radius: 24px; }
  .craft-copy { padding: 70px 0 30px; }
  .process-title { margin-bottom: 45px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article, .process-grid article + article { min-height: 190px; padding: 25px 0; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .process-grid h3 { margin-top: 28px; }
  .order-section { grid-template-columns: 1fr; }
  .order-intro { position: static; }
  .order-builder { padding: 24px 18px; border-radius: 22px; }
  .option-list label > span { align-items: flex-start; flex-direction: column; gap: 2px; }
  .specs, .faq { grid-template-columns: 1fr; gap: 45px; }
  .specs dl div { grid-template-columns: 1fr; gap: 6px; }
  .final-cta { margin: 12px; padding: 68px 24px; border-radius: 26px; align-items: stretch; flex-direction: column; }
  footer { padding: 60px 22px 35px; grid-template-columns: 1fr; align-items: start; }
  .footer-brand { grid-row: auto; }
  footer > p { text-align: left; }
  footer > div { justify-content: flex-start; flex-wrap: wrap; }
  footer > small { grid-column: auto; }
  .mobile-order { position: fixed; z-index: 20; left: 10px; right: 10px; bottom: max(10px, env(safe-area-inset-bottom)); height: 60px; padding: 0 21px; display: flex; align-items: center; justify-content: space-between; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(25,112,72,.96); backdrop-filter: blur(16px); color: white; box-shadow: 0 14px 40px rgba(0,0,0,.28); font-size: 12px; }
  .mobile-order span { font-weight: 800; }
  .mobile-order strong { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
