/* ============================================================
   Mon Archi d'intérieur à Nice — style.css v1
   Dark navy #0c1829 | Gold #c5a44e | Cream #faf5eb
   ============================================================ */

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --navy:  #0c1829;
  --navy2: #111f35;
  --gold:  #c5a44e;
  --gold2: #a8893b;
  --cream: #faf5eb;
  --cream2:#f0e8d5;
  --white: #ffffff;
  --text:  #1a1a2e;
  --mid:   #4a4a6a;
  --muted: #6b7280;
  --radius: 3px;
  --shadow: 0 4px 32px rgba(12,24,41,.16);
  --t: .3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.75;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; transition: color var(--t); }
ul  { list-style: none; }
p   { margin-bottom: 1rem; }

h1,h2,h3,h4,h5 {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem,5vw,3.8rem); }
h2 { font-size: clamp(1.8rem,3.5vw,2.8rem); }
h3 { font-size: clamp(1.2rem,2.2vw,1.6rem); }

.container      { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

/* ── Utilities ──────────────────────────────────────────── */
.text-center { text-align: center; }
.text-center .section-lead { margin-left: auto; margin-right: auto; }
.text-center .divider-gold { margin-left: auto; margin-right: auto; }

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-title { color: var(--navy); margin-bottom: 20px; }
.section-title em { font-style: italic; color: var(--gold); }
.section-title.light { color: var(--white); }
.section-lead {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 640px;
  margin-bottom: 48px;
}
.section-lead.light { color: rgba(250,245,235,.72); }

.divider-gold { width: 60px; height: 2px; background: var(--gold); margin: 16px 0 32px; }

.section-pad    { padding: 100px 0; }
.section-pad-sm { padding: 64px 0; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t);
}
.btn:hover { background: var(--gold); color: var(--navy); }

.btn-solid { background: var(--gold); color: var(--navy); }
.btn-solid:hover { background: #d4b96a; border-color: #d4b96a; color: var(--navy); }

.btn-dark  { border-color: var(--navy); color: var(--navy); }
.btn-dark:hover { background: var(--navy); color: var(--white); }

.btn-cream { border-color: var(--cream); color: var(--cream); }
.btn-cream:hover { background: var(--cream); color: var(--navy); }

/* ── Navigation ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(12,24,41,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(197,164,78,.2);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  transition: background var(--t), color var(--t);
}
.nav-cta:hover { background: var(--gold); color: var(--navy) !important; }
.nav-cta::after { display: none !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  transition: transform var(--t), opacity var(--t);
}

/* ── Split Hero ─────────────────────────────────────────── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.hero-text-half {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  padding-top: 130px;
  background: var(--navy);
  color: #fff;
}
.hero-text-half .hero-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.hero-text-half h1 { color: #fff; margin-bottom: 24px; }
.hero-text-half h1 em { font-style: italic; color: var(--gold); }
.hero-text-half p {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-video-half {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero-split-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .8;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 30px; left: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.hero-scroll-hint::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: .5;
}

/* ── Page Hero (inner pages) ────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 160px 40px 80px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 3px;
  background: var(--gold);
}
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,.7); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  background: var(--cream2);
  padding: 14px 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  letter-spacing: .1em;
  color: var(--mid);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 8px; color: var(--gold); }

/* ── Stats Bar ──────────────────────────────────────────── */
.stats-bar { background: var(--gold); padding: 48px 40px; }
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { color: var(--navy); }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: .8;
  display: block;
}

/* ── Intro / About ──────────────────────────────────────── */
.intro-strip { background: var(--cream); padding: 100px 40px; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.intro-img-wrap { position: relative; }
.intro-img-wrap img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.intro-img-wrap::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 2px solid var(--gold);
  z-index: -1;
}

