:root {
  --bg: #f4efe6;
  --paper: rgba(255, 251, 245, 0.82);
  --paper-strong: #fffaf4;
  --text: #1a1d1b;
  --muted: #57625b;
  --line: rgba(26, 29, 27, 0.12);
  --green: #13352d;
  --green-soft: #1d4b40;
  --gold: #ab8a4f;
  --gold-soft: rgba(171, 138, 79, 0.14);
  --shadow: 0 20px 60px rgba(14, 26, 22, 0.14);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Urbanist", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(171, 138, 79, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(19, 53, 45, 0.18), transparent 24%),
    linear-gradient(180deg, #fbf7f0 0%, #f3ede2 100%);
}

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

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

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

/* ─── FAB CALL ─── */
.fab-call {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.35rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #24584b);
  box-shadow: 0 8px 28px rgba(19, 53, 45, 0.42);
  font-weight: 700;
  font-size: .95rem;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.fab-call:hover,
.fab-call:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(19, 53, 45, 0.5);
}

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(251, 247, 240, 0.72);
  border-bottom: 1px solid rgba(26, 29, 27, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: 260px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-weight: 600;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.35rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav a.is-active {
  color: var(--green);
}

.site-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--green);
  border-radius: 999px;
  transition: transform 200ms ease, opacity 200ms ease;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 3rem;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(8, 15, 13, 0.95) 0%, rgba(8, 15, 13, 0.78) 42%, rgba(8, 15, 13, 0.4) 100%),
    radial-gradient(circle at top right, rgba(171, 138, 79, 0.3), transparent 24%),
    url("/assets/images/materiali/verde-bamboo.jpg") center/cover no-repeat;
  transform: scale(1.04);
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/images/marble-pattern.svg") center/cover no-repeat;
  mix-blend-mode: screen;
  opacity: 0.16;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-copy,
.hero-card,
.hero-showcase {
  position: relative;
  z-index: 1;
}

.hero-copy {
  min-width: 0;
  padding: 4rem 0 3rem;
  color: #fffaf4;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.split-copy h2,
.coverage-copy h2,
.contact-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
}

.hero-text,
.section-heading p,
.split-copy p,
.coverage-copy p,
.contact-card p,
.intro-copy,
.service-card p,
.timeline-item p,
.faq-item p {
  line-height: 1.7;
}

.hero-text {
  max-width: 62ch;
  margin: 1.5rem 0 0;
  font-size: 1.08rem;
  color: rgba(255, 250, 244, 0.84);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

/* ─── BUTTONS ─── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green), #24584b);
  box-shadow: 0 18px 34px rgba(19, 53, 45, 0.3);
}

.button-secondary {
  color: #fffaf4;
  border-color: rgba(255, 250, 244, 0.26);
  background: rgba(255, 250, 244, 0.08);
}

.button-secondary-dark {
  color: var(--green);
  border-color: var(--line);
  background: transparent;
}

.button-secondary-dark:hover {
  background: var(--gold-soft);
}

.button-whatsapp {
  color: #0f332a;
  border-color: rgba(28, 150, 87, 0.22);
  background: linear-gradient(135deg, #e9f8ec, #c9efd3);
  box-shadow: 0 18px 34px rgba(12, 66, 42, 0.22);
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
  background: linear-gradient(135deg, #f3fff5, #d5f7dc);
}

.button-light {
  color: var(--green);
  background: #fffaf4;
}

.button-light-outline {
  color: #fffaf4;
  border-color: rgba(255, 250, 244, 0.3);
  background: rgba(255, 250, 244, 0.08);
}

.button-outline {
  color: var(--green);
  border-color: var(--green);
  background: transparent;
}

.button-outline:hover {
  background: var(--green);
  color: #fffaf4;
}

/* ─── HERO POINTS ─── */
.hero-points {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(255, 250, 244, 0.88);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0;
  margin: 1.75rem 0 0;
  list-style: none;
}

.trust-pills li {
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(255, 250, 244, 0.18);
  border-radius: 999px;
  color: rgba(255, 250, 244, 0.88);
  background: rgba(255, 250, 244, 0.08);
  backdrop-filter: blur(8px);
  font-size: 0.95rem;
  font-weight: 700;
}

/* ─── HERO CARD ─── */
.hero-card {
  padding: 1.5rem;
  border: 1px solid rgba(255, 250, 244, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.09);
  color: #fffaf4;
  box-shadow: var(--shadow);
}

.hero-card-label,
.hero-card-title {
  font-weight: 700;
}

.hero-card-label {
  margin: 0 0 1rem;
  color: rgba(255, 250, 244, 0.8);
}

.hero-card-block + .hero-card-block {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 250, 244, 0.12);
}

