﻿:root {
  --ink: #101a16;
  --muted: #4a5e52;
  --text-field: #071510;
  --text-field-soft: #13241e;
  --cream: #c8e3d1;
  --paper: #d4efe0;
  --card: #f9fdfb;
  --accent: #2d6a4f;
  --accent-soft: #3a8c6a;
  --moss: #5c7f62;
  --canopy: #1b4332;
  --page-bg: #598859;
  --line: rgba(27, 67, 50, 0.12);
  --shadow: 0 12px 36px rgba(27, 67, 50, 0.1);
  --radius: 14px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Source Sans 3", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-field);
  font-weight: 600;
  background-color: var(--page-bg);
  background-image:
    radial-gradient(ellipse 120% 80% at 0% 0%, rgba(45, 106, 79, 0.09), transparent 55%),
    radial-gradient(ellipse 100% 60% at 100% 30%, rgba(92, 127, 98, 0.1), transparent 50%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(160, 208, 172, 0.24), transparent 55%);
  background-attachment: fixed;
}

/* Subtle dark veil over the whole page (content stays above, clicks pass through) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(7, 22, 17, 0.1);
}

main,
.site-footer {
  position: relative;
  z-index: 2;
}

a {
  color: var(--text-field);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #000000;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(216, 232, 222, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-stack {
  padding: 0.65rem 0 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.header-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
}

.lang-btn {
  width: 1.45rem;
  height: 1.1rem;
  border: 1px solid rgba(27, 67, 50, 0.2);
  border-radius: 3px;
  background: transparent;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform 0.12s ease, border-color 0.2s ease;
}

.lang-btn:hover {
  border-color: rgba(27, 67, 50, 0.45);
  transform: translateY(-1px);
}

.lang-btn.is-active {
  border-color: rgba(27, 67, 50, 0.7);
}

.lang-btn.flag-fr {
  background: linear-gradient(to right, #0055a4 33.33%, #ffffff 33.33% 66.66%, #ef4135 66.66%);
}

.lang-btn.flag-gb {
  background-color: #012169;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3CclipPath id='t'%3E%3Cpath d='M0,0 v30 h60 v-30 z'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23t)'%3E%3Cpath d='M0,0 L60,30 M60,0 L0,30' stroke='%23fff' stroke-width='6'/%3E%3Cpath d='M0,0 L60,30 M60,0 L0,30' stroke='%23C8102E' stroke-width='3.5'/%3E%3Cpath d='M30,0 v30 M0,15 h60' stroke='%23fff' stroke-width='10'/%3E%3Cpath d='M30,0 v30 M0,15 h60' stroke='%23C8102E' stroke-width='6'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.header-quick {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.85rem;
  padding-top: 0.55rem;
  border-top: 1px solid var(--line);
}

.quick-label {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-field-soft);
  flex-shrink: 0;
}

.nav-quick {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 0.1rem;
  flex: 1;
  min-width: 0;
}

.nav-quick a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-field);
  text-decoration: none;
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  white-space: nowrap;
}

.nav-quick a:hover {
  background: rgba(45, 106, 79, 0.12);
  color: #000000;
}

.nav-quick a.nav-quick-cta {
  background: var(--accent);
  color: var(--paper);
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
}

.nav-quick a.nav-quick-cta:hover {
  background: var(--accent-soft);
  color: var(--paper);
}

.nav-quick-sep {
  width: 1px;
  height: 1rem;
  background: var(--line);
  margin: 0 0.25rem;
  flex-shrink: 0;
}

/* Ancres : dÃ©calage sous lâ€™en-tÃªte fixe */
main section[id] {
  scroll-margin-top: 5.75rem;
}

main section[id] article[id] {
  scroll-margin-top: 6rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
}

