/* ============================================================
   Will Schilderwerken — soft-pastel design system
   Palette: Blush #E8C4C0 · Sky #A7C7E7 · Mint #B5D8C4 · Off-white #FAF7F2
   ============================================================ */

:root {
  --blush: #E8C4C0;
  --sky: #A7C7E7;
  --mint: #B5D8C4;
  --offwhite: #FAF7F2;

  /* soft section tints */
  --mint-tint: #EAF4EE;
  --sky-tint: #EBF1F8;
  --blush-tint: #F8EAE8;

  /* ink + lines */
  --ink: #33424C;
  --ink-soft: #5E6C75;
  --line: #ECE4D8;
  --card: #FFFFFF;

  --accent: #4E7C92;          /* deep sky, for links/icons */
  --accent-deep: #3C6072;

  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(51, 66, 76, 0.06);
  --shadow: 0 12px 34px rgba(51, 66, 76, 0.10);
  --shadow-lg: 0 26px 60px rgba(51, 66, 76, 0.14);

  --maxw: 1120px;
  --header-h: 76px;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--offwhite);
  overflow-x: hidden;
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.1; margin: 0; color: var(--ink); }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- accessibility ---------- */
.skip-link {
  position: absolute; left: 16px; top: -60px;
  background: var(--ink); color: #fff; padding: 10px 16px;
  border-radius: 10px; z-index: 200; transition: top .2s ease;
}
.skip-link:focus { top: 14px; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 6px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans); font-weight: 600; font-size: .98rem;
  padding: .85rem 1.4rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: #28333b; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(51,66,76,.22); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); background: rgba(255,255,255,.5); }
.btn-block { width: 100%; }
.btn-whatsapp { background: #1FA855; color: #fff; box-shadow: var(--shadow-sm); }
.btn-whatsapp:hover { background: #198F48; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-whatsapp .wa-ico { flex: none; }

/* quick-reply reassurance under a WhatsApp CTA */
.cta-note {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--ink-soft); font-size: .92rem; font-weight: 500; margin: 0 0 1.7rem;
}
.cta-note::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%; background: #1FA855; flex: none;
  box-shadow: 0 0 0 4px rgba(31,168,85,.18);
}
.contact-wa { margin-top: 1.4rem; }
.contact-wa + .cta-note { margin: .7rem 0 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 242, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(236, 228, 216, 0.7);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-weight: 600; flex: 0 0 auto; }
.brand-mark { display: grid; place-items: center; }
.brand-text { font-family: var(--serif); font-size: 1.22rem; letter-spacing: .2px; white-space: nowrap; }
.brand-text strong { font-weight: 700; }

.nav { display: flex; align-items: center; gap: .35rem; }
.nav > a {
  padding: .5rem .7rem; border-radius: 999px; font-weight: 500; color: var(--ink-soft);
  white-space: nowrap; transition: color .15s ease, background .15s ease;
}
.nav > a:hover { color: var(--ink); background: rgba(167, 199, 231, 0.18); }
.nav > a.is-current { color: var(--ink); background: rgba(167, 199, 231, 0.28); }
.nav-cta { color: #fff !important; margin-left: .35rem; }
.nav-cta:hover { background: #198F48 !important; }

.header-actions { display: flex; align-items: center; gap: .75rem; }
.lang-switch {
  display: inline-flex; background: rgba(255,255,255,.7); border: 1px solid var(--line);
  border-radius: 999px; padding: 3px; box-shadow: var(--shadow-sm);
}
.lang-switch button {
  border: 0; background: transparent; cursor: pointer; font-family: var(--sans);
  font-weight: 600; font-size: .82rem; color: var(--ink-soft);
  padding: .32rem .6rem; border-radius: 999px; transition: all .15s ease; min-width: 38px;
}
.lang-switch button.is-active { background: var(--ink); color: #fff; }

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

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem); }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; position: relative; z-index: 2; }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; font-weight: 700; color: var(--accent); margin: 0 0 .75rem; }
.hero h1 { font-size: clamp(2.3rem, 5.4vw, 3.9rem); letter-spacing: -.5px; margin-bottom: 1.1rem; }
.hero h1 .hl {
  background-image: linear-gradient(transparent 62%, var(--mint) 62%);
  padding: 0 .08em; border-radius: 2px;
}
.lead { font-size: 1.2rem; color: var(--ink-soft); max-width: 38ch; margin-bottom: 1.7rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: .9rem; }
.hero-points { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; }
.hero-points li { position: relative; padding-left: 1.5rem; color: var(--ink-soft); font-weight: 500; font-size: .96rem; }
.hero-points li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: 12px; height: 7px;
  border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.hero-art { position: relative; }