.hero-card-title {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: #e8c47a;
}

.hero-card p {
  margin: 0;
  line-height: 1.6;
}

.hero-card a {
  color: #fffaf4;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-showcase {
  align-self: stretch;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 244, 0.16);
  border-radius: 34px;
  background: rgba(255, 250, 244, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.hero-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 15, 13, 0.04), rgba(8, 15, 13, 0.62)),
    radial-gradient(circle at top right, rgba(171, 138, 79, 0.22), transparent 26%);
  pointer-events: none;
}

.hero-showcase-media,
.hero-showcase-media img {
  width: 100%;
  height: 100%;
}

.hero-showcase-media img {
  object-fit: cover;
}

.hero-badge,
.hero-showcase-panel {
  position: absolute;
  z-index: 2;
}

.hero-badge {
  top: 1.2rem;
  right: 1.2rem;
  width: 8.6rem;
  padding: 1rem;
  border: 1px solid rgba(255, 250, 244, 0.18);
  border-radius: 22px;
  color: #fffaf4;
  background: rgba(12, 24, 20, 0.58);
  backdrop-filter: blur(14px);
}

.hero-badge strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  line-height: 0.9;
}

.hero-badge span {
  display: block;
  margin-top: 0.45rem;
  color: rgba(255, 250, 244, 0.78);
  line-height: 1.35;
}

.hero-showcase-panel {
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  padding: 1.15rem;
  border: 1px solid rgba(255, 250, 244, 0.18);
  border-radius: 24px;
  color: #fffaf4;
  background: rgba(12, 24, 20, 0.66);
  backdrop-filter: blur(16px);
}

.hero-showcase-panel .hero-card-label {
  margin-bottom: 0.8rem;
}

.hero-contact-mini {
  display: grid;
  gap: 0.25rem;
}

.hero-contact-mini + .hero-contact-mini {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 250, 244, 0.12);
}

.hero-contact-mini span {
  color: #e8c47a;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-contact-mini a {
  color: #fffaf4;
  font-size: 1.18rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-contact-mini p {
  margin: 0;
  color: rgba(255, 250, 244, 0.86);
  line-height: 1.45;
}

/* ─── INTRO BAND ─── */
.intro-band {
  padding: 1rem 0 0;
}

.intro-band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.68);
  box-shadow: var(--shadow);
}

.intro-copy {
  margin: 0;
  font-size: 1.1rem;
  color: var(--muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stats-grid article {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: var(--paper-strong);
}

.stats-grid strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  color: var(--green);
}

.stats-grid span {
  color: var(--muted);
  line-height: 1.5;
}

/* ─── SECTIONS ─── */
.section {
  padding: 6rem 0;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.52), rgba(255, 250, 244, 0.82));
}

.section-dark {
  color: #fffaf4;
  background:
    radial-gradient(circle at top left, rgba(171, 138, 79, 0.18), transparent 24%),
    linear-gradient(135deg, #102c26 0%, #0b1e1a 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.6rem;
}

.section-heading h2,
.split-copy h2,
.coverage-copy h2,
.contact-card h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.section-heading p,
.split-copy p,
.coverage-copy p,
.contact-card p {
  margin-top: 1rem;
  color: var(--muted);
}

/* ─── SERVICE GRID ─── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card,
.coverage-box,
.contact-card,
.map-wrap,
.faq-item,
.timeline-item {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 100%;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.78);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(14, 26, 22, 0.18);
}

.service-card span,
.timeline-item span {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--green);
  font-weight: 800;
}

.service-card h3,
.timeline-item h3,
.coverage-box h3 {
  margin: 1.1rem 0 0.65rem;
  font-size: 1.35rem;
}

.service-card p,
.timeline-item p,
.coverage-box p {
  margin: 0;
  color: var(--muted);
}

/* ─── SPLIT LAYOUT ─── */
.split-layout,
.coverage-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.contact-grid {
  align-items: stretch;
}

.split-media {
  position: relative;
}

.split-media::after {
  content: "";
  position: absolute;
  inset: auto -1rem -1rem auto;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(171, 138, 79, 0.34), rgba(19, 53, 45, 0.1));
  filter: blur(10px);
}