/* ── Services Section ───────────────────────────────────── */
.services-section { background: var(--navy); padding: 100px 40px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
  margin-top: 60px;
}
.service-card {
  padding: 48px 36px;
  border: 1px solid rgba(197,164,78,.2);
  background: rgba(255,255,255,.03);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--t), transform var(--t);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height .4s;
}
.service-card:hover { box-shadow: 0 20px 60px rgba(12,24,41,.3); transform: translateY(-4px); }
.service-card:hover::before { height: 100%; }
.service-icon { font-size: 2.2rem; color: var(--gold); margin-bottom: 20px; }
.service-card h3 { color: #fff; margin-bottom: 12px; }
.service-card p  { color: rgba(255,255,255,.65); font-size: .95rem; }

/* ── Réalisations Grid ──────────────────────────────────── */
.realisations-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.realisation-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.realisation-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.realisation-card:hover img { transform: scale(1.06); }
.realisation-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,24,41,.9) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  opacity: 0;
  transition: opacity .4s;
}
.realisation-card:hover .realisation-overlay { opacity: 1; }
.realisation-overlay h3 { color: #fff; font-size: 1.2rem; margin-bottom: 4px; }
.realisation-overlay span {
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Filter Bar ─────────────────────────────────────────── */
.filter-bar {
  background: var(--cream2);
  padding: 24px 40px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid rgba(12,24,41,.25);
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  transition: all .25s;
}
.filter-btn:hover,
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ── Vue Nice Banner ────────────────────────────────────── */
.vue-banner {
  background-image: url('/images/vue-nice.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 120px 40px;
  text-align: center;
  color: #fff;
}
.vue-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12,24,41,.7);
}
.vue-banner > * { position: relative; z-index: 1; }
.vue-banner h2 { color: #fff; margin-bottom: 16px; }
.vue-banner p  { color: rgba(255,255,255,.8); max-width: 600px; margin: 0 auto 32px; font-size: 1.1rem; }

/* ── Two-col CTA ────────────────────────────────────────── */
.two-col-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}
.two-col-img { overflow: hidden; }
.two-col-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.two-col-img:hover img { transform: scale(1.04); }
.two-col-content {
  background: var(--navy);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
}
.two-col-content .section-label { color: var(--gold); }
.two-col-content .section-title { color: #fff; }
.two-col-content .section-title em { color: var(--gold); }
.two-col-content p { color: rgba(255,255,255,.75); margin-bottom: 32px; }

/* ── Testimonials ───────────────────────────────────────── */
.testimonials-section { background: var(--cream); padding: 100px 40px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
  margin-top: 60px;
}
.testimonial-card {
  background: var(--white);
  padding: 48px 36px;
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 4px 32px rgba(12,24,41,.05);
}
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-quote { font-size: 1.05rem; color: var(--mid); font-style: italic; margin-bottom: 24px; line-height: 1.8; }
.testimonial-author {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--navy);
}
.testimonial-location { color: var(--gold); font-size: .7rem; display: block; margin-top: 4px; }

/* ── Process Steps ──────────────────────────────────────── */
.process-section { background: var(--navy); padding: 100px 40px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 32px;
  margin-top: 64px;
  counter-reset: step;
}
.process-step { text-align: center; }
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(197,164,78,.15);
  line-height: 1;
  margin-bottom: -20px;
}
.process-step h3 { color: var(--gold); margin-bottom: 10px; font-size: 1.1rem; }
.process-step p  { color: rgba(255,255,255,.65); font-size: .92rem; }

