:root {
  --ink: #11120f;
  --paper: #f1f1eb;
  --paper-2: #e7e7df;
  --white: #fbfbf7;
  --accent: #ff5938;
  --line: rgba(17, 18, 15, 0.18);
  --muted: #666760;
  --max: 1480px;
  --pad: clamp(1.25rem, 4vw, 4.5rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, input, select, textarea { font: inherit; }
::selection { background: var(--accent); color: var(--ink); }

.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 100;
  transform: translateY(-120%);
  padding: .75rem 1rem;
  background: var(--accent);
  color: var(--ink);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.2);
  transition: background .25s ease, color .25s ease, height .25s ease;
}
.site-header.scrolled {
  height: 68px;
  background: rgba(241,241,235,.94);
  color: var(--ink);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; gap: .85rem; text-transform: uppercase; letter-spacing: .12em; font-size: .68rem; font-weight: 700; }
.brand img { width: 45px; height: 38px; object-fit: contain; filter: invert(1); }
.site-header.scrolled .brand img { filter: none; }
.nav { display: flex; align-items: center; gap: clamp(1.1rem, 2vw, 2rem); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.nav a:not(.nav-cta) { position: relative; }
.nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px; background: currentColor; transition: right .2s ease; }
.nav a:hover::after { right: 0; }
.nav-cta { padding: .8rem 1rem; border: 1px solid currentColor; display: flex; gap: .7rem; transition: background .2s, color .2s; }
.nav-cta:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.menu-button { display: none; border: 0; background: transparent; color: inherit; text-transform: uppercase; letter-spacing: .08em; cursor: pointer; }

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  background: var(--ink);
  color: var(--white);
}
.hero-copy {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem var(--pad) 4rem;
}
.eyebrow { margin: 0 0 1.3rem; font-size: .72rem; font-weight: 700; line-height: 1.2; letter-spacing: .16em; text-transform: uppercase; }
.hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(3.2rem, 6vw, 7.8rem);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.065em;
}
.hero h1 em { color: var(--accent); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.hero-intro { max-width: 620px; margin: 2rem 0 0; color: rgba(255,255,255,.72); font-size: clamp(1.05rem, 1.35vw, 1.3rem); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.5rem; margin-top: 2.2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 52px;
  padding: .85rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-accent { background: var(--accent); color: var(--ink); }
.button-accent:hover { background: #ff765d; }
.button-outline { border-color: var(--ink); }
.button-outline:hover { background: var(--ink); color: var(--white); }
.button-dark { background: var(--ink); color: var(--white); }
.text-link { display: inline-flex; gap: 1.5rem; align-items: center; border-bottom: 1px solid currentColor; padding: .5rem 0; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.microcopy { margin: 1rem 0 0; color: rgba(255,255,255,.5); font-size: .72rem; }
.microcopy span { color: #72e576; margin-right: .5rem; font-size: .55rem; }
.hero-visual { position: relative; min-height: 100svh; overflow: hidden; }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,18,15,.28), transparent 35%), linear-gradient(0deg, rgba(17,18,15,.32), transparent 35%); }
.hero-visual img { height: 100%; object-fit: cover; object-position: 57% center; transform: scale(1.01); }
.hero-stamp {
  position: absolute;
  z-index: 2;
  right: clamp(1.2rem, 4vw, 4rem);
  bottom: clamp(4.5rem, 9vh, 8rem);
  width: clamp(155px, 15vw, 220px);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--ink);
  transform: rotate(-4deg);
  text-align: center;
  box-shadow: 0 25px 50px rgba(0,0,0,.2);
}
.hero-stamp span, .hero-stamp small { font-size: .62rem; text-transform: uppercase; letter-spacing: .12em; }
.hero-stamp strong { font-size: clamp(2.3rem, 4vw, 4.3rem); line-height: 1; letter-spacing: -.07em; }
.image-caption { position: absolute; z-index: 2; left: 1.5rem; bottom: 1.25rem; margin: 0; color: white; font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; }

.client-strip { max-width: var(--max); margin: auto; padding: 1.6rem var(--pad); display: grid; grid-template-columns: .5fr 3fr; border-bottom: 1px solid var(--line); }
.client-strip p { margin: 0; color: var(--muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; }
.client-strip ul { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; list-style: none; margin: 0; padding: 0; font-weight: 650; }
.client-strip li::before { content: "—"; margin-right: .65rem; color: var(--accent); }

.section { position: relative; max-width: var(--max); margin: auto; padding: clamp(6rem, 11vw, 11rem) var(--pad); }
.section-number { position: absolute; top: clamp(6rem, 11vw, 11rem); right: var(--pad); color: var(--muted); font-size: .7rem; letter-spacing: .14em; }
.section-heading { max-width: 950px; }
.section-heading h2, .pricing-intro h2, .guarantee-copy h2, .about-copy h2, .contact-heading h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5.5vw, 6.5rem);
  line-height: .96;
  font-weight: 560;
  letter-spacing: -.06em;
}
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 9rem); margin-top: clamp(4rem, 8vw, 8rem); }
.lead { margin: 0; max-width: 620px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.7rem, 3vw, 3.3rem); line-height: 1.12; }
.benefit-list { border-top: 1px solid var(--ink); }
.benefit-list article { display: grid; grid-template-columns: 3.5rem 1fr; gap: 1rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.benefit-list article > span { color: var(--accent); font-size: .72rem; }
.benefit-list h3 { margin: 0 0 .35rem; font-size: 1rem; }
.benefit-list p { margin: 0; color: var(--muted); max-width: 540px; }

.portfolio {
  background: var(--ink);
  color: var(--white);
  padding: clamp(6rem, 10vw, 10rem) var(--pad);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
}
.portfolio-title { grid-column: 1 / 8; padding-bottom: clamp(3rem, 8vw, 8rem); }
.portfolio-title h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3rem, 6vw, 7.5rem); font-weight: 400; line-height: .92; letter-spacing: -.055em; }
.shot { margin: 0; overflow: hidden; }
.shot img { height: 100%; min-height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.shot:hover img { transform: scale(1.025); }
.shot figcaption { display: flex; justify-content: space-between; padding-top: .7rem; color: rgba(255,255,255,.55); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
.shot-wide { grid-column: 1 / 9; }
.shot-wide img { aspect-ratio: 16 / 10; }
.shot-tall { grid-column: 10 / 13; align-self: end; }
.shot-tall img { aspect-ratio: 3 / 4; }
.shot-square { grid-column: 1 / 5; margin-top: clamp(3rem, 8vw, 8rem); }
.shot-square img { aspect-ratio: 1; }
.shot-landscape { grid-column: 6 / 13; margin-top: clamp(3rem, 8vw, 8rem); }
.shot-landscape img { aspect-ratio: 16 / 10; }
.portfolio-link { grid-column: 9 / 13; justify-self: end; margin-top: 2rem; display: flex; gap: 2rem; padding-bottom: .5rem; border-bottom: 1px solid var(--accent); color: var(--accent); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }

.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: clamp(4rem, 8vw, 8rem); border-top: 1px solid var(--ink); }
.timeline article { padding: 1.4rem clamp(1rem, 2vw, 2rem) 1rem 0; position: relative; }
.timeline article:not(:last-child) { border-right: 1px solid var(--line); margin-right: clamp(1rem, 2vw, 2rem); }
.timeline-mark { display: flex; align-items: center; gap: .9rem; margin-bottom: 4rem; }
.timeline-mark span { display: grid; place-items: center; width: 30px; height: 30px; background: var(--accent); font-size: .72rem; font-weight: 700; }
.timeline time { color: var(--muted); font-size: .65rem; text-transform: uppercase; letter-spacing: .11em; }
.timeline h3 { margin: 0 0 .8rem; font-size: clamp(1.3rem, 2vw, 2rem); letter-spacing: -.03em; }
.timeline p { margin: 0; max-width: 390px; color: var(--muted); }

.pricing-section { background: var(--white); padding: clamp(6rem, 10vw, 10rem) var(--pad); }
.pricing-intro { max-width: var(--max); margin: 0 auto clamp(4rem, 7vw, 7rem); display: grid; grid-template-columns: 2fr 1fr; column-gap: 3rem; align-items: end; }
.pricing-intro .eyebrow { grid-column: 1 / -1; }
.pricing-intro > p:last-child { margin: 0; color: var(--muted); max-width: 350px; justify-self: end; }
.pricing-grid { max-width: var(--max); margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.price-card { position: relative; display: flex; flex-direction: column; min-height: 620px; padding: clamp(1.5rem, 2.5vw, 2.6rem); border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.price-card.featured { background: var(--accent); }
.package-label { margin: 0; text-transform: uppercase; letter-spacing: .14em; font-size: .68rem; font-weight: 800; }
.price { display: flex; align-items: flex-start; margin: 3rem 0 1.4rem; font-size: clamp(4rem, 6vw, 6.6rem); letter-spacing: -.075em; line-height: .8; }
.price > span { font-size: 1rem; margin: .3rem .4rem 0 0; }
.price small { align-self: flex-end; margin: 0 0 .15rem .7rem; font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; }
.price-card > p:not(.package-label) { margin: 0; max-width: 330px; color: var(--muted); }
.featured > p:not(.package-label) { color: rgba(17,18,15,.72); }
.price-card ul { list-style: none; padding: 0; margin: 2.2rem 0 2.5rem; border-top: 1px solid rgba(17,18,15,.18); }
.price-card li { padding: .75rem 0; border-bottom: 1px solid rgba(17,18,15,.15); font-size: .88rem; }
.price-card li::before { content: "✓"; margin-right: .7rem; font-weight: 800; }
.price-card .button { margin-top: auto; }
.recommended { position: absolute; top: 0; right: 0; transform: translateY(-100%); padding: .55rem .75rem; background: var(--ink); color: var(--white); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; }
.addons { max-width: var(--max); margin: clamp(3rem, 6vw, 6rem) auto 0; display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; }
.addons h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 3vw, 3.4rem); font-weight: 400; }
.addons ul { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--ink); }
.addons li { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.addons strong { font-size: .82rem; }

.guarantee { display: grid; grid-template-columns: .8fr 1.2fr; background: var(--accent); }
.guarantee-time { min-height: 550px; display: flex; flex-direction: column; justify-content: center; padding: var(--pad); border-right: 1px solid rgba(17,18,15,.3); }
.guarantee-time span, .guarantee-time small { text-transform: uppercase; letter-spacing: .14em; font-size: .7rem; }
.guarantee-time strong { margin-left: -.06em; font-size: clamp(6rem, 13vw, 13rem); line-height: .8; letter-spacing: -.09em; }
.guarantee-copy { padding: clamp(4rem, 8vw, 8rem) var(--pad); align-self: center; }
.guarantee-copy h2 { max-width: 850px; font-size: clamp(2.4rem, 4.8vw, 5.5rem); }
.guarantee-copy > p:not(.eyebrow) { max-width: 690px; margin: 2rem 0 1rem; font-size: 1.08rem; }
.guarantee-copy > small { display: block; max-width: 680px; opacity: .65; }

.area-grid { margin-top: clamp(4rem, 7vw, 7rem); display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.area-map { position: relative; min-height: 440px; border: 1px solid var(--ink); overflow: hidden; background: linear-gradient(135deg, transparent 0 38%, rgba(17,18,15,.035) 38% 62%, transparent 62%); }
.map-line { position: absolute; top: 49%; left: 8%; width: 83%; height: 2px; background: var(--accent); transform: rotate(-13deg); transform-origin: left; }
.place { position: absolute; padding: .45rem .6rem; background: var(--paper); border: 1px solid var(--ink); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; }
.place::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: .45rem; background: var(--accent); }
.place-1 { left: 11%; top: 19%; }
.place-2 { left: 36%; top: 47%; background: var(--ink); color: var(--white); }
.place-3 { right: 9%; bottom: 16%; }
.place-4 { left: 13%; bottom: 16%; }
.place-5 { left: 3%; top: 58%; }
.area-copy p { margin: 0 0 2rem; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.35rem, 2.2vw, 2.3rem); line-height: 1.2; }