.material-display {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(171, 138, 79, 0.28), transparent 24%),
    linear-gradient(180deg, rgba(255, 250, 244, 0.95), rgba(238, 230, 219, 0.96)),
    url("/assets/images/marble-pattern.svg") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.material-display::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  background: rgba(19, 53, 45, 0.1);
  filter: blur(6px);
}

.material-display-head {
  display: inline-flex;
  max-width: 260px;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 250, 244, 0.9);
  box-shadow: var(--shadow);
}

.material-stack {
  display: grid;
  gap: 1rem;
  margin-top: 6rem;
}

.stone-chip {
  position: relative;
  overflow: hidden;
  padding: 1.2rem 1.2rem 1.25rem;
  border: 1px solid rgba(19, 53, 45, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 244, 0.85);
  backdrop-filter: blur(8px);
}

.stone-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, transparent 0%, rgba(171, 138, 79, 0.06) 42%, transparent 100%),
    url("/assets/images/marble-pattern.svg") center/cover no-repeat;
  opacity: 0.35;
  pointer-events: none;
}

.stone-chip span,
.application-label {
  position: relative;
  display: inline-block;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stone-chip p {
  position: relative;
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.material-photo-board {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(180px, 1fr));
  gap: 1rem;
  min-height: 560px;
}

.material-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.material-photo-large {
  grid-row: span 2;
}

.material-photo img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.material-photo:hover img {
  transform: scale(1.04);
}

.material-photo figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 2rem);
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(255, 250, 244, 0.18);
  border-radius: 999px;
  color: #fffaf4;
  background: rgba(12, 24, 20, 0.68);
  backdrop-filter: blur(14px);
  font-weight: 800;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

/* ─── CHECK / COVERAGE / CONTACT LISTS ─── */
.check-list,
.coverage-list,
.contact-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.check-list li,
.coverage-list li,
.contact-list li {
  position: relative;
  padding-left: 1.25rem;
  line-height: 1.65;
}

.check-list li::before,
.coverage-list li::before,
.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
}

/* ─── WORK GRID ─── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.work-card {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.78);
  box-shadow: var(--shadow);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(14, 26, 22, 0.18);
}

.work-img {
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  height: 220px;
}

.work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.work-card:hover .work-img img {
  transform: scale(1.04);
}

.work-body {
  padding: 1.5rem;
}

.work-label {
  margin: 0 0 .5rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.work-card h3 {
  margin: 0 0 .75rem;
  font-size: 1.3rem;
  line-height: 1.25;
}

.work-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

@media (max-width: 780px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── APPLICATION GRID (legacy) ─── */
.application-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}

.application-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.8);
  box-shadow: var(--shadow);
  transition: transform 200ms ease;
}

.application-card:hover {
  transform: translateY(-4px);
}

.application-card-wide {
  grid-row: span 2;
}

.texture {
  position: absolute;
  inset: 0;
  opacity: 0.92;
}

.texture::before,
.texture::after {
  content: "";
  position: absolute;
  inset: 0;
}

.texture::before {
  background:
    radial-gradient(circle at top left, rgba(171, 138, 79, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.92), rgba(231, 221, 210, 0.96)),
    url("/assets/images/marble-pattern.svg") center/cover no-repeat;
}

.texture::after {
  background:
    linear-gradient(135deg, rgba(19, 53, 45, 0.08), transparent 36%),
    linear-gradient(225deg, rgba(171, 138, 79, 0.16), transparent 30%);
}

.texture-2::before {
  background:
    radial-gradient(circle at bottom right, rgba(19, 53, 45, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.92), rgba(235, 227, 216, 0.96)),
    url("/assets/images/marble-pattern.svg") center/cover no-repeat;
}

