:root {
  --bg: #f6f1e7;
  --bg-soft: #efe7d8;
  --paper: #fffdf8;
  --ink: #2e2a26;
  --muted: #6b6459;
  --line: rgba(46, 42, 38, .14);
  --olive: #6b7a5e;
  --olive-2: #8a9a7a;
  --olive-dark: #4b5740;
  --brass: #a9884f;
  --terracotta: #bd6f4e;
  --dark: #24281e;
  --dark-2: #2f3527;
  --cream: #fbf6ec;
  --max: 1360px;
  --header-height: 92px;
  --r: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--olive-2); color: var(--dark); }
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--olive);
  outline-offset: 3px;
}

.container { width: min(100% - 40px, var(--max)); margin-inline: auto; }
.section { padding: clamp(80px, 9vw, 140px) 0; position: relative; }
.section-dark { background: var(--dark); color: var(--cream); }
.section-dark .muted, .section-dark .eyebrow, .section-dark .section-intro { color: rgba(251, 246, 236, .62); }
.section-tint { background: var(--bg-soft); }

h1, h2, h3 { margin: 0; font-family: "Fraunces", serif; font-weight: 600; letter-spacing: -.01em; line-height: 1.08; }
h1 em, h2 em, h3 em { font-style: italic; font-weight: 500; color: var(--olive); }
h2 { font-size: clamp(34px, 4.2vw, 56px); }
h3 { font-size: clamp(20px, 2vw, 26px); }

.accent-script { font-family: "Caveat", cursive; font-size: 1.5em; font-weight: 600; color: var(--terracotta); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin: 0 0 16px;
  font: 600 12px/1 "Inter", sans-serif; letter-spacing: .08em; text-transform: uppercase; color: var(--olive-dark);
}
.eyebrow::before { content: ""; width: 16px; height: 1px; background: var(--brass); }
.section-dark .eyebrow::before { background: var(--olive-2); }

