@import url('https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@800,700,500&f[]=satoshi@400,500,700');

:root {
  --brand-navy: #1B3A5E;
  --brand-gold: #D4A017;
  --brand-light: #f4f7fa;
  --charcoal: #1a1a1a;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Satoshi', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
}

/* ─── Typography ─────────────────────────────────────── */
.font-display { font-family: 'Cabinet Grotesk', sans-serif; }

h1, h2, h3 {
  font-family: 'Cabinet Grotesk', sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* ─── Announcement Bar ───────────────────────────────── */
.announcement-bar {
  background: #171717;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 24px;
}

/* ─── Navigation ─────────────────────────────────────── */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

nav {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-logo-text {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--brand-navy);
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-navy);
  border-color: var(--brand-gold);
}

.btn-nav-cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-navy);
  border: 1.5px solid var(--brand-navy);
  padding: 10px 22px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-nav-cta:hover {
  background: var(--brand-navy);
  color: #fff;
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--brand-navy);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.mobile-close {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--charcoal);
  line-height: 1;
}

/* ─── Buttons ─────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-navy);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover { background: #152e4d; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--charcoal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 4px;
  border: 1.5px solid rgba(0,0,0,0.15);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--brand-navy);
  color: var(--brand-navy);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-gold:hover { background: #b8891a; }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.4);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

/* ─── Section label ───────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-label-gold { color: var(--brand-gold); }
.section-label-navy { color: var(--brand-navy); }

/* ─── Container ────────────────────────────────────────── */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  padding: 80px 0 0;
  overflow: hidden;
}

.hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--brand-gold);
  color: var(--brand-gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--brand-gold);
}

.hero-subtitle {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
  transition: filter 0.5s;
}

.hero-image-wrap:hover img { filter: grayscale(0); }

.hero-stats-card {
  position: absolute;
  bottom: 32px;
  left: -24px;
  background: #fff;
  border-radius: 16px;
  padding: 20px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  display: flex;
  gap: 28px;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--brand-navy);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-top: 4px;
}

/* ─── Value Props Bar ─────────────────────────────────── */
.value-props {
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-top: 80px;
  padding: 40px 0;
}

.value-props-grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.value-prop {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-prop-icon {
  width: 40px;
  height: 40px;
  background: var(--brand-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-navy);
  font-size: 20px;
}

.value-prop-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.value-prop-desc {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.5;
}

/* ─── Products Section ────────────────────────────────── */
.section-products {
  background: var(--brand-light);
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: #6b7280;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.1);
}

.product-card-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-card:hover .product-card-image img { transform: scale(1.05); }

.product-card-arrow {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  color: var(--brand-navy);
}

.product-card:hover .product-card-arrow {
  opacity: 1;
  transform: translateY(0);
}

.product-card-body {
  padding: 24px;
}

.product-card-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 6px;
}

.product-card-subtitle {
  font-size: 13px;
  color: #9ca3af;
  font-weight: 500;
}

/* ─── Process Section ─────────────────────────────────── */
.section-process {
  padding: 100px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-number {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: rgba(27,58,94,0.08);
  line-height: 1;
  flex-shrink: 0;
  width: 64px;
  transition: color 0.3s;
}

.process-step:hover .step-number { color: var(--brand-gold); }

.step-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
}

.testimonial-card {
  background: var(--brand-light);
  border-radius: 24px;
  padding: 40px;
  margin-top: 16px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--brand-gold);
  font-size: 18px;
}

.testimonial-quote {
  font-size: 17px;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-navy);
}

