:root {
  --black: #2D1B2E;
  --charcoal: #3F2640;
  --gold: #E8C87A;
  --sand: #EDE3D0;
  --terracotta: #C17B5C;
  --white: #F7F0E3;
  --muted: #9A8880;
  --line: rgba(232, 200, 122, .18);
  --gold-soft: rgba(232, 200, 122, .14);
  --shadow: 0 24px 70px rgba(28, 16, 32, .22);
  --shadow-card: 0 8px 32px rgba(28, 16, 32, .12);
  --radius: 10px;
  --radius-sm: 6px;
  --container: 1160px;
  --font-heading: "Cormorant Garamond", Garamond, "Times New Roman", serif;
  --font-body: "DM Sans", "Montserrat", ui-sans-serif, system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: #1C1020;
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid rgba(212, 175, 55, .8); outline-offset: 3px; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  background: var(--gold);
  color: var(--black);
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}
.section { padding: 72px 0; }
.section.compact { padding: 48px 0; }
.section.dark {
  background: #1C1020;
  color: var(--white);
}
.section.sand { background: #EDE3D0; }
.eyebrow {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  color: var(--terracotta);
  font-family: "Montserrat", "DM Sans", sans-serif;
  font-weight: 500;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .22em;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
}
h1 {
  font-size: clamp(2.7rem, 8vw, 6.8rem);
  max-width: 920px;
  letter-spacing: -0.02em;
  line-height: 1.04;
}
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.35rem, 3vw, 1.85rem); font-weight: 400; }
p { margin: 0; }
.lead {
  color: #4A3545;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  max-width: 720px;
  line-height: 1.75;
  font-weight: 300;
}
.dark .lead, .dark .muted { color: rgba(247, 240, 227, .72); }
.muted { color: var(--muted); }
.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 32px;
}
.section-head.split {
  grid-template-columns: 1fr;
  align-items: end;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .8rem 1.35rem;
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.btn-primary {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 8px 28px rgba(212, 169, 74, .32);
}
.btn-primary:hover {
  background: #dfb94e;
  box-shadow: 0 12px 36px rgba(212, 169, 74, .42);
}
.btn-secondary {
  background: transparent;
  border-color: rgba(250, 246, 240, .45);
  color: var(--white);
}
.btn-secondary:hover {
  border-color: rgba(250, 246, 240, .75);
  background: rgba(250, 246, 240, .08);
}
.btn-secondary.dark-text {
  border-color: rgba(26, 20, 16, .22);
  color: var(--black);
}
.btn-secondary.dark-text:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  background: rgba(193, 96, 58, .06);
}
.btn-whatsapp::before { content: "✆"; font-weight: 900; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(28, 16, 32, .92);
  color: var(--white);
  border-bottom: 1px solid rgba(232, 200, 122, .12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-weight: 900;
}
.brand img { width: 200px; height: auto; }
.nav-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(250, 247, 240, .2);
  background: transparent;
  color: var(--white);
  border-radius: var(--radius-sm);
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
}
.nav-toggle span::before { transform: translateY(-7px); }
.nav-toggle span::after { transform: translateY(5px); }
.nav-menu {
  position: fixed;
  inset: 76px 0 auto 0;
  display: none;
  grid-template-columns: 1fr;
  gap: .25rem;
  padding: 1rem;
  background: #1C1020;
  border-bottom: 1px solid rgba(232, 200, 122, .12);
}
.nav-menu.is-open { display: grid; }
.nav-menu a {
  padding: .82rem;
  border-radius: var(--radius-sm);
  color: rgba(250, 247, 240, .82);
  font-weight: 750;
}
.nav-menu a:hover, .nav-menu a[aria-current="page"] {
  color: var(--gold);
  background: rgba(212, 175, 55, .1);
}
.header-cta { display: none; }