.brand:hover {
  color: inherit;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 0;
  background: linear-gradient(155deg, var(--accent) 0%, var(--canopy) 100%);
  box-shadow: 0 4px 14px rgba(27, 67, 50, 0.25);
  display: grid;
  place-items: center;
  color: var(--paper);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  overflow: hidden;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0f2f23;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.brand-text span {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #1b4332;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-shadow: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--accent-soft);
  color: var(--paper);
}

.btn-ghost {
  background: transparent;
  color: var(--text-field);
  border: 1.5px solid var(--text-field);
}

.btn-ghost:hover {
  background: rgba(45, 106, 79, 0.08);
  color: #000000;
  border-color: #000000;
}

/* Hero (title + CTA only — odd: photo) */
.hero {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 6rem;
  min-height: min(48vh, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse 85% 55% at 50% -5%, rgba(168, 206, 168, 0.35), transparent 58%),
    radial-gradient(ellipse 70% 45% at 15% 40%, rgba(45, 106, 79, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 50% at 92% 60%, rgba(92, 127, 98, 0.12), transparent 45%),
    linear-gradient(180deg, #f7fcf8 0%, var(--page-bg) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 30, 23, 0.28) 0%, rgba(11, 30, 23, 0.4) 100%),
    var(--site-hero-bg-image) center/cover no-repeat;
  z-index: 0;
  opacity: 1;
  filter: brightness(1);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.12) 24%, rgba(255, 255, 255, 0) 55%),
    radial-gradient(circle at 50% 35%, rgba(12, 32, 24, 0.08) 0%, rgba(12, 32, 24, 0) 62%);
}

.hero .wrap {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(4.2rem, 12vw, 6.8rem);
  font-weight: 700;
  margin: 0 0 1.1rem;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: #f7f0de;
  -webkit-text-stroke: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.hero-place {
  margin: 0 0 1.6rem;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.2vw, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: #f0e6cf;
  -webkit-text-stroke: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-domain {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-field-soft);
  font-weight: 600;
}

/* Quick actions */
.section {
  padding: 4.5rem 0;
}

.section-photo-bg {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  /* Alternance page : hero + sections .is-image = photo + voile léger ; sections .is-color = dégradé vert seul (ne pas y mettre --section-photo). */
  --section-tint: linear-gradient(180deg, rgba(244, 250, 246, 0.50) 0%, rgba(232, 244, 236, 0.20) 100%);
  --section-color-bg: linear-gradient(180deg, rgba(44, 110, 53, 0.9) 0%, rgba(52, 172, 68, 0.40) 80%);
}

.section-photo-bg .wrap {
  text-shadow: none;
}

.section-photo-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  /* --section-photo is set inline as url(...) on some sections; omit variable = no image */
  background-image: var(--section-photo, none);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.02);
  filter: brightness(1);
}

.section-photo-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--section-tint);
}

.section-photo-bg.is-color::after {
  background: var(--section-color-bg);
}

.partners.section-photo-bg {
  background: transparent;
}

.partners-panel {
  max-width: 980px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  text-align: center;
  color: var(--text-field);
}

.section-lead {
  text-align: center;
  color: var(--text-field-soft);
  max-width: 32rem;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
}

.info-panel {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--font-sans);
  font-weight: 400;
  text-shadow: none;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.85rem 1.85rem 1.75rem;
  box-shadow: var(--shadow);
}

.info-panel ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.info-panel p {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.info-panel p:last-child {
  margin-bottom: 0;
}

/* Content columns */
.two-col {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.prose h2 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  margin: 0 0 0.75rem;
  color: var(--text-field);
}

.info-panel .prose h2 {
  color: var(--ink);
}

.prose p {
  margin: 0 0 1rem;
  color: var(--text-field-soft);
  font-weight: 500;
}

.prose p:last-child {
  margin-bottom: 0;
}

.info-panel p,
.info-panel li,
.textes-block p,
.photo-group .photo-group-meta {
  color: var(--muted);
  font-weight: 400;
}

.prose h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  color: var(--text-field);
  line-height: 1.2;
}