/* ─── Contact Section ─────────────────────────────────── */
.section-contact {
  background: #171717;
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #9ca3af;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info-item:hover { color: #fff; }

.contact-info-item iconify-icon {
  color: var(--brand-gold);
  font-size: 20px;
  flex-shrink: 0;
}

/* ─── Form ──────────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9ca3af;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 14px 18px;
  color: #fff;
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brand-gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #6b7280;
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Light form variant */
.light-form .form-group input,
.light-form .form-group textarea,
.light-form .form-group select {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  color: var(--charcoal);
}

.light-form .form-group input::placeholder,
.light-form .form-group textarea::placeholder { color: #9ca3af; }

.light-form .form-group label { color: var(--brand-navy); }

.light-form .form-group input:focus,
.light-form .form-group textarea:focus,
.light-form .form-group select:focus { border-color: var(--brand-navy); }

/* ─── Footer ───────────────────────────────────────────── */
footer {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 32px 0;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-logo img { height: 36px; width: auto; }

.footer-logo span {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--brand-navy);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-size: 16px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.footer-socials a:hover {
  border-color: var(--brand-navy);
  color: var(--brand-navy);
}

.footer-copy {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ca3af;
}

/* ─── Page Hero (inner pages) ─────────────────────────── */
.page-hero {
  background: var(--brand-light);
  padding: 80px 0;
}

.page-hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

.page-hero-title {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 16px;
  max-width: 700px;
}

.page-hero-subtitle {
  font-size: 18px;
  color: #6b7280;
  max-width: 560px;
  line-height: 1.7;
}

/* ─── Services sections ───────────────────────────────── */
.service-section {
  padding: 100px 0;
}

.service-section-dark {
  background: #171717;
  padding: 100px 0;
}

.service-section-light {
  background: var(--brand-light);
  padding: 100px 0;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-grid.reverse { direction: rtl; }
.split-grid.reverse > * { direction: ltr; }

.service-image {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-step-number {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: rgba(27,58,94,0.06);
  line-height: 1;
  margin-bottom: -16px;
}

.service-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 16px;
}

.service-desc {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 28px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--charcoal);
}

.feature-list li iconify-icon {
  color: var(--brand-gold);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.fab-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fab-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px 28px;
  transition: background 0.3s;
}

.fab-card:hover { background: rgba(255,255,255,0.1); }

.fab-card-icon {
  font-size: 32px;
  color: var(--brand-gold);
  margin-bottom: 20px;
}

.fab-card-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.fab-card-desc { font-size: 14px; color: #9ca3af; line-height: 1.6; }

.pill-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-navy);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: start;
}

.guarantee-card {
  background: #fff;
  border-radius: 20px;
  padding: 48px;
}

.guarantee-card-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 16px;
}

.guarantee-card-body { font-size: 15px; color: #6b7280; line-height: 1.7; }

.guarantee-panel {
  background: var(--brand-navy);
  border-radius: 20px;
  padding: 48px 36px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.guarantee-panel iconify-icon { font-size: 48px; color: var(--brand-gold); }
.guarantee-years {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
}
.guarantee-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ─── Final CTA ───────────────────────────────────────── */
.section-cta {
  padding: 100px 0;
  text-align: center;
}

.cta-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Gallery / Realisations ──────────────────────────── */
.filter-bar {
  position: sticky;
  top: 80px;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 16px 0;
}

.filter-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-right: 8px;
}

.filter-btn {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid rgba(0,0,0,0.1);
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: var(--brand-navy);
  color: var(--brand-navy);
}

.filter-btn.active {
  background: var(--brand-navy);
  border-color: var(--brand-navy);
  color: #fff;
}

.gallery-section {
  padding: 80px 0;
}

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

.project-card {
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 4/5;
}

.project-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.project-card:hover .project-card-image { transform: scale(1.05); }

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
}

.project-card-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 8px;
}

.project-card-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.project-card-location {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

/* Case Study */
.case-study {
  background: #171717;
  padding: 100px 0;
}

.case-study-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.case-study-label { color: var(--brand-gold); }

.case-study-title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
}

.case-study-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.spec-item {
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 16px 20px;
}

.spec-key {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 4px;
}

.spec-val {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.case-study-quote {
  font-size: 15px;
  font-style: italic;
  color: #9ca3af;
  line-height: 1.7;
  padding-left: 16px;
  border-left: 2px solid var(--brand-gold);
}

.case-study-images {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 540px;
}

.case-study-img {
  border-radius: 16px;
  overflow: hidden;
}

.case-study-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── Devis / Quote form ──────────────────────────────── */
.devis-wrap {
  min-height: calc(100vh - 200px);
  background: var(--brand-light);
  padding: 80px 0;
}

.devis-card {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  padding: 60px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.08);
}

.devis-progress {
  margin-bottom: 48px;
}

.devis-progress-bar {
  height: 4px;
  background: rgba(0,0,0,0.08);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 12px;
}

.devis-progress-fill {
  height: 100%;
  background: var(--brand-gold);
  border-radius: 100px;
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
}

