/* ==========================================================================
   GERS - Guyanaise d'Équipements Routiers et Sportifs
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --ink: #14140f;
  --ink-soft: #201f19;
  --charcoal: #3f3e41;
  --green: #91a62d;
  --green-light: #a9c13a;
  --green-dark: #74881f;
  --green-pale: #eef1de;
  --paper: #faf9f5;
  --paper-dim: #f1efe7;
  --white: #ffffff;
  --line: rgba(20, 20, 15, 0.1);
  --line-dark: rgba(255, 255, 255, 0.12);
  --text: #1c1c16;
  --text-muted: #5c5b52;
  --text-on-dark: #f4f3ee;
  --text-on-dark-muted: #b9b8ae;

  --container: 1240px;
  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 26px;

  --shadow: 0 20px 50px -20px rgba(20, 20, 15, 0.35);
  --shadow-sm: 0 8px 24px -12px rgba(20, 20, 15, 0.3);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

section {
  position: relative;
}

.section-pad {
  padding: 120px 0;
}

@media (max-width: 900px) {
  .section-pad {
    padding: 76px 0;
  }
}

/* ---------- utility: eyebrow / label ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 30px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  flex-shrink: 0;
}

.eyebrow.on-dark {
  color: var(--green-light);
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.35s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-outline-dark {
  border-color: rgba(20, 20, 15, 0.25);
  color: var(--ink);
}

.btn-outline-dark:hover {
  border-color: var(--ink);
  background: rgba(20, 20, 15, 0.05);
}

.btn-sm {
  padding: 11px 20px;
  font-size: 14px;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header.is-scrolled {
  background: rgba(20, 20, 15, 0.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.5);
}

/* logo */

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

.logo-mark {
  display: flex;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.logo-mark span {
  display: inline-block;
  padding: 5px 8px;
  color: var(--white);
}

.logo-mark .ge {
  background: var(--charcoal);
}

.logo-mark .rs {
  background: var(--green);
}

.logo-tagline {
  display: none;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  line-height: 1.3;
  max-width: 140px;
}

@media (min-width: 1080px) {
  .logo-tagline {
    display: block;
  }
}

/* nav */

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

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text-on-dark);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.3s var(--ease);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--text-on-dark);
}

@media (min-width: 1180px) {
  .header-phone {
    display: flex;
  }
}

.header-phone svg {
  width: 16px;
  height: 16px;
  color: var(--green-light);
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line-dark);
  background: transparent;
  flex-direction: column;
  gap: 5px;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* mobile nav panel */

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 32px 40px;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.4s ease;
  pointer-events: none;
}

.mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
}

.mobile-nav .mobile-contact {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav .mobile-contact a {
  border: none;
  font-size: 16px;
  color: var(--green-light);
  padding: 0;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  padding-top: 110px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 14, 10, 0.55) 0%, rgba(14, 14, 10, 0.35) 30%, rgba(14, 14, 10, 0.55) 65%, rgba(10, 10, 7, 0.95) 100%),
    linear-gradient(90deg, rgba(10, 10, 7, 0.55) 0%, rgba(10, 10, 7, 0.05) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: 64px;
}

.hero-content .eyebrow {
  color: var(--green-light);
}

.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  max-width: 16ch;
  text-wrap: balance;
}

.hero h1 em {
  font-style: normal;
  color: var(--green-light);
}

.hero-sub {
  margin-top: 26px;
  max-width: 640px;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(244, 243, 238, 0.88);
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-stats {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 640px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stats .stat b {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--white);
}

.hero-stats .stat span {
  display: block;
  margin-top: 4px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-on-dark-muted);
}

.scroll-cue {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(244, 243, 238, 0.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

@media (min-width: 900px) {
  .scroll-cue {
    display: flex;
  }
}

.scroll-cue::after {
  content: '';
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, var(--green-light), transparent);
}

/* ==========================================================================
   About / intro strip
   ========================================================================== */

.about {
  background: var(--paper);
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

@media (min-width: 980px) {
  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.about h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  max-width: 14ch;
}

.about-lede {
  font-size: 1.15rem;
  color: var(--text);
  margin-top: 22px;
  max-width: 46ch;
}

.about-body p {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 58ch;
}

.about-body p + p {
  margin-top: 16px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.stat-row b {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  color: var(--ink);
}

.stat-row span {
  display: block;
  margin-top: 4px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
}

/* ==========================================================================
   Expertises
   ========================================================================== */

.expertises {
  background: var(--paper-dim);
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
}

.section-head p {
  margin-top: 18px;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head.light h2,
.section-head.light p {
  color: var(--text-on-dark);
}

.section-head.light p {
  color: var(--text-on-dark-muted);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.expertise-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 4 / 5;
  isolation: isolate;
}

.expertise-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  z-index: -2;
}

.expertise-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 14, 10, 0.05) 0%, rgba(14, 14, 10, 0.35) 45%, rgba(10, 10, 7, 0.94) 100%);
  z-index: -1;
}

.expertise-card:hover img {
  transform: scale(1.08);
}

.expertise-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 26px;
  color: var(--white);
}

.expertise-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--green-light);
  letter-spacing: 0.1em;
}

.expertise-card-content h3 {
  margin-top: 10px;
  font-size: 1.32rem;
  line-height: 1.15;
}

.expertise-card-content p {
  margin-top: 12px;
  font-size: 0.94rem;
  color: rgba(244, 243, 238, 0.82);
  max-width: 34ch;
}

/* ==========================================================================
   Realisations / case studies
   ========================================================================== */

.realisations {
  background: var(--paper);
}

.case-study {
  margin-top: 96px;
}

.case-study:first-of-type {
  margin-top: 0;
}