.info-panel .prose h3,
.textes-block h3,
.photo-group h3 {
  color: var(--ink);
}

/* Textes — colonne présentation + grilles */
.textes-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  margin-top: 0.25rem;
}

@media (min-width: 960px) {
  /* 1fr + 3fr ⇒ left column = same width as each of the three cards (¼ row each) */
  .textes-layout {
    grid-template-columns: 1fr 3fr;
    gap: 1.25rem;
  }

  .textes-lede,
  .textes-main {
    min-width: 0;
  }

  .textes-layout .textes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.textes-lede .hero-domain {
  margin: 0 0 1rem;
}

.textes-lede .tagline {
  font-size: 1.05rem;
  line-height: 1.55;
}

.textes-lede .tagline-secondary {
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-size: 0.98rem;
}

.textes-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 0;
}

@media (min-width: 900px) {
  .textes-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

.textes-block {
  background: var(--card);
  font-family: var(--font-sans);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.6rem;
  box-shadow: var(--shadow);
  text-shadow: none;
}

.textes-block .textes-kind {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--moss);
  margin-bottom: 0.35rem;
}

/* Documents — listes dans les cadres Présentation / Lettres */
.textes-doc-intro {
  margin: 1rem 0 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.textes-lede .textes-doc-intro {
  margin-top: 1.1rem;
}

.textes-doc-list {
  margin: 0 0 0.15rem;
  padding-left: 1.15rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-field);
}

.textes-block p + .textes-doc-list {
  margin-top: 0.55rem;
}

.textes-doc-list li {
  margin-bottom: 0.35rem;
}

.textes-doc-list a {
  color: var(--text-field);
  font-weight: 500;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.textes-doc-list a:hover {
  color: #000000;
}

.textes-doc-ext {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-field-soft);
  white-space: nowrap;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
}

.carousel-nav {
  display: flex;
  justify-content: flex-end;
  gap: 0.4rem;
  margin-bottom: 0.45rem;
}

.carousel-btn {
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(27, 67, 50, 0.24);
  background: rgba(27, 67, 50, 0.12);
  color: var(--text-field);
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: rgba(27, 67, 50, 0.2);
}

.photo-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: none;
  scrollbar-width: thin;
  padding-bottom: 0.2rem;
}

.photo-carousel figure {
  /* Show 4 photos at once on desktop */
  flex: 0 0 calc((100% - (0.75rem * 3)) / 4);
  scroll-snap-align: start;
}

@media (max-width: 900px) {
  .brand-text strong {
    font-size: 1.35rem;
  }

  .brand-text span {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
  }

  .photo-carousel figure {
    flex: 0 0 calc((100% - 0.75rem) / 2);
  }
}

.photo-groups {
  display: grid;
  gap: 1.5rem;
}

.photo-group {
  background: var(--card);
  font-family: var(--font-sans);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  text-shadow: none;
}

.photo-group-single {
  max-width: 100%;
}

.photo-group h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.3rem;
}

.photo-group-meta {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, #c5ddc8 0%, #9bc4a3 45%, #6b9b7a 100%);
  border: 1px solid rgba(27, 67, 50, 0.15);
}

.gallery figcaption {
  display: none;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.gallery a:hover img {
  transform: scale(1.03);
  transition: transform 180ms ease;
}

.photo-credit {
  position: absolute;
  right: 0.45rem;
  bottom: 0.45rem;
  padding: 0.14rem 0.42rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  color: #f4f8f5;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(2px);
  text-shadow: none;
}

.ph {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--text-field-soft);
  font-size: 0.8rem;
  text-align: center;
  padding: 0.5rem;
}

.photo-group .ph {
  color: var(--muted);
}

/* Map / access */
.map-box {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  min-height: 280px;
  box-shadow: var(--shadow);
  text-shadow: none;
}

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

.map-fallback {
  padding: 2rem;
  text-align: center;
  color: var(--muted);
}

