/* ============================================================
   Maison Scisco — style.css
   Dark navy #0c1829 | Gold #c5a44e | Cream #faf5eb
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0c1829;
  --navy2:  #101f36;
  --navy3:  #162845;
  --gold:   #c5a44e;
  --gold2:  #d4b86a;
  --cream:  #faf5eb;
  --cream2: #f3ead6;
  --white:  #ffffff;
  --text-light: #cdd5e0;
  --text-mid:   #8a95a3;
  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans:  'Inter', 'Helvetica Neue', Arial, sans-serif;
  --transition: 0.3s ease;
}

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

body {
  font-family: var(--ff-sans);
  background: var(--navy);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold2); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--ff-serif);
  line-height: 1.2;
  color: var(--white);
}

p { margin-bottom: 1rem; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- TYPOGRAPHY ---------- */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
  color: var(--white);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 620px;
  margin-bottom: 2.5rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold2);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197,164,78,0.35);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(12, 24, 41, 0.97);
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.76rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.16em !important;
  color: var(--gold) !important;
  border: 1.5px solid var(--gold);
  padding: 0.5rem 1.3rem;
  border-radius: 2px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO (VIDEO) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(12,24,41,0.90) 0%,
    rgba(20,40,60,0.45) 50%,
    rgba(12,24,41,0.92) 100%);
  z-index: 1;
}

.hero-video { background-color: #0c1829; }

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  opacity: 0.45;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 5rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 780px;
}

.hero-title span { color: var(--gold); }

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ---------- INTRO / ABOUT BAND ---------- */
.intro-band {
  background: var(--navy2);
  padding: 5rem 0;
  border-top: 1px solid rgba(197,164,78,0.15);
  border-bottom: 1px solid rgba(197,164,78,0.15);
}

.intro-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stat-item {
  border-left: 2px solid var(--gold);
  padding-left: 1.2rem;
}