.texture-3::before {
  background:
    radial-gradient(circle at top right, rgba(171, 138, 79, 0.22), transparent 20%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.92), rgba(226, 235, 229, 0.94)),
    url("/assets/images/marble-pattern.svg") center/cover no-repeat;
}

.application-copy {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 250, 244, 0.78);
  backdrop-filter: blur(8px);
}

.application-copy h3 {
  margin: 0.65rem 0 0.5rem;
  font-size: 1.35rem;
}

.application-copy p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── COVERAGE ─── */
.coverage-box {
  padding: 2rem;
  background: rgba(255, 250, 244, 0.1);
  border: 1px solid rgba(255, 250, 244, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.coverage-box p {
  color: rgba(255, 250, 244, 0.8);
}

/* ─── PROCESS / TIMELINE ─── */
.process-grid {
  display: grid;
  gap: 2rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.78);
}

.timeline-item h3 {
  margin-top: 0.2rem;
}

/* ─── FAQ ─── */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.faq-item {
  align-self: start;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.74);
  transition: background 160ms ease;
}

.faq-item[open] {
  background: var(--paper-strong);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--green);
  font-size: 1.1rem;
  font-weight: 800;
  transition: transform 200ms ease;
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(0deg);
}

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

.faq-item p {
  margin: 1rem 0 0;
  color: var(--muted);
}

/* ─── CONTACTS ─── */
.contact-section {
  padding-bottom: 5rem;
}

.contact-card,
.map-wrap {
  min-height: 100%;
  padding: 2rem;
  background: rgba(255, 250, 244, 0.82);
  border: 1px solid var(--line);
}

.contact-list strong {
  color: var(--green);
}

.map-wrap {
  padding: 0;
  overflow: hidden;
  display: flex;
}

.map-wrap iframe {
  width: 100%;
  min-height: 520px;
  height: 100%;
  flex: 1;
  border: 0;
  display: block;
}

/* ─── FOOTER ─── */
.site-footer {
  padding: 1.6rem 0 5rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  margin: 0 0 .3rem;
  font-weight: 700;
  color: var(--text);
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  text-align: right;
}

.footer-links a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links a:hover {
  color: var(--green);
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 550ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 550ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Page layouts */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem;
  color: #fffaf4;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg, rgba(8, 15, 13, 0.9) 0%, rgba(8, 15, 13, 0.66) 48%, rgba(8, 15, 13, 0.36) 100%),
    radial-gradient(circle at top right, rgba(171, 138, 79, 0.24), transparent 24%),
    url("/assets/images/marble-pattern.svg") center/cover no-repeat;
  transform: scale(1.04);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.page-hero h1,
.story-copy h2,
.contact-strip h2,
.material-page-card h2,
.service-detail h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.page-hero h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 7vw, 6rem);
}

.page-hero p:last-child {
  max-width: 66ch;
  margin: 1.4rem 0 0;
  color: rgba(255, 250, 244, 0.84);
  font-size: 1.08rem;
  line-height: 1.7;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.story-copy h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.story-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.values-panel,
.proof-item,
.material-page-card,
.service-detail {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 244, 0.78);
  box-shadow: var(--shadow);
}

.values-panel {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.values-panel article {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 244, 0.72);
}

.values-panel strong,
.proof-item span,
.material-page-card span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.values-panel h3,
.proof-item h3 {
  margin: 0.5rem 0;
}

.values-panel p,
.proof-item p,
.material-page-card p,
.service-detail p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.proof-grid,
.material-page-grid,
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.proof-item,
.material-page-card,
.service-detail {
  padding: 1.5rem;
}

.material-page-card h2,
.service-detail h2 {
  margin-top: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.material-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.material-gallery-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.8);
  box-shadow: var(--shadow);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.material-gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(14, 26, 22, 0.18);
}

.material-gallery-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.material-gallery-card div {
  padding: 1.35rem;
}

.material-gallery-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.material-gallery-card h3 {
  margin: 0.55rem 0 0.65rem;
  font-family: "Cormorant Garamond", serif;
  color: var(--green);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.material-gallery-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.page-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.page-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.contact-strip {
  padding-top: 4rem;
}

.contact-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.78);
  box-shadow: var(--shadow);
}