/* ─── Zellige divider ─────────────────────────────────────── */
.zellige-band {
  height: 52px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cg fill='none' stroke='%23D4A94A' stroke-width='0.9' opacity='0.55'%3E%3Cpolygon points='28,3 32.5,20.5 50,28 32.5,35.5 28,53 23.5,35.5 6,28 23.5,20.5'/%3E%3Cpolygon points='28,10 35,28 28,46 21,28'/%3E%3Cline x1='6' y1='28' x2='50' y2='28'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
  background-size: 56px 56px;
  opacity: 0.7;
  margin: 0;
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(28,16,32,.92), rgba(28,16,32,.50) 55%, rgba(28,16,32,.18)),
              linear-gradient(0deg, rgba(28,16,32,.82), transparent 50%);
  z-index: 1;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 96px 0 64px;
  display: grid;
  gap: 1.35rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  max-width: 720px;
  margin-top: 1rem;
}
.meta-pill {
  border: 1px solid rgba(250, 247, 240, .18);
  background: rgba(11, 11, 11, .28);
  padding: .9rem;
  border-radius: var(--radius);
}
.meta-pill strong { display: block; color: var(--gold); }

.grid { display: grid; gap: 1rem; }
.cards-3 { grid-template-columns: 1fr; }
.cards-4 { grid-template-columns: 1fr; }
.experience-card {
  background: #FDF8F2;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
}
.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(26, 20, 16, .16);
}
.experience-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  transition: transform .4s ease;
}
.experience-card:hover img {
  transform: scale(1.04);
}
.card-body {
  display: grid;
  gap: .9rem;
  padding: 1.1rem 1.2rem 1.2rem;
}
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: .25rem .55rem;
  border-radius: 999px;
  background: var(--gold-soft);
  color: #5d4810;
  font-weight: 800;
  font-size: .82rem;
}
.price {
  color: var(--terracotta);
  font-weight: 900;
}

.feature {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
.feature-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.feature-media img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
}
.check-list, .timeline, .faq-list {
  display: grid;
  gap: .75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
}
.check-list li::before {
  content: "";
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: .15rem;
  box-shadow: inset 0 0 0 6px rgba(255,255,255,.55);
}
.steps {
  counter-reset: step;
}
.step {
  position: relative;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.46);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: .8rem;
  border-radius: 50%;
  background: #2D1B2E;
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: .85rem;
}
.testimonial, .info-panel {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #FDF8F2;
  box-shadow: 0 4px 18px rgba(26, 20, 16, .06);
}
.testimonial strong { display: block; margin-top: .85rem; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #FDF8F2;
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  color: var(--black);
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}
.faq-item button::after { content: "+"; color: var(--terracotta); }
.faq-item.is-open button::after { content: "-"; }
.faq-answer {
  display: none;
  padding: 0 1rem 1rem;
  color: var(--muted);
}
.faq-item.is-open .faq-answer { display: block; }