.art-svg { width: 100%; height: auto; filter: drop-shadow(0 28px 50px rgba(51,66,76,.16)); }
.art-svg .swatch { transform-box: fill-box; transform-origin: center; animation: floaty 6s ease-in-out infinite; }
.art-svg .swatch:nth-child(2) { animation-delay: .8s; }
.art-svg .swatch:nth-child(3) { animation-delay: 1.6s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* decorative blurred blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(46px); opacity: .55; z-index: 1; }
.blob-1 { width: 360px; height: 360px; background: var(--sky); top: -90px; right: -60px; }
.blob-2 { width: 320px; height: 320px; background: var(--blush); bottom: -120px; left: -80px; opacity: .5; }
.blob-3 { width: 240px; height: 240px; background: var(--mint); top: 40%; left: 42%; opacity: .4; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.45); }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 1.4rem 24px; text-align: center; }
.trust-item { display: flex; flex-direction: column; gap: .15rem; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-num { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--ink); }
.trust-label { font-size: .88rem; color: var(--ink-soft); }

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; scroll-margin-top: calc(var(--header-h) + 8px); }
.section-tint { background: var(--mint-tint); }
.section-head { max-width: 640px; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin: .4rem 0 .7rem; letter-spacing: -.4px; }
.section-sub { color: var(--ink-soft); font-size: 1.08rem; margin: 0; }

/* ---------- services ---------- */
.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.service-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-icon { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; margin-bottom: 1.1rem; color: var(--accent-deep); }
.icon-mint { background: var(--mint-tint); }
.icon-sky { background: var(--sky-tint); }
.service-card h3 { font-size: 1.5rem; margin-bottom: .6rem; }
.service-card > p { color: var(--ink-soft); }
.ticks { margin-top: 1.1rem; display: grid; gap: .55rem; }
.ticks li { position: relative; padding-left: 1.7rem; color: var(--ink); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .35em; width: 11px; height: 6px;
  border-left: 2.5px solid var(--mint); border-bottom: 2.5px solid var(--mint);
  transform: rotate(-45deg);
}