.contact-strip h2 {
  max-width: 14ch;
  color: var(--green);
  font-size: clamp(2.1rem, 4vw, 3.5rem);
}

.contact-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.contact-list-large {
  font-size: 1.08rem;
}

.policy-layout {
  max-width: 900px;
}

.policy-updated {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-weight: 700;
}

.policy-section {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 244, 0.78);
  box-shadow: var(--shadow);
}

.policy-section + .policy-section {
  margin-top: 1rem;
}

.policy-section h2 {
  margin: 0 0 0.85rem;
  font-family: "Cormorant Garamond", serif;
  color: var(--green);
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.policy-section p,
.policy-section li {
  color: var(--muted);
  line-height: 1.75;
}

.policy-section p {
  margin: 0;
}

.policy-section p + p,
.policy-section ul + p {
  margin-top: 0.9rem;
}

.policy-section ul {
  display: grid;
  gap: 0.55rem;
  padding-left: 1.1rem;
  margin: 0.8rem 0 0;
}

.policy-section a {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1050px) {
  .hero-grid,
  .split-layout,
  .coverage-grid,
  .contact-grid,
  .intro-band-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 460px;
  }

  .service-grid,
  .application-grid,
  .timeline,
  .faq-grid,
  .proof-grid,
  .material-page-grid,
  .service-detail-grid,
  .material-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .material-photo-board {
    min-height: 480px;
  }

  .application-card-wide {
    grid-row: auto;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 780px) {
  .header-inner {
    min-height: 78px;
  }

  .brand {
    max-width: 200px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.65rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 250, 244, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.9rem 0.75rem;
    border-radius: 12px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(171, 138, 79, 0.08);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-copy {
    padding-top: 2rem;
    padding-bottom: 0.75rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 50px;
  }

  .trust-pills {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .trust-pills li {
    width: 100%;
    border-radius: 16px;
  }

  .hero-showcase {
    min-height: 420px;
    border-radius: 26px;
  }

  .hero-badge {
    width: auto;
    max-width: 8.4rem;
    padding: 0.85rem;
  }

  .hero-showcase-panel {
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
    padding: 1rem;
  }

  .service-grid,
  .application-grid,
  .timeline,
  .faq-grid,
  .stats-grid,
  .proof-grid,
  .material-page-grid,
  .service-detail-grid,
  .material-gallery {
    grid-template-columns: 1fr;
  }

  .material-photo-board {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: auto;
  }

  .material-photo,
  .material-photo-large {
    grid-row: auto;
    min-height: 260px;
  }

  .material-gallery-card img {
    height: 250px;
  }

  .section {
    padding: 4.4rem 0;
  }

  .intro-band-grid,
  .hero-card,
  .contact-card,
  .map-wrap {
    padding: 1.4rem;
  }

  .map-wrap {
    padding: 0;
  }

  .map-wrap iframe {
    min-height: 420px;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .page-hero {
    padding: 4.4rem 0 3rem;
  }

  .page-hero h1 {
    max-width: 11ch;
  }

  .contact-strip {
    padding-top: 3rem;
  }

  .contact-strip-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 1.4rem;
  }

  .contact-strip h2 {
    max-width: 100%;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    text-align: left;
  }

  .fab-call span {
    display: none;
  }

  .fab-call {
    padding: 1rem;
    border-radius: 999px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 2rem), var(--max-width));
    max-width: calc(100vw - 2rem);
  }

  .hero-grid,
  .hero-copy,
  .hero-actions,
  .trust-pills,
  .hero-showcase,
  .material-photo-board,
  .intro-band-grid,
  .contact-grid {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 15vw, 4.15rem);
  }

  .hero-text {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .button {
    white-space: normal;
    text-align: center;
  }

  .hero-showcase {
    min-height: 390px;
  }

  .hero-badge {
    right: 0.75rem;
    max-width: 7.5rem;
  }

  .hero-badge strong {
    font-size: 2rem;
  }

  .hero-showcase-panel {
    left: 0.75rem;
    right: 0.75rem;
  }

  .map-wrap iframe {
    min-height: 390px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}
