/* =============================================================
   Côte d'Azur Piscines — style.css
   Primary  : #0a4a4a  (dark teal)
   Accent   : #d4a853  (gold)
   Light bg : #faf8f0  (cream)
   ============================================================= */

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

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.7;
}

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

a { color: #0a4a4a; text-decoration: none; transition: color .2s; }
a:hover { color: #d4a853; }

h1, h2, h3, h4, h5 {
  font-family: 'Georgia', serif;
  line-height: 1.25;
  color: #0a4a4a;
}

p { margin-bottom: 1rem; }

ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Utility ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .85rem 2.2rem;
  border-radius: 4px;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background .25s, color .25s, transform .15s;
  text-align: center;
}

.btn-primary {
  background: #d4a853;
  color: #0a4a4a;
  border: 2px solid #d4a853;
}
.btn-primary:hover {
  background: #b8902e;
  border-color: #b8902e;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #d4a853;
  border: 2px solid #d4a853;
}
.btn-outline:hover {
  background: #d4a853;
  color: #0a4a4a;
  transform: translateY(-2px);
}

.btn-light {
  background: #ffffff;
  color: #0a4a4a;
  border: 2px solid #ffffff;
}
.btn-light:hover {
  background: #d4a853;
  border-color: #d4a853;
  color: #ffffff;
  transform: translateY(-2px);
}

.section-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .8rem;
  color: #d4a853;
  margin-bottom: .5rem;
  font-family: Arial, sans-serif;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #0a4a4a;
  margin-bottom: 1rem;
}