.about { display: grid; grid-template-columns: 1fr 1fr; background: var(--ink); color: var(--white); }
.about-image { min-height: 720px; }
.about-image img { height: 100%; object-fit: cover; }
.about-copy { align-self: center; padding: clamp(4rem, 8vw, 8rem) var(--pad); }
.about-copy h2 { font-size: clamp(2.4rem, 4.5vw, 5.2rem); }
.about-copy > p:not(.eyebrow) { max-width: 650px; margin: 2rem 0; color: rgba(255,255,255,.67); font-size: 1.08rem; }
.about-points { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.about-points span { padding: .55rem .7rem; border: 1px solid rgba(255,255,255,.3); font-size: .66rem; text-transform: uppercase; letter-spacing: .09em; }

.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 10rem); }
.faq .section-number { left: var(--pad); right: auto; top: 5.5rem; }
.faq-list { border-top: 1px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.5rem 0; cursor: pointer; font-size: 1.05rem; font-weight: 650; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { font-size: 1.4rem; transition: transform .2s; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { margin: -.4rem 3rem 1.5rem 0; color: var(--muted); max-width: 750px; }

.contact { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 9rem); padding: clamp(6rem, 10vw, 10rem) var(--pad); background: #dce1d7; }
.contact-heading h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.contact-heading > p:not(.eyebrow) { max-width: 560px; margin: 2rem 0; color: var(--muted); }
.direct-contact { border-top: 1px solid var(--ink); }
.direct-contact a { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.direct-contact span { color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.direct-contact strong { font-size: .82rem; }
.inquiry-form { align-self: start; padding: clamp(1.5rem, 3vw, 3rem); background: var(--white); border: 1px solid var(--ink); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.inquiry-form label:not(.consent) { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1rem; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea { width: 100%; border: 0; border-bottom: 1px solid var(--ink); border-radius: 0; background: transparent; padding: .75rem 0; outline: 0; color: var(--ink); text-transform: none; letter-spacing: normal; }
.inquiry-form textarea { resize: vertical; }
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { border-color: var(--accent); box-shadow: 0 1px 0 var(--accent); }
.consent { display: grid; grid-template-columns: 18px 1fr; gap: .65rem; margin: 1.4rem 0; color: var(--muted); font-size: .72rem; }
.consent input { width: 16px; height: 16px; accent-color: var(--accent); }
.consent a { text-decoration: underline; }
.submit-button { width: 100%; }
.form-note { margin: .8rem 0 0; color: var(--muted); font-size: .7rem; }
.form-note.success { color: #1a7027; font-weight: 700; }
.ghl-form-shell { align-self: start; overflow: hidden; background: var(--white); border: 1px solid var(--ink); }
.ghl-form-shell iframe { display: block; width: 100%; min-height: 1150px; border: 0; background: var(--white); }

.footer { padding: 4rem var(--pad) 2rem; background: var(--ink); color: var(--white); display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: end; }
.footer-brand img { width: 120px; filter: invert(1); margin-bottom: 1.5rem; }
.footer-brand p { margin: 0; color: rgba(255,255,255,.55); }
.footer-links { display: flex; gap: 1.5rem; font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; }
.copyright { grid-column: 1 / -1; padding-top: 2rem; margin: 1rem 0 0; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.38); font-size: .68rem; }
.whatsapp { position: fixed; z-index: 40; right: 1rem; bottom: 1rem; display: none; padding: .85rem 1rem; background: #2ad26f; color: #09150d; font-size: .72rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; box-shadow: 0 10px 30px rgba(0,0,0,.22); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1000px) {
  .site-header {
    height: 68px;
    background: rgba(241,241,235,.97);
    color: var(--ink);
    border-color: var(--line);
    backdrop-filter: blur(14px);
  }
  .site-header .brand img { filter: none; }
  .menu-button { display: flex; align-items: center; gap: .65rem; }
  .nav { position: fixed; inset: 68px 0 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 3rem var(--pad); background: var(--ink); color: var(--white); }
  .nav.open { display: flex; }
  .nav a { padding: 1.1rem 0; border-bottom: 1px solid rgba(255,255,255,.18); font-size: 1.1rem; }
  .nav-cta { margin-top: 1.5rem; padding: 1rem !important; border: 1px solid var(--white) !important; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 75svh; padding-top: 8rem; }
  .hero-visual { min-height: 65svh; }
  .client-strip { grid-template-columns: 1fr; gap: 1rem; }
  .problem-grid, .guarantee, .about, .contact, .faq { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; border-bottom: 0; }
  .price-card { min-height: 0; }
  .price-card + .price-card { margin-top: 2rem; border-top: 1px solid var(--ink); }
  .price-card .button { margin-top: 1rem; }
  .recommended { transform: none; top: 1rem; }
  .addons { grid-template-columns: 1fr; gap: 2rem; }
  .guarantee-time { min-height: 340px; border-right: 0; border-bottom: 1px solid rgba(17,18,15,.3); }
  .area-grid { grid-template-columns: 1fr; }
  .about-image { min-height: 65svh; }
  .faq .section-number { left: auto; right: var(--pad); top: clamp(6rem, 11vw, 11rem); }
}

@media (max-width: 700px) {
  .brand span { display: none; }
  .hero-copy { min-height: 78svh; }
  .hero h1 { font-size: clamp(3.1rem, 15vw, 5rem); }
  .hero-visual { min-height: 0; }
  .hero-visual img {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
  }
  .hero-stamp { width: 124px; right: .85rem; bottom: 2.75rem; }
  .client-strip ul { grid-template-columns: 1fr 1fr; gap: .6rem; font-size: .83rem; }
  .section-number { display: none; }
  .problem-grid { gap: 3rem; }
  .portfolio { grid-template-columns: 1fr; }
  .portfolio-title, .shot-wide, .shot-tall, .shot-square, .shot-landscape, .portfolio-link { grid-column: 1; margin-top: 0; }
  .portfolio-title { padding-bottom: 2rem; }
  .shot + .shot { margin-top: 2.5rem; }
  .shot img {
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
  }
  .portfolio-link { justify-self: start; }
  .timeline { grid-template-columns: 1fr; }
  .timeline article:not(:last-child) { border-right: 0; border-bottom: 1px solid var(--line); margin: 0; }
  .timeline-mark { margin-bottom: 2rem; }
  .pricing-intro { grid-template-columns: 1fr; }
  .pricing-intro > p:last-child { justify-self: start; margin-top: 1.5rem; }
  .price-card { padding: 1.4rem; }
  .guarantee-time strong { font-size: clamp(6rem, 27vw, 9rem); }
  .area-map { min-height: 350px; }
  .about-image { min-height: 0; }
  .about-image img {
    height: auto;
    object-fit: contain;
    object-position: center;
  }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .direct-contact a { flex-direction: column; gap: .3rem; }
  .footer { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
  .copyright { grid-column: 1; }
  .whatsapp { display: block; }
}

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