.case-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 36px;
}

.case-head .eyebrow {
  margin-bottom: 10px;
}

.case-head h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  max-width: 22ch;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.case-meta div {
  font-size: 13px;
}

.case-meta b {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ink);
}

.case-meta span {
  color: var(--text-muted);
  font-weight: 600;
}

.case-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 14px;
}

.case-gallery.gallery-3 {
  grid-template-columns: repeat(6, 1fr);
}

.case-gallery a {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--charcoal);
}

.case-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.case-gallery a:hover img {
  transform: scale(1.06);
}

.case-gallery a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 15, 0);
  transition: background 0.3s ease;
}

.case-gallery a:hover::after {
  background: rgba(20, 20, 15, 0.12);
}

.g-lg {
  grid-column: span 2;
  grid-row: span 2;
}

.g-md {
  grid-column: span 2;
}

.g-sm {
  grid-column: span 1;
}

@media (max-width: 760px) {
  .case-gallery,
  .case-gallery.gallery-3 {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .g-lg {
    grid-column: span 2;
    grid-row: span 2;
  }
  .g-md,
  .g-sm {
    grid-column: span 1;
  }
}

.case-copy {
  margin-top: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
}

@media (min-width: 860px) {
  .case-copy {
    grid-template-columns: 1.3fr 0.7fr;
  }
}

.case-copy p {
  font-size: 1.02rem;
  color: var(--text-muted);
}

.case-quote {
  background: var(--paper-dim);
  border-radius: var(--radius);
  padding: 26px 28px;
  border-left: 4px solid var(--green);
}

.case-quote p {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  font-style: normal;
}

.case-quote cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.case-single {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.case-single img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
}

/* ==========================================================================
   Callout - "le vrai sujet"
   ========================================================================== */

.callout {
  background: var(--ink);
  color: var(--text-on-dark);
  overflow: hidden;
}

.callout .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

@media (min-width: 980px) {
  .callout .container {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.callout h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  max-width: 17ch;
}

.callout h2 mark {
  background: none;
  color: var(--green-light);
}

.callout-body {
  margin-top: 22px;
  font-size: 1.05rem;
  color: var(--text-on-dark-muted);
  max-width: 52ch;
}

.callout-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.callout-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.callout-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: rgba(20, 20, 15, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.callout-badge b {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--white);
}

.callout-badge span {
  font-size: 12.5px;
  color: var(--text-on-dark-muted);
  font-weight: 600;
}

/* ==========================================================================
   Team
   ========================================================================== */

.team {
  background: var(--paper-dim);
}

.team-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

@media (min-width: 980px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.team-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.team-media img {
  width: 100%;
  height: auto;
}

.team-copy h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  max-width: 16ch;
}

.team-copy p {
  margin-top: 20px;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 46ch;
}

.team-roles {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.team-roles li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  border-radius: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
}

.team-roles li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.team-cta {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.team-cta p {
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact {
  background: var(--ink);
  color: var(--text-on-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 56px;
}

@media (min-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact h2 {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  max-width: 14ch;
}

.contact-lede {
  margin-top: 20px;
  font-size: 1.08rem;
  color: var(--text-on-dark-muted);
  max-width: 44ch;
}

.contact-cards {
  margin-top: 36px;
  display: grid;
  gap: 14px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

a.contact-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateX(4px);
}

.contact-card .ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card .ic svg {
  width: 19px;
  height: 19px;
  color: var(--ink);
}

.contact-card b {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-bottom: 4px;
}

.contact-card span,
.contact-card address {
  font-style: normal;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

/* form */

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--text);
}

.contact-form h3 {
  font-size: 1.3rem;
  color: var(--ink);
}

.contact-form p.form-sub {
  margin-top: 8px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.form-row {
  margin-top: 20px;
  display: grid;
  gap: 16px;
}

.form-row.two {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 540px) {
  .form-row.two {
    grid-template-columns: 1fr;
  }
}

.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 7px;
  font-family: 'Poppins', sans-serif;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: var(--text);
  background: var(--paper);
  transition: border-color 0.2s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--green);
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-form .btn {
  margin-top: 22px;
  width: 100%;
}

.form-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
}

.map-embed {
  margin-top: 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 340px;
  filter: grayscale(0.3) contrast(1.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: #0d0d09;
  color: var(--text-on-dark-muted);
  padding: 64px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line-dark);
}

@media (min-width: 860px) {
  .footer-top {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.footer-brand p {
  margin-top: 18px;
  font-size: 14px;
  max-width: 34ch;
  line-height: 1.6;
}

.footer-social {
  margin-top: 22px;
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.footer-social a:hover {
  background: var(--green);
  border-color: var(--green);
}

.footer-social a:hover svg {
  color: var(--ink);
}

.footer-social svg {
  width: 17px;
  height: 17px;
  color: var(--text-on-dark);
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  margin-bottom: 18px;
}

.footer-col ul {
  display: grid;
  gap: 12px;
}

.footer-col a {
  font-size: 14.5px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--green-light);
}

.footer-bottom {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(185, 184, 174, 0.7);
}

/* ==========================================================================
   Lightbox
   ========================================================================== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 10, 7, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(100%, 1100px);
  max-height: 86vh;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-group] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal-group].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-group].is-visible > *:nth-child(2) { transition-delay: 0.08s; }
[data-reveal-group].is-visible > *:nth-child(3) { transition-delay: 0.16s; }
[data-reveal-group].is-visible > *:nth-child(4) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal-group] > * {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   Misc
   ========================================================================== */

::selection {
  background: var(--green);
  color: var(--ink);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--green);
  color: var(--ink);
  padding: 12px 20px;
  font-weight: 700;
  z-index: 999;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}