/* Partners */
.partners {
  background: transparent;
}

.partner-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  padding: 1.1rem 0 0.25rem;
}

.partner-slot {
  width: 160px;
  height: 96px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.65rem;
  background: var(--cream);
  box-sizing: border-box;
}

.partner-slot img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-logo--square {
  max-height: 52px;
  max-width: 52px;
  object-fit: contain;
}

.partner-slot--with-note {
  height: 96px;
}

.partner-slot-note {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-field-soft);
  text-align: center;
}

.partner-slot--vmf {
  background: #1e3a5f;
  border-color: #2a5080;
}

a.partner-slot {
  text-decoration: none;
  color: inherit;
}

a.partner-slot:hover {
  border-color: var(--text-field-soft);
  color: var(--text-field);
}

a.partner-slot--vmf:hover {
  border-color: #5a7eb8;
}

/* Events */
.events-board {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.event-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem 1.5rem 1.6rem;
  text-shadow: none;
}

.event-date-badge {
  display: inline-block;
  margin: 0 0 0.55rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 67, 50, 0.22);
  background: rgba(27, 67, 50, 0.08);
  color: var(--text-field);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.event-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.2;
}

.event-time {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.event-schedule {
  margin: 0;
  padding-left: 1.05rem;
  color: var(--muted);
}

.event-schedule li + li {
  margin-top: 0.32rem;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #f2f5f1;
  background:
    linear-gradient(180deg, rgba(11, 30, 23, 0.34) 0%, rgba(11, 30, 23, 0.5) 100%),
    var(--site-footer-bg-image) center/cover no-repeat;
  border-top: 1px solid rgba(244, 250, 246, 0.24);
}

.site-footer a {
  color: #f2f5f1;
}

.site-footer a:hover {
  color: #ffffff;
}

.site-footer .social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.site-footer .social a {
  font-weight: 600;
}

.social-link {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 24, 18, 0.62);
  border: 2px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  color: #f6f8f4;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.social-link:hover {
  background: rgba(10, 24, 18, 0.78);
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.45);
  transform: translateY(-1px);
}

.social-link svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.site-footer .social-link--facebook {
  color: #1877f2;
}

.site-footer .social-link--instagram {
  color: #e1306c;
}

.site-footer .social-link--facebook:hover {
  color: #1877f2;
}

.site-footer .social-link--instagram:hover {
  color: #e1306c;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-form {
  display: grid;
  gap: 0.65rem;
}

.contact-form label {
  font-weight: 600;
  color: var(--text-field);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(27, 67, 50, 0.22);
  border-radius: 10px;
  padding: 0.65rem 0.7rem;
  font: inherit;
  color: var(--text-field);
  background: #ffffff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(45, 106, 79, 0.3);
  outline-offset: 1px;
}

.contact-form-actions {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.contact-note {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 16, 12, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 120;
  padding: 1.4rem;
}

.photo-lightbox.is-open {
  display: flex;
}

.photo-lightbox-image {
  max-width: min(94vw, 1200px);
  max-height: 84vh;
  border-radius: 10px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 1;
}

.photo-lightbox-close,
.photo-lightbox-nav {
  position: absolute;
  z-index: 3;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  color: #f4f9f6;
  background: rgba(16, 44, 33, 0.62);
  transition: background 140ms ease;
}

.photo-lightbox-close:hover,
.photo-lightbox-nav:hover {
  background: rgba(16, 44, 33, 0.86);
}

.photo-lightbox-close {
  top: 1rem;
  right: 1rem;
  width: 2.2rem;
  height: 2.2rem;
  font-size: 1.5rem;
  line-height: 1;
}

.photo-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.4rem;
  line-height: 1;
}

.photo-lightbox-prev {
  left: 1rem;
}

.photo-lightbox-next {
  right: 1rem;
}

body.is-lightbox-open {
  overflow: hidden;
}