.page-hero {
  background: linear-gradient(135deg, #1C1020 0%, #2D1B2E 55%, #1C1020 100%);
  color: var(--white);
  padding: 96px 0 60px;
  border-bottom: 1px solid rgba(232, 200, 122, .14);
}
.page-hero .lead, .hero .lead { color: rgba(247, 240, 227, .80); }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: 1rem;
  color: rgba(250, 247, 240, .7);
  font-size: .9rem;
}
.breadcrumb a { color: var(--gold); }
.two-col {
  display: grid;
  gap: 1.5rem;
}
.timeline li {
  padding: 1rem;
  border-left: 3px solid var(--gold);
  background: rgba(212, 175, 55, .08);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
.gallery img {
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}
.price-box {
  position: sticky;
  top: 96px;
  display: grid;
  gap: .9rem;
  padding: 1.25rem;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.price-box .price { color: var(--gold); font-size: 1.6rem; }

.blog-intro-links {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1rem;
}
.article-hero-image {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.article-hero-image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}
.article-shell {
  width: min(100% - 32px, 920px);
  margin-inline: auto;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  color: rgba(250,247,240,.76);
  font-weight: 750;
}
.toc {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #FDF8F2;
}
.toc h2 {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: .7rem;
}
.toc ol {
  margin: 0;
  padding-left: 1.25rem;
}
.toc a {
  color: var(--terracotta);
  font-weight: 800;
}
.article-content {
  display: grid;
  gap: 1.4rem;
}
.article-content h2 {
  margin-top: 1.2rem;
  font-size: clamp(1.85rem, 4vw, 3rem);
}
.article-content h3 {
  margin-top: .6rem;
  font-family: var(--font-body);
  font-size: 1.18rem;
}
.article-content p,
.article-content li {
  color: #453d35;
  font-size: 1.04rem;
}
.article-content ul {
  margin: 0;
  padding-left: 1.25rem;
}
.advice-box,
.article-cta {
  padding: 1.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 175, 55, .32);
  background: linear-gradient(135deg, rgba(212,175,55,.14), rgba(232,216,184,.35));
}
.advice-box strong {
  display: block;
  margin-bottom: .3rem;
  color: var(--terracotta);
}
.article-cta {
  display: grid;
  gap: .8rem;
  align-items: center;
}
.article-cta.dark {
  background: var(--black);
  color: var(--white);
  border-color: rgba(250,247,240,.14);
}
.article-cta.dark p { color: rgba(250,247,240,.78); }
.related-articles {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .article-cta { grid-template-columns: 1fr auto; }
  .related-articles { grid-template-columns: repeat(3, 1fr); }
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
}
.form {
  display: grid;
  gap: .9rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #FDF8F2;
}
.field { display: grid; gap: .35rem; }
.field label { font-weight: 850; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid rgba(11,11,11,.18);
  border-radius: var(--radius-sm);
  padding: .82rem .9rem;
  background: var(--white);
  color: var(--black);
}
.field textarea { min-height: 140px; resize: vertical; }
.error-message { color: #9f2f19; font-weight: 750; min-height: 1.4rem; }

.final-cta {
  background: linear-gradient(135deg, #1C1020 0%, #2D1B2E 50%, #1C1020 100%);
  color: var(--white);
  padding: 72px 0;
  border-top: 1px solid rgba(232, 200, 122, .15);
}
.final-cta .container {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.site-footer {
  background: #130D14;
  color: rgba(247, 240, 227, .75);
  padding: 56px 0 24px;
  border-top: 1px solid rgba(232, 200, 122, .12);
}
.footer-grid {
  display: grid;
  gap: 1.5rem;
}
.footer-grid h3 {
  color: var(--white);
  font-size: 1.15rem;
  font-family: var(--font-body);
}
.footer-links {
  display: grid;
  gap: .45rem;
  margin-top: .7rem;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(250,247,240,.1);
  font-size: .9rem;
}
.footer-credit {
  display: block;
  margin-top: .35rem;
  color: rgba(250,247,240,.62);
}
.footer-credit a {
  color: var(--gold);
  font-weight: 800;
}
.footer-credit a:hover { color: var(--white); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 720px) {
  .section { padding: 92px 0; }
  .section-head.split { grid-template-columns: 1.05fr .95fr; }
  .hero-meta { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
  .cards-4 { grid-template-columns: repeat(4, 1fr); }
  .feature, .two-col, .contact-grid { grid-template-columns: 1.08fr .92fr; }
  .feature.reverse .feature-media { order: 2; }
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .final-cta .container { grid-template-columns: 1fr auto; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

@media (min-width: 1020px) {
  .nav-toggle { display: none; }
  .nav-menu {
    position: static;
    display: flex;
    align-items: center;
    gap: .15rem;
    padding: 0;
    background: transparent;
    border: 0;
  }
  .nav-menu a {
    padding: .55rem .68rem;
    font-size: .93rem;
  }
  .header-cta { display: inline-flex; }
}

@media (max-width: 440px) {
  .hero { min-height: 760px; }
  .btn { width: 100%; }
  .hero-meta { grid-template-columns: 1fr; }
  .brand img { width: 170px; }
}