/* ── Blog / Inspirations ────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
}
.blog-card {
  background: var(--white);
  overflow: hidden;
  border: 1px solid rgba(197,164,78,.15);
  transition: box-shadow var(--t), transform var(--t);
}
.blog-card:hover { box-shadow: 0 12px 48px rgba(12,24,41,.1); transform: translateY(-3px); }
.blog-img-wrap { overflow: hidden; aspect-ratio: 16/9; }
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.05); }
.blog-card-body { padding: 28px 28px 32px; }
.blog-meta {
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.blog-card-body h3 { margin-bottom: 12px; font-size: 1.2rem; color: var(--navy); }
.blog-card-body p  { font-size: .95rem; color: var(--mid); margin-bottom: 20px; }
.blog-read-more {
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .2s;
}
.blog-read-more:hover { gap: 14px; }
.blog-read-more::after { content: '→'; }

/* ── Article Pages ──────────────────────────────────────── */
.article-hero-img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
  margin-top: 72px;
}
.article-wrap { max-width: 800px; margin: 0 auto; padding: 80px 40px; }
.article-header { margin-bottom: 48px; }
.article-header h1 { color: var(--navy); margin-bottom: 20px; }
.article-header .article-lead {
  font-size: 1.15rem;
  color: var(--mid);
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 0;
}
.article-body h2 { color: var(--navy); margin: 48px 0 16px; font-size: 1.6rem; }
.article-body h3 { color: var(--navy); margin: 36px 0 12px; }
.article-body p  { color: var(--mid); margin-bottom: 20px; line-height: 1.85; }
.article-body img { width: 100%; margin: 36px 0; border-radius: var(--radius); }
.article-body ul { margin: 20px 0 20px 28px; list-style: disc; color: var(--mid); }
.article-body ul li { margin-bottom: 8px; line-height: 1.7; }
.article-tags { margin-top: 48px; border-top: 1px solid rgba(197,164,78,.3); padding-top: 24px; }
.article-tags a {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-right: 8px;
  margin-bottom: 8px;
  transition: background .25s, color .25s;
}
.article-tags a:hover { background: var(--gold); color: var(--navy); }
.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 0 40px;
}
.article-nav a {
  padding: 24px 28px;
  background: var(--cream);
  border: 1px solid rgba(197,164,78,.2);
  color: var(--navy);
  transition: border-color .25s;
}
.article-nav a:hover { border-color: var(--gold); }
.article-nav-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}
.article-nav-title { font-size: .95rem; color: var(--navy); }

/* ── Services Detail ────────────────────────────────────── */
.services-detail { background: var(--white); padding: 80px 40px; }
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 48px;
  margin-top: 48px;
}
.svc-detail-card {
  border: 1px solid rgba(197,164,78,.2);
  padding: 40px 36px;
  transition: box-shadow var(--t);
}
.svc-detail-card:hover { box-shadow: var(--shadow); }
.svc-detail-card h3 { color: var(--navy); margin-bottom: 12px; }
.svc-detail-card p  { color: var(--mid); font-size: .95rem; margin-bottom: 20px; }
.svc-detail-card ul { list-style: none; }
.svc-detail-card ul li {
  color: var(--mid);
  font-size: .92rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(197,164,78,.12);
  display: flex;
  align-items: center;
  gap: 10px;
}
.svc-detail-card ul li::before { content: '◆'; color: var(--gold); font-size: .5rem; flex-shrink: 0; }

/* ── Villa Page ─────────────────────────────────────────── */
.villa-features {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
  margin: 60px 0;
}
.villa-feature {
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
  border: 1px solid rgba(197,164,78,.2);
}
.villa-feature-icon { font-size: 2.4rem; color: var(--gold); margin-bottom: 16px; }
.villa-feature h3   { color: var(--navy); margin-bottom: 10px; }
.villa-feature p    { color: var(--mid); font-size: .92rem; margin: 0; }

.zones-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  margin-top: 40px;
}
.zone-tag {
  background: var(--navy);
  color: var(--gold);
  text-align: center;
  padding: 16px 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid rgba(197,164,78,.25);
}