.devis-step-counter {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9ca3af;
}

.devis-step { display: none; }
.devis-step.active { display: block; }

.devis-step-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 8px;
}

.devis-step-subtitle {
  font-size: 15px;
  color: #9ca3af;
  margin-bottom: 32px;
}

.radio-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.radio-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-align: center;
}

.radio-card:hover {
  border-color: var(--brand-navy);
}

.radio-card.selected {
  border-color: var(--brand-navy);
  background: var(--brand-light);
}

.radio-card iconify-icon {
  font-size: 32px;
  color: var(--brand-navy);
}

.radio-card-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-navy);
}

input[type="radio"].sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.budget-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.budget-card {
  padding: 16px 20px;
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
  transition: border-color 0.2s, background 0.2s;
  text-align: center;
}

.budget-card:hover { border-color: var(--brand-navy); }
.budget-card.selected { border-color: var(--brand-navy); background: var(--brand-light); color: var(--brand-navy); }

.file-upload {
  border: 2px dashed rgba(0,0,0,0.12);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s;
}

.file-upload:hover { border-color: var(--brand-navy); }

.file-upload iconify-icon {
  font-size: 40px;
  color: #9ca3af;
  margin-bottom: 12px;
}

.file-upload-text {
  font-size: 14px;
  color: #9ca3af;
}

.file-upload-text strong { color: var(--brand-navy); }

.devis-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.success-state {
  text-align: center;
  padding: 40px 0;
}

.success-icon {
  font-size: 80px;
  color: #22c55e;
  margin-bottom: 24px;
}

.success-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 12px;
}

.success-subtitle {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
}

/* ─── Catalogue ───────────────────────────────────────── */
.catalogue-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  min-height: calc(100vh - 140px);
}

.catalogue-sidebar {
  border-right: 1px solid rgba(0,0,0,0.08);
  padding: 40px 28px;
  position: sticky;
  top: 140px;
  height: calc(100vh - 140px);
  overflow-y: auto;
}

.sidebar-section { margin-bottom: 36px; }

.sidebar-section-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 16px;
}

.sidebar-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--charcoal);
  cursor: pointer;
  padding: 6px 0;
  transition: color 0.2s;
}

.sidebar-option:hover { color: var(--brand-navy); }

.sidebar-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--brand-navy);
  flex-shrink: 0;
}

.catalogue-main {
  padding: 40px 48px;
}

.catalogue-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
  flex-wrap: wrap;
}

.catalogue-count {
  font-size: 14px;
  color: #9ca3af;
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.catalogue-card {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s;
  background: #fff;
}

.catalogue-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.catalogue-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.catalogue-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.catalogue-card-body { padding: 20px; }

.catalogue-card-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 8px;
}

.catalogue-card-specs {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.catalogue-card-spec {
  font-size: 12px;
  color: #9ca3af;
  display: flex;
  justify-content: space-between;
}

.catalogue-card-spec strong { color: var(--charcoal); }

.catalogue-card-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--brand-light);
  color: var(--brand-navy);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ─── Animations ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1),
              transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* View transitions */
@view-transition { navigation: auto; }

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .catalogue-layout { grid-template-columns: 240px 1fr; }
  .catalogue-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .container { padding: 0 24px; }
  .hero-inner { grid-template-columns: 1fr; padding: 0 24px; }
  .hero-image-wrap { display: none; }
  .value-props-grid { grid-template-columns: repeat(2, 1fr); padding: 0 24px; }
  .products-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .split-grid { grid-template-columns: 1fr; }
  .split-grid.reverse { direction: ltr; }
  .fab-cards { grid-template-columns: 1fr; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .case-study-grid { grid-template-columns: 1fr; }
  .case-study-images { height: 320px; grid-template-rows: 1fr; grid-template-columns: 1fr 1fr; }
  .catalogue-layout { grid-template-columns: 1fr; }
  .catalogue-sidebar { position: static; height: auto; border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); }
  .catalogue-main { padding: 24px; }
  .radio-cards { grid-template-columns: 1fr; }
  .devis-card { padding: 32px 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .page-hero-inner { padding: 0 24px; }

  .nav-links,
  .btn-nav-cta {
    display: none;
  }
  .nav-toggle { display: flex; }
}

@media (max-width: 600px) {
  .value-props-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .budget-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