.section-title.light { color: #faf8f0; }

.section-subtitle {
  font-size: 1.1rem;
  color: #444;
  max-width: 680px;
}

.text-center { text-align: center; }
.text-gold   { color: #d4a853; }
.bg-cream    { background: #faf8f0; }
.bg-teal     { background: #0a4a4a; }

/* ── Top bar ──────────────────────────────────────────────── */
.top-bar {
  background: #0a4a4a;
  color: #faf8f0;
  font-size: .82rem;
  padding: .45rem 0;
  font-family: Arial, sans-serif;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.top-bar a { color: #d4a853; }
.top-bar a:hover { color: #faf8f0; }

/* ── Header / Nav ─────────────────────────────────────────── */
.site-header {
  background: #ffffff;
  border-bottom: 3px solid #d4a853;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .8rem 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}

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

.main-nav { display: flex; align-items: center; gap: .25rem; }

.main-nav a {
  padding: .55rem 1rem;
  font-family: Arial, sans-serif;
  font-size: .92rem;
  font-weight: 600;
  color: #0a4a4a;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: background .2s, color .2s;
}
.main-nav a:hover,
.main-nav a.active {
  background: #0a4a4a;
  color: #d4a853;
}

.nav-cta {
  background: #d4a853 !important;
  color: #0a4a4a !important;
  border-radius: 4px !important;
  padding: .55rem 1.2rem !important;
}
.nav-cta:hover {
  background: #b8902e !important;
  color: #ffffff !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #0a4a4a;
  transition: transform .3s, opacity .3s;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-image: url('/images/hero-piscine.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #faf8f0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 74, 74, .92) 0%,
    rgba(10, 74, 74, .78) 60%,
    rgba(0, 0, 0, .55) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-eyebrow {
  display: inline-block;
  background: #d4a853;
  color: #0a4a4a;
  font-family: Arial, sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  color: #faf8f0;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.hero h1 em {
  font-style: normal;
  color: #d4a853;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(250,248,240,.9);
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(250,248,240,.7);
  font-family: Arial, sans-serif;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, #d4a853, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .5; }
  50% { opacity: 1; }
}

/* ── Trust bar ────────────────────────────────────────────── */
.trust-bar {
  background: #0a4a4a;
  padding: 1.4rem 0;
  border-bottom: 3px solid #d4a853;
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: #faf8f0;
  font-family: Arial, sans-serif;
  font-size: .88rem;
}
.trust-icon {
  width: 32px;
  height: 32px;
  background: #d4a853;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

/* ── Section generic ──────────────────────────────────────── */
.section {
  padding: 5rem 0;
}
.section-sm { padding: 3rem 0; }

/* ── Services grid ────────────────────────────────────────── */
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
}

.services-image {
  position: relative;
  overflow: hidden;
}
.services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-content {
  background: #0a4a4a;
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(255,255,255,.06);
  border-left: 3px solid #d4a853;
  border-radius: 0 4px 4px 0;
  transition: background .2s;
}
.service-item:hover { background: rgba(255,255,255,.11); }

.service-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

.service-item h3 {
  font-size: 1rem;
  color: #d4a853;
  margin-bottom: .25rem;
}
.service-item p {
  font-size: .88rem;
  color: rgba(250,248,240,.8);
  margin: 0;
}

/* ── Cards ────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(10,74,74,.1);
  transition: transform .25s, box-shadow .25s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(10,74,74,.18);
}

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

.card-body {
  padding: 1.6rem;
}
.card-body h3 {
  font-size: 1.25rem;
  margin-bottom: .6rem;
  color: #0a4a4a;
}
.card-body p {
  font-size: .93rem;
  color: #555;
  margin-bottom: 1rem;
}

.card-icon {
  width: 56px;
  height: 56px;
  background: #faf8f0;
  border: 2px solid #d4a853;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* ── Banner (vue-nice.jpg) ────────────────────────────────── */
.banner-section {
  position: relative;
  padding: 6rem 0;
  background-image: url('/images/vue-nice.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #faf8f0;
  text-align: center;
  overflow: hidden;
}
.banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 74, 74, .86);
  z-index: 1;
}
.banner-section .container {
  position: relative;
  z-index: 2;
}
.banner-section h2 { color: #faf8f0; margin-bottom: 1rem; }
.banner-section p  { color: rgba(250,248,240,.85); margin-bottom: 2rem; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial {
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(10,74,74,.08);
  position: relative;
  border-top: 4px solid #d4a853;
}
.testimonial::before {
  content: '\201C';
  font-size: 5rem;
  color: #d4a853;
  opacity: .2;
  position: absolute;
  top: -.5rem;
  left: 1rem;
  line-height: 1;
  font-family: Georgia, serif;
}

.stars {
  color: #d4a853;
  font-size: 1.1rem;
  margin-bottom: .75rem;
}
.testimonial p {
  font-style: italic;
  color: #444;
  font-size: .95rem;
  margin-bottom: 1rem;
}
.testimonial-author {
  font-family: Arial, sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: #0a4a4a;
}
.testimonial-location {
  font-size: .8rem;
  color: #888;
  font-family: Arial, sans-serif;
}

/* ── Process steps ────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  counter-reset: step;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: #d4a853;
  opacity: .25;
  line-height: 1;
  margin-bottom: .5rem;
  font-family: Arial, sans-serif;
}

.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
}
.process-step p {
  font-size: .9rem;
  color: #555;
}

/* ── CTA split ────────────────────────────────────────────── */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.cta-image {
  position: relative;
  overflow: hidden;
}
.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-content {
  background: #0a4a4a;
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.cta-content h2 { color: #faf8f0; }
.cta-content p  { color: rgba(250,248,240,.85); }
.cta-actions    { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: .5rem; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { max-width: 820px; margin: 3rem auto 0; }

.faq-item {
  border-bottom: 1px solid rgba(10,74,74,.15);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.4rem 0;
  font-family: 'Georgia', serif;
  font-size: 1.05rem;
  color: #0a4a4a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color .2s;
}
.faq-question:hover { color: #d4a853; }

.faq-chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0a4a4a;
  color: #faf8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  transition: transform .3s, background .2s;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: #d4a853;
}

.faq-answer {
  display: none;
  padding: 0 0 1.4rem;
  color: #444;
  font-size: .98rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ── Blog grid ────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10,74,74,.08);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(10,74,74,.15);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-meta {
  font-family: Arial, sans-serif;
  font-size: .78rem;
  color: #888;
  margin-bottom: .6rem;
  display: flex;
  gap: .8rem;
  align-items: center;
}
.blog-tag {
  background: #faf8f0;
  color: #0a4a4a;
  border: 1px solid #d4a853;
  padding: .15rem .6rem;
  border-radius: 3px;
  font-size: .75rem;
}
.blog-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: .6rem;
  color: #0a4a4a;
  flex: 1;
}
.blog-card-body p {
  font-size: .9rem;
  color: #555;
  margin-bottom: 1rem;
}
.blog-read-more {
  font-family: Arial, sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: #d4a853;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.blog-read-more:hover { color: #0a4a4a; }

/* ── Article page ─────────────────────────────────────────── */
.article-header {
  background: #0a4a4a;
  padding: 5rem 0 4rem;
  color: #faf8f0;
}
.article-header h1 { color: #faf8f0; font-size: clamp(1.8rem, 4vw, 3rem); }
.article-meta {
  margin-top: 1rem;
  font-family: Arial, sans-serif;
  font-size: .85rem;
  color: rgba(250,248,240,.7);
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
  padding: 4rem 0;
}

.article-body { font-size: 1.05rem; line-height: 1.85; }
.article-body h2 { font-size: 1.5rem; color: #0a4a4a; margin: 2rem 0 .8rem; }
.article-body h3 { font-size: 1.2rem; color: #0a4a4a; margin: 1.5rem 0 .6rem; }
.article-body ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.article-body ul li { margin-bottom: .4rem; color: #444; }
.article-body img { border-radius: 8px; margin: 1.5rem 0; }
.article-body blockquote {
  border-left: 4px solid #d4a853;
  padding: 1rem 1.5rem;
  background: #faf8f0;
  border-radius: 0 6px 6px 0;
  font-style: italic;
  color: #555;
  margin: 1.5rem 0;
}

.article-sidebar { position: sticky; top: 100px; }

.sidebar-widget {
  background: #faf8f0;
  border-radius: 8px;
  padding: 1.8rem;
  margin-bottom: 1.5rem;
  border-top: 3px solid #d4a853;
}
.sidebar-widget h4 {
  font-size: 1rem;
  color: #0a4a4a;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: Arial, sans-serif;
}
.sidebar-links { display: flex; flex-direction: column; gap: .5rem; }
.sidebar-links a {
  font-size: .9rem;
  color: #0a4a4a;
  padding: .35rem 0;
  border-bottom: 1px solid rgba(10,74,74,.1);
  transition: color .2s, padding-left .2s;
}
.sidebar-links a:hover { color: #d4a853; padding-left: .4rem; }

/* ── Contact ──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  padding: 5rem 0;
}

.contact-info h2 { font-size: 1.8rem; margin-bottom: 1rem; }
.contact-info p  { color: #555; margin-bottom: 1.5rem; }

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
  padding: 1rem;
  background: #faf8f0;
  border-radius: 6px;
}
.contact-detail-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.contact-detail h4 {
  font-size: .9rem;
  color: #0a4a4a;
  margin-bottom: .2rem;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.contact-detail p { font-size: .95rem; color: #555; margin: 0; }

/* Form */
.contact-form-wrap {
  background: #faf8f0;
  border-radius: 10px;
  padding: 2.5rem;
  box-shadow: 0 4px 30px rgba(10,74,74,.08);
}
.contact-form-wrap h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: #0a4a4a;
}

.form-group { margin-bottom: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

label {
  display: block;
  font-family: Arial, sans-serif;
  font-size: .83rem;
  font-weight: 700;
  color: #0a4a4a;
  margin-bottom: .4rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-family: 'Georgia', serif;
  font-size: .95rem;
  color: #1a1a1a;
  background: #ffffff;
  transition: border-color .2s, box-shadow .2s;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #d4a853;
  box-shadow: 0 0 0 3px rgba(212,168,83,.15);
}
textarea { min-height: 130px; resize: vertical; }

/* ── Page hero (inner pages) ─────────────────────────────── */
.page-hero {
  background: #0a4a4a;
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,168,83,.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  color: #faf8f0;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  margin-bottom: .8rem;
}
.page-hero p {
  color: rgba(250,248,240,.8);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: .5rem;
  font-family: Arial, sans-serif;
  font-size: .82rem;
  color: rgba(250,248,240,.6);
  margin-bottom: 1.2rem;
}
.breadcrumb a { color: #d4a853; }
.breadcrumb span { color: rgba(250,248,240,.4); }

/* ── Pricing / feature list ───────────────────────────────── */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin: 1.2rem 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .97rem;
  color: #444;
}
.feature-list li::before {
  content: '✓';
  color: #d4a853;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .05rem;
}

/* ── Highlight boxes ──────────────────────────────────────── */
.highlight-box {
  background: #faf8f0;
  border-left: 4px solid #d4a853;
  padding: 1.2rem 1.5rem;
  border-radius: 0 6px 6px 0;
  margin: 1.5rem 0;
}
.highlight-box p { margin: 0; color: #444; font-size: .97rem; }

/* ── Stats ────────────────────────────────────────────────── */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 3rem 0;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #d4a853;
  line-height: 1;
  font-family: Arial, sans-serif;
}
.stat-label {
  font-size: .85rem;
  color: #faf8f0;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .4rem;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: #051e1e;
  color: #faf8f0;
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250,248,240,.1);
}

.footer-brand p {
  font-size: .9rem;
  color: rgba(250,248,240,.7);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.footer-brand .logo-img { height: 52px; margin-bottom: .5rem; }

.footer-col h5 {
  font-family: Arial, sans-serif;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 1.2rem;
  color: #d4a853;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a {
  color: rgba(250,248,240,.7);
  font-size: .9rem;
  transition: color .2s, padding-left .2s;
}
.footer-col ul li a:hover {
  color: #d4a853;
  padding-left: .4rem;
}

.footer-contact-item {
  display: flex;
  gap: .8rem;
  margin-bottom: 1rem;
  font-size: .9rem;
  color: rgba(250,248,240,.7);
}
.footer-contact-item strong {
  display: block;
  color: #faf8f0;
  font-size: .85rem;
  margin-bottom: .15rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  font-family: Arial, sans-serif;
  font-size: .8rem;
  color: rgba(250,248,240,.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { color: rgba(250,248,240,.5); }
.footer-bottom a:hover { color: #d4a853; }

.client-link {
  display: block;
  margin-top: 1.2rem;
  font-size: .88rem;
  color: rgba(250,248,240,.55);
}
.client-link a { color: #d4a853; }
.client-link a:hover { color: #faf8f0; }

/* ── 404 ──────────────────────────────────────────────────── */
.not-found {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}
.not-found-code {
  font-size: 8rem;
  font-weight: 900;
  color: #d4a853;
  opacity: .3;
  line-height: 1;
  font-family: Arial, sans-serif;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

@media (max-width: 768px) {
  .hero { background-attachment: scroll; min-height: 100vh; }
  .banner-section { background-attachment: scroll; }

  .main-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: #0a4a4a;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 999;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    color: #faf8f0;
    font-size: 1.2rem;
  }
  .main-nav a:hover { color: #d4a853; background: none; }

  .nav-toggle { display: flex; z-index: 1000; position: relative; }

  .services-intro { grid-template-columns: 1fr; }
  .services-image { min-height: 280px; }
  .services-content { padding: 2.5rem 1.8rem; }

  .cta-split { grid-template-columns: 1fr; }
  .cta-image { min-height: 260px; order: -1; }
  .cta-content { padding: 2.5rem 1.8rem; }

  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .trust-bar .container { gap: 1.2rem; }

  .process-steps { grid-template-columns: 1fr 1fr; }

  .stats-row { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; }
  .top-bar .container { flex-direction: column; gap: .3rem; text-align: center; }
}