.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 1000;
  padding: 12px 18px; background: var(--olive); color: #fff; border-radius: 999px;
}
.skip-link:focus { top: 16px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  min-height: var(--header-height);
  color: var(--cream);
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease, color .3s ease;
}
.site-header.scrolled {
  background: rgba(246, 241, 231, .92);
  color: var(--ink);
  box-shadow: 0 8px 30px rgba(46, 42, 38, .08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
/* Inner pages (no dark hero photo behind the header) always use the light-background header style */
.page-inner .site-header {
  background: rgba(246, 241, 231, .92);
  color: var(--ink);
  box-shadow: 0 8px 30px rgba(46, 42, 38, .08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.page-inner .desktop-nav a, .page-inner .phone-link { color: var(--ink); }
.page-inner .desktop-nav a:hover, .page-inner .phone-link:hover { color: var(--olive); }
.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand-mark { width: 32px; height: 32px; border-radius: 50%; background: var(--olive); display: grid; place-items: center; flex: 0 0 auto; }
.brand-mark svg { width: 16px; height: 16px; stroke: #fff; stroke-width: 1.8; }
.brand-name { font: 600 19px/1 "Fraunces", serif; }
.brand-domain { font: 600 10px/1 "Inter", sans-serif; letter-spacing: .12em; opacity: .6; align-self: flex-end; margin-bottom: 2px; }
.desktop-nav { flex: 1 1 auto; min-width: 0; display: flex; align-items: center; justify-content: center; gap: clamp(14px, 1.6vw, 30px); white-space: nowrap; }
.desktop-nav a, .phone-link { font: 600 14px/1 "Inter", sans-serif; color: var(--cream); transition: color .25s ease; }
.desktop-nav a:hover, .phone-link:hover { color: var(--olive-2); }
.site-header.scrolled .desktop-nav a, .site-header.scrolled .phone-link { color: var(--ink); }
.site-header.scrolled .desktop-nav a:hover, .site-header.scrolled .phone-link:hover { color: var(--olive); }
.header-actions { flex: 0 0 auto; display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
.phone-link { white-space: nowrap; }
.social-row { display: flex; align-items: center; gap: 8px; }
.social-icon { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; color: #fff; border: 1.5px solid transparent; box-shadow: 0 3px 10px rgba(46, 42, 38, .18); transition: transform .25s ease, filter .25s ease, box-shadow .25s ease; }
.social-icon svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.social-icon:hover { transform: translateY(-2px) scale(1.06); filter: brightness(1.08); box-shadow: 0 6px 16px rgba(46, 42, 38, .26); }
.social-icon--instagram { background: radial-gradient(circle at 30% 110%, #ffdb73 0%, #fd5949 30%, #d6249f 55%, #515bd4 100%); }
.social-icon--whatsapp { background: #25d366; }
.social-icon--telegram { background: #29b6f6; }
.social-icon--viber { background: #7360f2; }
.site-header.scrolled .social-icon { box-shadow: 0 2px 8px rgba(46, 42, 38, .14); }

.mobile-social { display: flex; align-items: center; gap: 12px; margin-top: 26px; }
.mobile-social a { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; color: #fff; box-shadow: 0 4px 14px rgba(0, 0, 0, .3); }
.mobile-social a.social-icon--instagram { background: radial-gradient(circle at 30% 110%, #ffdb73 0%, #fd5949 30%, #d6249f 55%, #515bd4 100%); }
.mobile-social a.social-icon--whatsapp { background: #25d366; }
.mobile-social a.social-icon--telegram { background: #29b6f6; }
.mobile-social a.social-icon--viber { background: #7360f2; }
.mobile-social svg { width: 21px; height: 21px; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 0 28px; border: 1.5px solid transparent; border-radius: 999px;
  font: 600 14px/1 "Inter", sans-serif; letter-spacing: .01em; white-space: nowrap;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button span { font-size: 16px; line-height: 1; transition: transform .28s ease; }
.button:hover span { transform: translate(2px, -2px); }
.button-fill { background: var(--olive); color: #fff; box-shadow: 0 10px 26px rgba(107, 122, 94, .3); }
.button-fill:hover { background: var(--olive-dark); }
.button-outline { background: transparent; border-color: currentColor; color: inherit; }
.button-outline:hover { background: rgba(107, 122, 94, .08); }
.button-cream { background: var(--cream); color: var(--dark); box-shadow: 0 10px 26px rgba(0, 0, 0, .18); }
.button-cream:hover { background: #fff; }
.button-small { min-height: 48px; padding-inline: 22px; }

.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; color: inherit; padding: 10px; }
.menu-toggle span { display: block; height: 2px; border-radius: 2px; background: currentColor; margin: 7px 0; transition: transform .25s ease; }
.menu-toggle.active span:first-child { transform: translateY(4.5px) rotate(45deg); }
.menu-toggle.active span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
.mobile-menu { display: none; }

/* Photo treatment: unify varied stock photography into one warm olive/cream mood */
.photo-frame { position: relative; overflow: hidden; }
.photo-frame img { filter: saturate(.55) sepia(.28) hue-rotate(-6deg) brightness(1.02) contrast(1.03); }
.photo-frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(155deg, rgba(107, 122, 94, .28), rgba(246, 241, 231, .06) 55%, rgba(189, 111, 78, .1));
  mix-blend-mode: multiply;
}

/* Hero */
.hero { position: relative; min-height: max(760px, 100svh); margin-top: calc(var(--header-height) * -1); display: flex; align-items: center; overflow: hidden; color: #fff; }
.hero-image { position: absolute; inset: 0; }
.hero-slideshow { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transform: translateX(4%) scale(1.03); transition: opacity 1.4s ease, transform 5.5s cubic-bezier(.2, .7, .2, 1); }
.hero-slide.is-active { opacity: 1; transform: translateX(0) scale(1); z-index: 1; }
.hero-slide img { object-position: center 38%; filter: saturate(.28) sepia(.3) brightness(.86) contrast(1.12); transform: scale(1); transform-origin: center 38%; }
.hero-slide:nth-child(2) img { object-position: center 24%; transform-origin: center 24%; }
.hero-slide.is-active img { animation: hero-kenburns 7.5s ease-out forwards; }
@keyframes hero-kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.09); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide.is-active img { animation: none; }
}
.hero-image::after {
  content: ""; position: absolute; inset: 0; z-index: 2; mix-blend-mode: multiply; pointer-events: none;
  background: linear-gradient(100deg, rgba(30, 34, 24, .96) 0%, rgba(75, 87, 64, .72) 48%, rgba(107, 122, 94, .5) 100%);
}
.hero-content { position: relative; z-index: 2; width: 100%; max-width: 960px; padding-top: var(--header-height); }
.eyebrow-hero {
  display: inline-flex; align-items: center; gap: 10px;
  font: 600 12px/1 "Inter", sans-serif; letter-spacing: .08em; text-transform: uppercase;
  color: var(--cream); padding: 10px 18px; border-radius: 999px; border: 1px solid rgba(251, 246, 236, .4);
  margin-bottom: 28px;
}
.hero h1 { max-width: 820px; font-size: clamp(42px, 6vw, 78px); line-height: 1.22; text-wrap: balance; font-weight: 600; text-shadow: 0 2px 24px rgba(0, 0, 0, .25); }
.hero h1 em { color: #e7c9a3; }
.hero-lead { max-width: 520px; margin: 24px 0 0; color: rgba(251, 246, 236, .88); font: 400 18px/1.55 "Inter", sans-serif; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 36px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; font: 600 14px/1 "Inter", sans-serif; }
.text-link span { font-size: 16px; transition: transform .25s ease; }
.text-link:hover span { transform: translate(3px, 3px); }
.text-link.up:hover span { transform: translate(3px, -3px); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.hero-badges span {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px;
  background: rgba(251, 246, 236, .1); border: 1px solid rgba(251, 246, 236, .22);
  font: 600 12.5px/1 "Inter", sans-serif; color: var(--cream);
}
.hero-badges span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--olive-2); }

/* Trust strip */
.trust-strip { background: var(--paper); border-bottom: 1px solid var(--line); }
.trust-strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; padding: 30px 0; }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 10px 22px; border-left: 1px solid var(--line); }
.trust-item:first-child { border-left: 0; padding-left: 0; }
.trust-icon { flex: 0 0 auto; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: var(--bg-soft); color: var(--olive-dark); }
.trust-icon svg { width: 19px; height: 19px; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.trust-item strong { display: block; font: 600 14px/1.3 "Inter", sans-serif; }
.trust-item span { display: block; margin-top: 3px; color: var(--muted); font: 400 12.5px/1.4 "Inter", sans-serif; }

.section-head { display: grid; grid-template-columns: 1fr .58fr; gap: 8%; align-items: end; margin-bottom: 58px; }
.section-intro { max-width: 420px; margin: 0; color: var(--muted); font: 400 15.5px/1.6 "Inter", sans-serif; }
.section-head-center { grid-template-columns: 1fr; justify-items: center; text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-head-center .section-intro { max-width: 520px; margin: 0 auto; }
.services-title { font-size: clamp(44px, 6vw, 76px); color: var(--ink); }
.services-title em { font-style: normal; color: var(--olive-dark); }
.services-tagline-wrap { display: flex; flex-direction: column; gap: 10px; }
.services-tagline { margin: 0; font: 500 italic 19px "Fraunces", serif; color: var(--muted); }
.services-tagline em { color: var(--olive-2); font-style: italic; }

.pill-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 34px; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 9px 17px; border-radius: 999px; font: 500 12.5px/1 "Inter", sans-serif; background: var(--bg-soft); color: var(--ink); }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-card {
  display: flex; flex-direction: column; gap: 16px; padding: 30px 26px; border-radius: var(--r);
  background: var(--paper); border: 1px solid var(--line); transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(46, 42, 38, .1); }
.service-index { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font: 600 14px "Fraunces", serif; color: #fff; background: var(--olive); }
.service-card h3 { margin: 0; }
.service-card p { margin: 0; color: var(--muted); font: 400 14.5px/1.55 "Inter", sans-serif; flex: 1; }
.service-link {
  display: inline-flex; align-items: center; gap: 9px; align-self: flex-start;
  border: 0; padding: 11px 20px; border-radius: 999px; background: var(--bg-soft); color: var(--olive-dark);
  font: 600 13.5px "Inter", sans-serif; transition: background .25s ease, color .25s ease, transform .25s ease;
}
.service-link span { transition: transform .25s ease; }
.service-link:hover { background: var(--olive); color: #fff; transform: translateY(-2px); }
.service-card:hover .service-link span { transform: translate(3px, -3px); }
.service-card-urgent {
  flex-direction: row; align-items: center; padding: 32px 34px; gap: 28px; margin-bottom: 26px;
  border-color: var(--terracotta); background: linear-gradient(120deg, var(--paper), var(--bg-soft));
}
.service-card-urgent h3 { flex: 0 0 auto; margin: 0; font-size: 21px; }
.service-card-urgent p { flex: 1 1 320px; margin-top: 4px; }
.service-card-urgent .service-link { flex: 0 0 auto; }
.service-index-urgent { background: var(--terracotta); }
.service-index-urgent svg { width: 19px; height: 19px; }

/* Works / portfolio gallery */
.works-note { max-width: 560px; margin: 0 0 40px; color: var(--muted); font: 400 15px/1.6 "Inter", sans-serif; }
.works-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: 400px 320px; gap: 18px; }
.work-card { position: relative; overflow: hidden; margin: 0; background: var(--bg-soft); border-radius: var(--r); }
.work-card img { transition: transform .8s cubic-bezier(.2, .7, .2, 1); filter: saturate(.4) sepia(.32) hue-rotate(-6deg) brightness(.97) contrast(1.05); }
.work-card:hover img { transform: scale(1.05); }
.work-large { grid-column: 1 / span 7; grid-row: 1 / span 2; }
.work-tall { grid-column: 8 / span 5; grid-row: 1; }
.work-wide { grid-column: 8 / span 3; grid-row: 2; }
.work-small { grid-column: 11 / span 2; grid-row: 2; }
.work-card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; mix-blend-mode: multiply;
  background: linear-gradient(0deg, rgba(36, 32, 26, .72) 0%, rgba(75, 87, 64, .42) 42%, rgba(107, 122, 94, .3) 100%);
}
.work-card figcaption { position: absolute; z-index: 2; inset: auto 24px 20px; }
.work-card figcaption span { color: var(--olive-2); font: 600 11px "Inter", sans-serif; letter-spacing: .06em; text-transform: uppercase; }
.work-card figcaption strong { display: block; margin-top: 4px; color: #fff; font: 600 21px "Fraunces", serif; }
.works-footer { display: flex; justify-content: flex-end; margin-top: 26px; }
.works-page-nav { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-top: 26px; flex-wrap: wrap; }
.works-head-side { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.works-head-side .button {
  white-space: nowrap; min-height: 64px; padding: 0 38px; font-size: 16px;
  box-shadow: 0 18px 40px rgba(107, 122, 94, .38);
}
.works-head-side .button span { font-size: 19px; }
.works-head-side .button:hover { transform: translateY(-3px) scale(1.02); }

/* Works — full gallery page */
.works-full-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.works-full-grid--tall { margin-top: 20px; }
.works-full-grid--tall > :nth-child(9) { grid-column: 2 / 3; }
.works-full-grid--tall > :nth-child(10) { grid-column: 3 / 4; }
.work-card-full { position: relative; overflow: hidden; margin: 0; background: var(--bg-soft); border-radius: var(--r); box-shadow: 0 20px 40px rgba(46, 42, 38, .1); }
.work-card-full .work-photo { overflow: hidden; }
.work-card-full .work-photo img { width: 100%; height: auto; display: block; object-fit: initial; transition: transform .5s ease; }
.work-card-full:hover img { transform: scale(1.04); }
.work-card-full figcaption { padding: 14px 18px 18px; }
.work-card-full figcaption span { display: block; color: var(--olive-2); font: 600 11px "Inter", sans-serif; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 4px; }
.work-card-full figcaption strong { display: block; color: var(--ink); font: 600 16px "Fraunces", serif; }
.works-hero-note { max-width: 640px; color: var(--muted); font: 400 15.5px/1.6 "Inter", sans-serif; margin: 0 0 44px; }
@media (max-width: 900px) {
  .works-full-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .works-full-grid--tall > :nth-child(9),
  .works-full-grid--tall > :nth-child(10) { grid-column: auto; }
}
@media (max-width: 560px) {
  .works-full-grid { grid-template-columns: 1fr; }
}

/* Materials */
.materials-top { display: grid; grid-template-columns: 1fr .58fr; gap: 8%; align-items: end; margin-bottom: 50px; }
.material-photo-band { border-radius: var(--r); overflow: hidden; aspect-ratio: 16/6.4; box-shadow: 0 30px 60px rgba(46, 42, 38, .14); margin-bottom: 50px; }
.fabric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 44px; }
.fabric-card { border-radius: 22px; overflow: hidden; background: var(--paper); border: 1px solid var(--line); transition: transform .3s ease, box-shadow .3s ease; }
.fabric-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(46, 42, 38, .1); }
.fabric-swatch { height: 148px; position: relative; overflow: hidden; }
.fabric-swatch img { transition: transform .6s ease; }
.fabric-card:hover .fabric-swatch img { transform: scale(1.06); }
.fabric-card-body { padding: 18px 20px 22px; }
.fabric-card h4 { margin: 0 0 6px; font: 600 16px "Fraunces", serif; }
.fabric-card p { margin: 0; color: var(--muted); font: 400 13px/1.5 "Inter", sans-serif; }
.material-copy-block { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding: 34px; border-radius: var(--r); background: var(--dark); color: var(--cream); }
.material-copy-block p { margin: 0; max-width: 480px; color: rgba(251, 246, 236, .78); font: 400 15.5px/1.55 "Inter", sans-serif; }
.material-copy-block h3 { color: var(--cream); }

/* Why us */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-card { padding: 30px 24px; border-radius: var(--r); background: var(--paper); border: 1px solid var(--line); }
.why-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-soft); color: var(--olive-dark); display: grid; place-items: center; margin-bottom: 20px; }
.why-icon svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.why-card h3 { font-size: 18px; margin-bottom: 8px; }
.why-card p { margin: 0; color: var(--muted); font: 400 13.5px/1.55 "Inter", sans-serif; }

/* Pricing explainer, nested inside the "why us" section */
.pricing-inline { margin-top: 64px; padding-top: 52px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1.1fr .9fr; gap: 8%; align-items: center; }
.pricing-copy h3 { margin-bottom: 14px; }
.pricing-copy p { color: var(--muted); font: 400 16px/1.6 "Inter", sans-serif; max-width: 480px; margin: 0 0 26px; }
.pricing-factors { display: grid; gap: 14px; }
.pricing-factors div { display: flex; gap: 16px; padding: 20px; border-radius: 20px; background: var(--paper); border: 1px solid var(--line); align-items: flex-start; }
.pricing-factors span.num { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%; background: var(--olive); color: #fff; display: grid; place-items: center; font: 600 13px "Fraunces", serif; }
.pricing-factors strong { display: block; font: 600 14.5px "Inter", sans-serif; margin-bottom: 3px; }
.pricing-factors small { color: var(--muted); font: 400 13px/1.4 "Inter", sans-serif; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 10%; }
.accordion { display: flex; flex-direction: column; gap: 10px; }
details { border-radius: 20px; background: var(--paper); border: 1px solid var(--line); padding: 4px 24px; }
details[open] { box-shadow: 0 14px 30px rgba(46, 42, 38, .08); }
summary { list-style: none; cursor: pointer; padding: 20px 46px 20px 0; position: relative; font: 600 16.5px/1.3 "Inter", sans-serif; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 0; top: 14px; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--bg-soft); color: var(--olive-dark); font-size: 17px; font-weight: 600; transition: transform .25s ease, background .25s ease, color .25s ease; }
details[open] summary::after { transform: rotate(45deg); background: var(--olive); color: #fff; }
details p { max-width: 640px; margin: -4px 0 22px; color: var(--muted); font: 400 14px/1.6 "Inter", sans-serif; }

/* Testimonials */
.testimonials-wrap { position: relative; max-width: 780px; margin: 0 auto; }
.testimonials-track { overflow: hidden; border-radius: var(--r); }
.testimonials-slides { display: flex; transition: transform .5s cubic-bezier(.2, .7, .2, 1); }
.testimonial-slide { margin: 0; flex: 0 0 100%; width: 100%; min-width: 100%; box-sizing: border-box; padding: 44px 46px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); }
.testimonial-stars { color: var(--terracotta); font-size: 16px; letter-spacing: 3px; margin-bottom: 18px; }
.testimonial-quote { margin: 0 0 26px; font: 400 clamp(17px, 1.8vw, 21px)/1.55 "Fraunces", serif; color: var(--ink); }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--olive); color: #fff; display: grid; place-items: center; font: 600 15px "Fraunces", serif; flex: 0 0 auto; }
.testimonial-author strong { display: block; font: 600 14px "Inter", sans-serif; }
.testimonial-author span { color: var(--muted); font: 400 12.5px "Inter", sans-serif; }
.testimonials-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 28px; }
.testimonials-arrow { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: var(--paper); display: grid; place-items: center; transition: background .25s ease, color .25s ease; }
.testimonials-arrow:hover { background: var(--olive); color: #fff; }
.testimonials-dots { display: flex; gap: 8px; }
.testimonials-dots button { width: 8px; height: 8px; padding: 0; border-radius: 50%; border: 0; background: var(--line); }
.testimonials-dots button.active { background: var(--olive); width: 20px; border-radius: 4px; transition: width .25s ease; }

/* Lead section + form */
.contact { padding: clamp(90px, 10vw, 140px) 0; background: var(--dark); color: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr .66fr; gap: 8%; align-items: center; }
.contact h2 { font-size: clamp(40px, 5.6vw, 68px); color: var(--cream); }
.contact-lead { max-width: 460px; color: rgba(251, 246, 236, .74); margin: 24px 0 0; font: 400 16px/1.6 "Inter", sans-serif; }
.contact-right { display: flex; flex-direction: column; gap: 26px; }
.contact-panel { display: flex; flex-direction: column; gap: 14px; background: var(--dark-2); border-radius: var(--r); padding: 28px; }
.big-phone { display: block; font: 600 clamp(22px, 2.6vw, 30px)/1.2 "Fraunces", serif; color: var(--cream); }
.contact-button { width: 100%; }
.contact-social { display: grid; grid-template-columns: 1fr auto 20px; gap: 15px; align-items: center; padding: 13px 16px; border-radius: 14px; background: rgba(251, 246, 236, .06); transition: background .2s ease; }
.contact-social span:first-child { color: rgba(251, 246, 236, .52); font: 400 12px "Inter", sans-serif; }
.contact-social strong { font: 600 14px "Inter", sans-serif; }
.contact-social:hover { background: rgba(251, 246, 236, .12); }
.contact-small { color: rgba(251, 246, 236, .5); font: 400 12.5px "Inter", sans-serif; margin: 0; }
.lead-form { background: var(--dark-2); border-radius: var(--r); padding: 28px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.lead-form-title { margin: 0 0 18px; font: 600 13px "Inter", sans-serif; letter-spacing: .04em; text-transform: uppercase; color: var(--olive-2); }
.lead-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-field { margin-bottom: 14px; }
.lead-field label { display: block; margin-bottom: 8px; color: rgba(251, 246, 236, .55); font: 500 11px/1 "Inter", sans-serif; letter-spacing: .03em; text-transform: uppercase; }
.lead-field input, .lead-field textarea {
  width: 100%; padding: 12px 16px; border: 0; border-radius: 12px;
  background: rgba(251, 246, 236, .08); color: var(--cream); font: 400 15px "Inter", sans-serif; resize: vertical;
  transition: background .25s ease;
}
.lead-field input::placeholder, .lead-field textarea::placeholder { color: rgba(251, 246, 236, .35); }
.lead-field input:focus, .lead-field textarea:focus { outline: none; background: rgba(251, 246, 236, .14); }
.lead-form-note { min-height: 18px; margin: 12px 0 0; color: rgba(251, 246, 236, .6); font: 400 12px "Inter", sans-serif; }

.footer { background: #1b1e15; color: rgba(251, 246, 236, .55); padding: 34px 0; }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr auto; align-items: center; gap: 25px; }
.footer-brand { color: var(--cream); }
.footer-inner p, .footer-inner a, .copyright { font: 400 12px "Inter", sans-serif; margin: 0; }
.footer-hours { color: rgba(251, 246, 236, .7); }
.footer-links { display: flex; gap: 20px; }
.footer-links a:hover { color: var(--olive-2); }

/* Sticky mobile call bar */
.mobile-call-bar { display: none; }

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

/* Lead modal */
.lead-modal-overlay {
  position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
  padding: 20px; background: rgba(36, 40, 30, .58); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.lead-modal-overlay.open { opacity: 1; pointer-events: auto; }
.lead-modal-overlay[hidden] { display: flex; }
.lead-modal {
  position: relative; width: min(100%, 480px); max-height: 90vh; overflow-y: auto; background: var(--paper); border-radius: 28px;
  padding: 44px 38px 36px; box-shadow: 0 40px 90px rgba(0, 0, 0, .3);
  transform: translateY(16px) scale(.98); opacity: 0; transition: transform .3s ease, opacity .3s ease;
}
.lead-modal-overlay.open .lead-modal { transform: translateY(0) scale(1); opacity: 1; }
.lead-modal h3 { margin: 0 0 10px; font-size: 26px; }
.lead-modal-sub { margin: 0 0 20px; color: var(--muted); font: 400 14.5px/1.5 "Inter", sans-serif; }
.lead-modal-call {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; min-height: 56px; margin-bottom: 14px; border-radius: 999px;
  background: var(--olive); color: #fff; font: 600 15px "Inter", sans-serif;
  transition: background .25s ease, transform .25s ease;
}
.lead-modal-call svg { width: 19px; height: 19px; stroke: currentColor; stroke-width: 1.8; flex: 0 0 auto; }
.lead-modal-call:hover { background: var(--olive-dark); transform: translateY(-2px); }
.lead-modal-or { margin: 0 0 20px; text-align: center; color: var(--muted); font: 500 12.5px "Inter", sans-serif; text-transform: uppercase; letter-spacing: .04em; }
.lead-modal-close {
  position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; border-radius: 50%;
  border: 0; background: var(--bg-soft); color: var(--ink); font-size: 14px;
}
.lead-modal-close:hover { background: var(--olive); color: #fff; }
.lead-modal .lead-field label { color: var(--muted); }
.lead-modal .lead-field input, .lead-modal .lead-field textarea { background: var(--bg-soft); color: var(--ink); }
.lead-modal .lead-field input::placeholder, .lead-modal .lead-field textarea::placeholder { color: rgba(46, 42, 38, .4); }
.lead-modal .lead-field input:focus, .lead-modal .lead-field textarea:focus { background: #fff; box-shadow: inset 0 0 0 1.5px var(--olive); }
.lead-modal .lead-form-note { color: var(--olive-dark); }
.lead-modal-facts { list-style: none; margin: 22px 0 0; padding: 18px 0 0; border-top: 1px solid var(--line); display: grid; gap: 9px; }
.lead-modal-facts li { position: relative; padding-left: 20px; color: var(--muted); font: 400 13px "Inter", sans-serif; }
.lead-modal-facts li::before { content: ""; position: absolute; left: 0; top: 6px; width: 6px; height: 6px; border-radius: 50%; background: var(--olive); }

@media (max-width: 1460px) {
  .header-actions .phone-link { display: none; }
}

@media (max-width: 1280px) {
  .header-inner { gap: 16px; }
  .desktop-nav { gap: 14px; }
  .desktop-nav a { font-size: 12.5px; }
  .works-grid { grid-template-rows: 280px 240px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .fabric-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1160px) {
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: 0; }
}

@media (max-width: 1050px) {
  .header-inner { gap: 18px; }
  .desktop-nav { display: none; }
  .header-actions { margin-left: auto; }
  .header-actions .button-small { display: inline-flex; }
  .menu-toggle { display: block; }
  .mobile-menu {
    position: fixed; inset: 0; padding: 116px 20px 40px; background: var(--dark);
    display: block; z-index: 40; opacity: 0; pointer-events: none; transform: translateY(-10px); transition: opacity .3s ease, transform .3s ease;
  }
  .mobile-menu.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-menu nav { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
  .mobile-menu a { font: 500 28px "Fraunces", serif; color: var(--cream); }
  .mobile-menu .mobile-phone { margin-top: 16px; font: 500 17px "Inter", sans-serif; color: var(--olive-2); }
  .section-head, .materials-top { grid-template-columns: 1fr; gap: 18px; }
  .approach-grid, .services-grid { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-inline, .contact-grid, .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .copyright { text-align: right; }
  .works-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 280px 200px 200px; gap: 14px; }
  .work-large { grid-column: 1 / 3; grid-row: 1; }
  .work-tall { grid-column: 1; grid-row: 2; }
  .work-wide { grid-column: 2; grid-row: 2; }
  .work-small { display: block; grid-column: 1 / 3; grid-row: 3; }
  .material-copy-block { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 760px) {
  :root { --header-height: 76px; --r: 24px; }
  .container { width: min(100% - 22px, var(--max)); }
  .header-inner { min-height: var(--header-height); }
  .header-actions .button-small { display: none; }
  .brand-name { font-size: 16px; }
  .hero { min-height: 700px; }
  .hero-content { padding-top: calc(var(--header-height) + 14px); }
  .hero h1 { font-size: clamp(36px, 11vw, 50px); }
  .hero-lead { font-size: 15px; max-width: 340px; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 320px; margin-top: 24px; gap: 10px; }
  .hero-actions .button, .hero-actions .text-link { width: 100%; justify-content: center; }
  .section { padding: 64px 0; }
  h2 { font-size: 30px; }
  .section-head { margin-bottom: 32px; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .trust-item { border-left: 0; padding: 14px 0; border-top: 1px solid var(--line); }
  .trust-item:first-child { border-top: 0; }
  .large-copy { font-size: 18px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-urgent { flex-direction: column; align-items: flex-start; padding: 26px 22px; }
  .works-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 170px; gap: 10px; }
  .work-large { grid-column: 1 / 3; grid-row: 1; }
  .work-tall { grid-column: 1; grid-row: 2; }
  .work-wide { grid-column: 2; grid-row: 2; }
  .work-small { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .fabric-grid { grid-template-columns: 1fr 1fr; }
  .pricing-inline { margin-top: 40px; padding-top: 34px; }
  .faq-grid { gap: 26px; }
  summary { padding-block: 16px; padding-right: 40px; font-size: 15px; }
  summary::after { top: 11px; }
  .contact { padding: 70px 0; }
  .contact h2 { font-size: clamp(34px, 11vw, 48px); }
  .lead-row { grid-template-columns: 1fr; gap: 0; }
  .testimonial-slide { padding: 32px 26px; }
  .footer-inner { grid-template-columns: 1fr; gap: 14px; text-align: left; }
  .copyright { text-align: left; }
  .mobile-call-bar {
    display: flex; flex-direction: column; gap: 12px;
    position: fixed; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); z-index: 45;
  }
  .mobile-call-bar a {
    width: 54px; height: 54px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 24px rgba(36, 40, 30, .32); transition: transform .2s ease;
  }
  .mobile-call-bar a:active { transform: scale(.94); }
  .mobile-call-bar .mcb-call { background: var(--olive); color: #fff; }
  .mobile-call-bar .mcb-whatsapp { background: #25d366; color: #fff; }
  .mobile-call-bar svg { width: 23px; height: 23px; stroke: currentColor; stroke-width: 1.8; }
}

@media (max-width: 500px) {
  .lead-modal { padding: 34px 22px 26px; border-radius: 22px; }
  .lead-modal h3 { font-size: 22px; }
}

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