.stat-num {
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* ---------- SERVICES GRID ---------- */
.services-section {
  padding: 6rem 0;
  background: var(--navy);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(197,164,78,0.12);
  margin-top: 3rem;
}

.service-card {
  background: var(--navy);
  padding: 2.5rem;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.service-card:hover { background: var(--navy2); }
.service-card:hover::before { width: 100%; }

.service-icon {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-size: 1.2rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ---------- TWO-COL FEATURE ---------- */
.feature-section {
  padding: 6rem 0;
}

.feature-section.cream-bg {
  background: var(--cream);
  color: var(--navy);
}
.feature-section.cream-bg h2,
.feature-section.cream-bg h3,
.feature-section.cream-bg .section-title { color: var(--navy); }
.feature-section.cream-bg p,
.feature-section.cream-bg .section-subtitle { color: #3a4a5a; }
.feature-section.cream-bg .section-label { color: var(--gold); }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.feature-img {
  overflow: hidden;
  border-radius: 2px;
}

.feature-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.feature-img:hover img { transform: scale(1.03); }

.feature-text ul {
  list-style: none;
  margin: 1.5rem 0;
}

.feature-text ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.feature-section.cream-bg .feature-text ul li { color: #4a5a6a; }

.feature-text ul li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ---------- BANNER (CSS BG) ---------- */
.banner-section {
  position: relative;
  padding: 6rem 0;
  background-image: url('/images/packaging.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12,24,41,0.82);
}

.banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.banner-inner .section-title { font-size: clamp(2rem, 4vw, 3.2rem); }
.banner-inner .section-subtitle { margin: 0 auto 2.5rem; }

/* ---------- PORTFOLIO CTA ---------- */
.portfolio-section {
  padding: 6rem 0;
  background: var(--cream);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.portfolio-section .section-title { color: var(--navy); }
.portfolio-section .section-label { color: var(--gold); }
.portfolio-section .section-subtitle { color: #3a4a5a; }

.portfolio-img {
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 24px 60px rgba(12,24,41,0.22);
}

.portfolio-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.portfolio-img:hover img { transform: scale(1.03); }

/* ---------- PROCESS STEPS ---------- */
.process-section {
  padding: 6rem 0;
  background: var(--navy2);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(197,164,78,0.15);
  border-radius: 2px;
  transition: border-color var(--transition), background var(--transition);
}
.process-step:hover {
  border-color: rgba(197,164,78,0.5);
  background: rgba(197,164,78,0.04);
}

.step-num {
  font-family: var(--ff-serif);
  font-size: 3rem;
  color: rgba(197,164,78,0.2);
  line-height: 1;
  margin-bottom: 1rem;
}

.process-step h4 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: var(--white);
}

.process-step p {
  font-size: 0.83rem;
  color: var(--text-mid);
  margin-bottom: 0;
}

/* ---------- TESTIMONIAL ---------- */
.testimonial-section {
  padding: 6rem 0;
  background: var(--navy);
  text-align: center;
}

.testimonial-quote {
  max-width: 780px;
  margin: 0 auto;
}

.quote-mark {
  font-family: var(--ff-serif);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.35;
  line-height: 0.6;
  margin-bottom: 2rem;
  display: block;
}

.testimonial-quote blockquote {
  font-family: var(--ff-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- BLOG / GAZETTE ---------- */
.gazette-section {
  padding: 6rem 0;
  background: var(--navy2);
}

.gazette-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.article-card {
  background: var(--navy);
  border-radius: 2px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(197,164,78,0.08);
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  border-color: rgba(197,164,78,0.25);
}

.article-thumb {
  overflow: hidden;
  height: 220px;
}

.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.article-card:hover .article-thumb img { transform: scale(1.06); }

.article-body {
  padding: 1.5rem;
}

.article-cat {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

.article-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--white);
  line-height: 1.3;
}

.article-body p {
  font-size: 0.83rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
  line-height: 1.65;
}

.article-meta {
  font-size: 0.75rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.article-meta::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--gold);
}

/* ---------- PAGE HERO (INTERIOR) ---------- */
.page-hero {
  padding: 10rem 0 4rem;
  background: var(--navy2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197,164,78,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .section-title { font-size: clamp(2.2rem, 5vw, 3.8rem); }
.page-hero .section-subtitle { margin: 0 auto; }

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  padding: 1rem 0;
  background: var(--navy);
  border-bottom: 1px solid rgba(197,164,78,0.1);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-mid);
}

.breadcrumb-list a { color: var(--gold); }
.breadcrumb-list a:hover { color: var(--gold2); }
.breadcrumb-sep { color: rgba(197,164,78,0.4); }

/* ---------- CONTENT SECTIONS ---------- */
.content-section {
  padding: 5rem 0;
}

.content-section.alt { background: var(--navy2); }

.two-col-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.content-block h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.content-block h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
}

.gold-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.gold-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.5rem;
  flex-shrink: 0;
  margin-top: 0.35rem;
}

/* ---------- CONTACT PAGE ---------- */
.contact-section {
  padding: 5rem 0;
  background: var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(197,164,78,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.9rem;
}

.contact-item-text p { margin-bottom: 0.25rem; font-size: 0.9rem; }
.contact-item-text strong { color: var(--white); font-size: 0.85rem; }

.contact-form .form-group {
  margin-bottom: 1.25rem;
}

.contact-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--navy2);
  border: 1.5px solid rgba(197,164,78,0.2);
  border-radius: 2px;
  color: var(--white);
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-mid); }
.contact-form select option { background: var(--navy2); }
.contact-form textarea { resize: vertical; min-height: 140px; }

/* ---------- GAZETTE PAGE ---------- */
.gazette-full {
  padding: 5rem 0;
  background: var(--navy);
}

.gazette-full .gazette-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
}

/* ---------- ARTICLE PAGE ---------- */
.article-page {
  padding: 4rem 0 6rem;
  background: var(--navy);
}

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

.article-main h2 {
  font-size: 1.6rem;
  margin: 2rem 0 1rem;
}

.article-main h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.75rem;
  color: var(--gold);
}

.article-main p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.article-main ul, .article-main ol {
  margin: 1rem 0 1.5rem 1rem;
}

.article-main ul li, .article-main ol li {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.article-main ul li::before {
  content: '—';
  color: var(--gold);
  position: absolute;
  left: -0.5rem;
}

.article-main ol {
  list-style: decimal;
  padding-left: 1.5rem;
}

.article-main ol li::before { display: none; }

.article-mid-img {
  margin: 2.5rem 0;
  border-radius: 2px;
  overflow: hidden;
}

.article-mid-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.article-cta-box {
  background: var(--navy2);
  border: 1px solid rgba(197,164,78,0.25);
  border-left: 3px solid var(--gold);
  padding: 1.5rem;
  border-radius: 2px;
  margin: 2rem 0;
}

.article-cta-box p {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.client-link {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.client-link:hover { color: var(--gold2); }

/* Sidebar */
.article-sidebar {
  position: sticky;
  top: 90px;
}

.sidebar-widget {
  background: var(--navy2);
  border: 1px solid rgba(197,164,78,0.12);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.sidebar-widget h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(197,164,78,0.15);
}

.sidebar-links li {
  margin-bottom: 0.6rem;
}

.sidebar-links a {
  font-size: 0.85rem;
  color: var(--text-light);
  display: block;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--transition), padding-left var(--transition);
}
.sidebar-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

/* ---------- PLAN DU SITE ---------- */
.sitemap-section {
  padding: 5rem 0;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.sitemap-col h3 {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(197,164,78,0.2);
}

.sitemap-col ul li { margin-bottom: 0.5rem; }
.sitemap-col ul a {
  font-size: 0.88rem;
  color: var(--text-light);
}
.sitemap-col ul a:hover { color: var(--gold); }

/* ---------- 404 PAGE ---------- */
.error-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--navy);
  padding: 4rem 0;
}

.error-code {
  font-family: var(--ff-serif);
  font-size: 8rem;
  color: rgba(197,164,78,0.15);
  line-height: 1;
  margin-bottom: 1rem;
}

.error-section h1 { font-size: 2rem; margin-bottom: 1rem; }
.error-section p { color: var(--text-mid); margin-bottom: 2rem; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy2);
  border-top: 1px solid rgba(197,164,78,0.15);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img { height: 40px; margin-bottom: 1.2rem; }

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(197,164,78,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 0.8rem;
  transition: all var(--transition);
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(197,164,78,0.08);
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  font-size: 0.85rem;
  color: var(--text-mid);
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}
.footer-col ul a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(197,164,78,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-mid);
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.78rem;
  color: var(--text-mid);
}
.footer-legal a:hover { color: var(--gold); }

/* ---------- GOLD SEPARATOR ---------- */
.gold-sep {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(197,164,78,0.2));
  margin: 1rem 0 1.5rem;
}

.gold-sep.centered { margin: 1rem auto 1.5rem; }

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

@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 0; right: 0; bottom: 0; width: 280px; background: rgba(10,18,30,0.98); backdrop-filter: blur(12px); flex-direction: column; justify-content: center; align-items: flex-start; padding: 2rem; gap: 1.5rem; z-index: 999; transform: translateX(100%); transition: transform 0.35s ease; }
  .nav-links.open { display: flex; transform: translateX(0); }
  .nav-links a { font-size: 1rem; }
  .nav-toggle { display: flex; z-index: 1001; }
  .intro-band-inner, .feature-grid, .feature-grid.reverse, .portfolio-grid, .two-col-content, .contact-grid { grid-template-columns: 1fr; direction: ltr; gap: 2rem; }
  .feature-grid.reverse { direction: ltr; }
  .services-grid { grid-template-columns: 1fr; }
  .gazette-grid { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .process-steps { grid-template-columns: 1fr; }
  .intro-stats { grid-template-columns: 1fr 1fr; }
  .gazette-full .gazette-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .intro-stats { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
}