/* ---------- process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; counter-reset: step; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.4rem; box-shadow: var(--shadow-sm); position: relative; }
.step-num {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: var(--sky-tint); color: var(--accent-deep); font-family: var(--serif);
  font-weight: 700; font-size: 1.2rem; margin-bottom: .9rem;
}
.step h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.step p { color: var(--ink-soft); font-size: .97rem; margin: 0; }

/* ---------- about ---------- */
.about-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-photo {
  position: relative; aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden;
  display: grid; place-items: center; max-width: 360px;
  background: linear-gradient(140deg, var(--sky-tint), var(--blush-tint));
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.about-photo svg { width: 60%; height: auto; }
.about-badge {
  position: absolute; bottom: 14px; right: 14px; background: rgba(255,255,255,.9);
  color: var(--ink-soft); font-size: .8rem; font-weight: 600; padding: .35rem .7rem;
  border-radius: 999px; box-shadow: var(--shadow-sm);
}
.about-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.5rem); margin: .4rem 0 1rem; }
.about-copy > p { color: var(--ink-soft); }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 1.2rem; margin-top: 1.3rem; }
.feature-list li { position: relative; padding-left: 1.7rem; font-weight: 500; }
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: .3em; width: 11px; height: 6px;
  border-left: 2.5px solid var(--blush); border-bottom: 2.5px solid var(--blush);
  transform: rotate(-45deg);
}

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.gtile {
  position: relative; margin: 0; aspect-ratio: 4 / 3; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid rgba(255,255,255,.5);
  display: flex; align-items: flex-end; transition: transform .22s ease, box-shadow .22s ease;
}
.gtile:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gtile figcaption {
  position: relative; z-index: 2; margin: 0; padding: .7rem .9rem; color: #fff; font-weight: 600;
  text-shadow: 0 1px 6px rgba(40,50,60,.45); font-size: 1.02rem;
}
.gtile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 45%, rgba(40,50,60,.32)); z-index: 1; }
.g-a { background: linear-gradient(135deg, var(--blush), var(--sky)); }
.g-b { background: linear-gradient(135deg, var(--sky), var(--mint)); }
.g-c { background: linear-gradient(135deg, var(--mint), var(--blush)); }
.g-d { background: linear-gradient(135deg, #C9DCEA, var(--blush)); }
.g-e { background: linear-gradient(135deg, var(--blush), var(--mint)); }
.g-f { background: linear-gradient(135deg, var(--mint), var(--sky)); }

/* ---------- testimonials ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.quote { margin: 0; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.quote p { font-family: var(--serif); font-size: 1.12rem; line-height: 1.5; color: var(--ink); }
.quote footer { display: flex; flex-direction: column; gap: .15rem; margin-top: 1rem; }
.stars { color: #E6B54A; letter-spacing: 2px; }
.quote cite { font-style: normal; color: var(--ink-soft); font-size: .92rem; }

/* ---------- contact ---------- */
.section-cta { background: linear-gradient(160deg, var(--sky-tint), var(--blush-tint)); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.contact-copy h2 { font-size: clamp(1.9rem, 3.8vw, 2.6rem); margin: .4rem 0 1rem; }
.contact-copy > p { color: var(--ink-soft); font-size: 1.08rem; }
.contact-list { display: grid; gap: 1rem; margin-top: 1.6rem; }
.contact-list li { display: flex; align-items: center; gap: .9rem; font-weight: 500; }
.contact-list a:hover { color: var(--accent-deep); text-decoration: underline; }
.ci { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: #fff; color: var(--accent-deep); box-shadow: var(--shadow-sm); flex: none; }

.contact-form { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow); }
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { font-weight: 600; font-size: .9rem; }
.field input, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink); background: var(--offwhite);
  border: 1.5px solid var(--line); border-radius: 12px; padding: .8rem .9rem; width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--sky); background: #fff; box-shadow: 0 0 0 4px rgba(167,199,231,.3); }
.field textarea { resize: vertical; min-height: 110px; }
.form-note { margin: .9rem 0 0; font-size: .86rem; color: var(--ink-soft); text-align: center; }
.form-note.is-error { color: #B5483C; font-weight: 600; }
.form-note.is-ok { color: var(--accent-deep); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: #D7DDE1; padding: 3rem 0 1.6rem; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2rem; align-items: start; }
.site-footer .brand-text { color: #fff; font-size: 1.3rem; }
.footer-brand p { color: #AEB7BE; margin: .7rem 0 0; max-width: 34ch; }
.footer-links { display: grid; gap: .5rem; }
.footer-links a { color: #C8CFD4; }
.footer-links a:hover { color: #fff; }
.footer-meta { display: grid; gap: .4rem; color: #AEB7BE; font-size: .92rem; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.12);
  color: #97A1A8; font-size: .86rem;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--offwhite); border-bottom: 1px solid var(--line); padding: .6rem 24px 1.2rem;
    gap: .15rem; box-shadow: var(--shadow); transform: translateY(-130%); transition: transform .3s ease;
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
  }
  .nav.open { transform: translateY(0); }
  .nav > a { padding: .8rem .6rem; border-radius: 12px; white-space: normal; }
  .nav-cta { text-align: center; margin: .5rem 0 0; }
}

@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 440px; margin: 0 auto; }
  .lead { max-width: none; }
  .about-inner { grid-template-columns: 1fr; }
  .about-art { justify-self: center; }
  .contact-inner { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .cards-2, .cards-3, .gallery { grid-template-columns: 1fr; }
  .feature-list, .field-row { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .trust-inner { grid-template-columns: 1fr 1fr; gap: 1.2rem 0; }
  .trust-item:nth-child(odd) { border-left: 0; }
  .trust-item:nth-child(3) { border-left: 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.4rem; }
}

@media (max-width: 420px) {
  .gallery { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
}

/* ---------- motion preference ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .art-svg .swatch { animation: none; }
  .btn:hover, .service-card:hover, .gtile:hover { transform: none; }
}