/* ── Contact ────────────────────────────────────────────── */
.contact-section { background: var(--cream); padding: 100px 40px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-info h3 { color: var(--navy); margin-bottom: 20px; }
.contact-info p  { color: var(--mid); margin-bottom: 0; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  font-size: .95rem;
  color: var(--mid);
}
.contact-detail-icon {
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .9rem;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1px solid rgba(12,24,41,.2);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color .25s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ── Client Link ────────────────────────────────────────── */
.client-link-section { background: var(--cream2); padding: 48px 40px; text-align: center; }
.client-link-section p { font-family: 'Montserrat', sans-serif; font-size: .88rem; color: var(--mid); margin: 0; }
.client-link-section a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.client-link-section a:hover { color: var(--gold2); }

/* ── Sitemap ────────────────────────────────────────────── */
.sitemap-section { padding: 80px 40px; background: var(--white); }
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.sitemap-group h3 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}
.sitemap-group ul li { margin-bottom: 8px; }
.sitemap-group ul li a { font-size: .92rem; color: var(--mid); }
.sitemap-group ul li a:hover { color: var(--gold); }

/* ── 404 ────────────────────────────────────────────────── */
.not-found {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--navy);
  color: #fff;
  padding: 40px;
}
.not-found-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(6rem,20vw,14rem);
  font-weight: 900;
  color: rgba(197,164,78,.15);
  line-height: .9;
  margin-bottom: -20px;
}
.not-found h1 { color: var(--gold); margin-bottom: 16px; font-size: clamp(1.6rem,3vw,2.4rem); }
.not-found p  { color: rgba(255,255,255,.65); max-width: 480px; margin: 0 auto 36px; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 80px 40px 32px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand img { height: 40px; margin-bottom: 20px; }
.footer-brand p   { font-size: .88rem; max-width: 280px; line-height: 1.7; color: rgba(255,255,255,.55); }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .88rem; color: rgba(255,255,255,.55); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  letter-spacing: .08em;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--gold); }

/* ── Scroll-to-top ──────────────────────────────────────── */
#scrollTop {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--navy);
  border: none; border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: var(--shadow);
  transition: background var(--t);
}
#scrollTop:hover { background: var(--gold2); }
#scrollTop.visible { display: flex; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid      { grid-template-columns: repeat(2,1fr); }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps      { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid  { grid-template-columns: repeat(2,1fr); }
  .stats-inner        { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .sitemap-grid       { grid-template-columns: repeat(2,1fr); }
  .blog-grid          { grid-template-columns: repeat(2,1fr); }
  .zones-grid         { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .hero-split         { grid-template-columns: 1fr; }
  .hero-text-half     { padding: 100px 28px 48px; }
  .hero-video-half    { height: 300px; }
  .hero-scroll-hint   { display: none; }
  .nav-links          { display: none; }
  .nav-hamburger      { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(12,24,41,.98);
    padding: 28px;
    gap: 20px;
    align-items: flex-start;
  }
  .nav-cta { display: none; }
  .intro-grid         { grid-template-columns: 1fr; gap: 40px; }
  .intro-img-wrap::before { display: none; }
  .two-col-cta        { grid-template-columns: 1fr; }
  .two-col-content    { padding: 56px 32px; }
  .realisations-grid  { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .services-grid      { grid-template-columns: 1fr; }
  .blog-grid          { grid-template-columns: 1fr; }
  .process-steps      { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr; }
  .stats-inner        { grid-template-columns: repeat(2,1fr); }
  .sitemap-grid       { grid-template-columns: 1fr 1fr; }
  .contact-grid       { grid-template-columns: 1fr; gap: 40px; }
  .form-row           { grid-template-columns: 1fr; }
  .villa-features     { grid-template-columns: 1fr; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .article-nav        { grid-template-columns: 1fr; padding: 0 24px; }
  .article-wrap       { padding: 48px 24px; }
  .section-pad        { padding: 64px 0; }
  .container, .container-wide { padding: 0 24px; }
  .vue-banner         { background-attachment: scroll; }
  .breadcrumb         { padding: 14px 24px; }
}

@media (max-width: 480px) {
  .realisations-grid  { grid-template-columns: 1fr; }
  .stats-inner        { grid-template-columns: 1fr; }
  .sitemap-grid       { grid-template-columns: 1fr; }
  .zones-grid         { grid-template-columns: 1fr 1fr; }
}
