/* ═══════════════════════════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════════════════════════ */
:root {
  --c-primary:       #2D5A27;
  --c-primary-dark:  #1B3A1B;
  --c-primary-light: #4A7C59;
  --c-accent:        #C9A84C;
  --c-accent-hover:  #B8963E;

  --c-bg:            #FAFAF8;
  --c-bg-alt:        #F2EDE4;
  --c-text:          #1E1E1E;
  --c-text-muted:    #6B7280;
  --c-border:        #E1DBD0;
  --c-white:         #FFFFFF;

  --c-success:       #2E7D52;
  --c-success-bg:    #EAF7EF;
  --c-error:         #B91C1C;
  --c-error-bg:      #FEF2F2;

  --font-heading:    'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:       'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-h:    68px;
  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;

  --shadow-s:  0 1px 4px rgba(0,0,0,.07), 0 2px 8px rgba(0,0,0,.05);
  --shadow-m:  0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-l:  0 12px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.08);

  --ease:      cubic-bezier(.25,.46,.45,.94);
  --transition: .28s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ═══════════════════════════════════════════════════════════
   LAYOUT HELPERS
═══════════════════════════════════════════════════════════ */
.container {
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding-block: 5rem;
}

.section--alt {
  background: var(--c-bg-alt);
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 700;
  color: var(--c-primary-dark);
  line-height: 1.2;
  margin-bottom: .6rem;
}

.section__subtitle {
  color: var(--c-text-muted);
  font-size: 1.05rem;
  font-weight: 400;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius-s);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.btn--primary {
  background: var(--c-accent);
  color: #1a1000;
  box-shadow: 0 2px 12px rgba(201,168,76,.30);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--c-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,.40);
}

.btn--primary:active { transform: translateY(0); }

.btn--full { width: 100%; }

.btn--hero {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.btn__loader {
  display: none;
  width: 18px;
  height: 18px;
  animation: spin .8s linear infinite;
  flex-shrink: 0;
}

.btn.is-loading .btn__text { display: none; }
.btn.is-loading .btn__loader { display: block; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition), color var(--transition);
}

.nav--transparent {
  background: transparent;
  color: var(--c-white);
}

.nav--solid {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--c-border), 0 4px 20px rgba(0,0,0,.06);
  color: var(--c-text);
}

.nav__inner {
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  transition: opacity var(--transition);

  .nav--transparent & svg { color: var(--c-white); }
  .nav--solid & svg      { color: var(--c-primary); }
}

.nav__logo:hover { opacity: .8; }

.nav__links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav__links a {
  padding: .45rem .85rem;
  border-radius: var(--radius-s);
  font-size: .9rem;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}

.nav--transparent .nav__links a:hover { background: rgba(255,255,255,.15); }
.nav--solid .nav__links a:hover       { background: var(--c-bg-alt); color: var(--c-primary); }

.nav__cta {
  background: var(--c-accent) !important;
  color: #1a1000 !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 10px rgba(201,168,76,.30);
}
.nav__cta:hover { background: var(--c-accent-hover) !important; }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  border-radius: var(--radius-s);
  z-index: 10;
}

.nav__burger span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav--transparent .nav__burger span { background: var(--c-white); }
.nav--solid .nav__burger span       { background: var(--c-text); }

.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  /* Fallback gradient when no image is present */
  background: linear-gradient(
    135deg,
    #0f2310 0%,
    #1b3a1b 30%,
    #2d5a27 65%,
    #3d6b50 100%
  );
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .1s linear;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 25, 10, .38) 0%,
    rgba(10, 25, 10, .62) 50%,
    rgba(10, 25, 10, .78) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--c-white);
  padding: calc(var(--nav-h) + 2rem) 1.5rem 3rem;
  max-width: 800px;
}

.hero__badge {
  display: inline-block;
  background: var(--c-accent);
  color: #1a1000;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.hero__title span {
  color: var(--c-accent);
}

.hero__location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,.82);
  margin-bottom: 2.5rem;
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 1px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-m);
  overflow: hidden;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__stat {
  flex: 1;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  background: rgba(255,255,255,.06);
  transition: background var(--transition);
}

.hero__stat:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,.15);
}

.hero__stat:hover { background: rgba(255,255,255,.12); }

.hero__stat-value {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--c-accent);
}

.hero__stat-label {
  font-size: .75rem;
  font-weight: 400;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Scroll arrow */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255,255,255,.45);
  border-radius: 50%;
  transition: border-color var(--transition), transform var(--transition);
  animation: bounce 2.4s ease-in-out infinite;
}

.hero__scroll:hover { border-color: rgba(255,255,255,.9); }

.hero__scroll-icon {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg) translateY(-3px);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════════════════════════
   FEATURE CARDS (DETAILS)
═══════════════════════════════════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-m);
  padding: 1.75rem 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-m);
  border-color: var(--c-primary-light);
}

.card__icon {
  width: 44px;
  height: 44px;
  background: var(--c-bg-alt);
  border-radius: var(--radius-s);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--c-primary);
}

.card h3 {
  font-size: .88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--c-text-muted);
  margin-bottom: .45rem;
}

.card p {
  font-size: .97rem;
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.45;
}

/* ═══════════════════════════════════════════════════════════
   DESCRIPTION
═══════════════════════════════════════════════════════════ */
.description {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-m);
  padding: 2.5rem;
  border-left: 4px solid var(--c-primary);
}

.description h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--c-primary-dark);
  margin-bottom: 1rem;
}

.description p {
  color: var(--c-text-muted);
  line-height: 1.8;
  margin-bottom: .75rem;
}

.description p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════════════ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  padding-inline: max(.5rem, calc((100% - 1180px) / 2));
}

.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius-s);
  background: var(--c-bg-alt);
  aspect-ratio: 4/3;
}

.gallery__item--wide {
  grid-column: span 2;
  aspect-ratio: 16/7;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease), opacity var(--transition);
  position: relative;
  z-index: 1;
}

.gallery__item img[src=""] { display: none; }

/* Placeholder when image is missing */
.gallery__item::before {
  content: attr(data-index);
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--c-bg-alt) 0%, #e8e3d8 100%);
  color: var(--c-text-muted);
  font-size: 2.5rem;
  font-style: normal;
}

.gallery__item:hover img { transform: scale(1.06); }

.gallery__item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .75rem 1rem .5rem;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  color: white;
  font-size: .82rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}

.gallery__item:hover figcaption,
.gallery__item:focus-within figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
}

.lightbox[hidden] { display: none; }

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 5, .94);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.lightbox__content {
  position: relative;
  z-index: 2;
  max-width: min(90vw, 1100px);
  max-height: 90svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.lightbox__content img {
  max-width: 100%;
  max-height: 82svh;
  border-radius: var(--radius-s);
  object-fit: contain;
  box-shadow: var(--shadow-l);
  animation: lightbox-in .22s var(--ease);
}

@keyframes lightbox-in {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox__caption {
  color: rgba(255,255,255,.75);
  font-size: .88rem;
  text-align: center;
}

.lightbox__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  color: white;
}

.lightbox__close:hover { background: rgba(255,255,255,.22); transform: scale(1.1); }
.lightbox__close svg   { width: 20px; height: 20px; }

.lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  color: white;
}

.lightbox__nav:hover { background: rgba(255,255,255,.22); }
.lightbox__nav svg   { width: 24px; height: 24px; }
.lightbox__prev      { left: 1rem; }
.lightbox__next      { right: 1rem; }

.lightbox__prev:hover { transform: translateY(-50%) translateX(-2px); }
.lightbox__next:hover { transform: translateY(-50%) translateX( 2px); }

/* ═══════════════════════════════════════════════════════════
   MAP
═══════════════════════════════════════════════════════════ */
.map-wrapper {
  position: relative;
  margin-top: 0;
  height: clamp(320px, 50vw, 520px);
}

.map-embed {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(.85) brightness(.97);
}

.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 2rem;
  text-align: center;
  pointer-events: none;
}

.map-placeholder svg {
  width: 52px;
  height: 52px;
  color: var(--c-primary-light);
  opacity: .6;
}

.map-placeholder p {
  color: var(--c-text-muted);
  max-width: 380px;
  font-size: .95rem;
}

.map-placeholder small {
  color: var(--c-text-muted);
  font-size: .8rem;
}

.map-placeholder code {
  background: var(--c-border);
  padding: .1em .35em;
  border-radius: 4px;
  font-size: .78rem;
}

/* Leaflet popup link color */
.leaflet-popup-content a { color: var(--c-primary); }

.map-actions {
  text-align: right;
  margin-top: .75rem;
}

.map-external-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--c-primary);
  text-decoration: none;
  transition: color var(--transition);
}

.map-external-link:hover {
  color: var(--c-primary-dark);
  text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.contact__info h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--c-primary-dark);
  margin-bottom: .9rem;
}

.contact__info > p {
  color: var(--c-text-muted);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.contact__perks {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.contact__perks li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .95rem;
  font-weight: 500;
  color: var(--c-text);
}

.contact__perks svg {
  width: 17px;
  height: 17px;
  color: var(--c-primary);
  flex-shrink: 0;
}

/* Form */
.contact-form {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-l);
  padding: 2.5rem;
  box-shadow: var(--shadow-s);
}

/* Honeypot — completely hidden from view */
.honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.1rem;
}

.form-group--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: .7rem;
  margin-top: .3rem;
}

.form-group--checkbox input {
  margin-top: .2rem;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--c-primary);
  cursor: pointer;
}

.form-group--checkbox label {
  font-size: .85rem;
  color: var(--c-text-muted);
  line-height: 1.5;
  cursor: pointer;
}

label {
  font-size: .875rem;
  font-weight: 500;
  color: var(--c-text);
}

label .optional {
  font-weight: 400;
  color: var(--c-text-muted);
  font-size: .8rem;
}

.required { color: var(--c-error); }

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-s);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--c-text);
  background: var(--c-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(45, 90, 39, .12);
  background: var(--c-white);
}

input.is-invalid,
textarea.is-invalid {
  border-color: var(--c-error);
  box-shadow: 0 0 0 3px rgba(185, 28, 28, .1);
}

textarea { resize: vertical; min-height: 130px; }

.char-count {
  font-size: .78rem;
  color: var(--c-text-muted);
  text-align: right;
  margin-top: .2rem;
}

.char-count.is-near   { color: #B45309; }
.char-count.is-at-max { color: var(--c-error); }

.form-message {
  margin-top: 1rem;
  padding: .85rem 1.1rem;
  border-radius: var(--radius-s);
  font-size: .9rem;
  font-weight: 500;
  display: none;
}

.form-message.is-success {
  display: block;
  background: var(--c-success-bg);
  color: var(--c-success);
  border: 1px solid #86efac;
}

.form-message.is-error {
  display: block;
  background: var(--c-error-bg);
  color: var(--c-error);
  border: 1px solid #fca5a5;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--c-primary-dark);
  color: rgba(255,255,255,.6);
  padding-block: 2.5rem;
  text-align: center;
  font-size: .875rem;
}

.footer p { line-height: 1.6; }
.footer__note { font-size: .78rem; margin-top: .4rem; max-width: 640px; margin-inline: auto; }

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS (Intersection Observer)
═══════════════════════════════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .contact__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__item--wide {
    grid-column: span 2;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  /* Nav burger */
  .nav__burger { display: flex; }

  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--c-white);
    border-bottom: 1px solid var(--c-border);
    padding: .75rem 1rem 1rem;
    box-shadow: var(--shadow-m);
    gap: .25rem;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
    pointer-events: none;
  }

  .nav__links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__links a {
    padding: .65rem 1rem;
    color: var(--c-text) !important;
    font-size: 1rem;
  }

  .nav__links a:hover { background: var(--c-bg-alt); }

  .nav--transparent .nav__links { color: var(--c-text); }

  /* Hero */
  .hero__stats {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero__stat { min-width: calc(50% - 1px); }
  .hero__stat:nth-child(3) { min-width: 100%; }

  /* Cards */
  .cards-grid { grid-template-columns: repeat(2, 1fr); }

  /* Gallery */
  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: .35rem;
    padding-inline: .35rem;
  }
  .gallery__item--wide { grid-column: span 2; }

  /* Lightbox nav */
  .lightbox__prev { left: .25rem; }
  .lightbox__next { right: .25rem; }

  /* Description */
  .description { padding: 1.5rem; }

  /* Contact form */
  .contact-form { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Section padding */
  .section { padding-block: 3.5rem; }
}

@media (max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr; }
  .gallery    { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: span 1; aspect-ratio: 4/3; }
}

/* ═══════════════════════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  [data-animate] { opacity: 1; transform: none; }
  .hero__scroll   { animation: none; }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT NOTICE BANNER
═══════════════════════════════════════════════════════════ */
.contact-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #FFF8E1;
  border: 1.5px solid #F59E0B;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  color: #92400E;
  font-size: 0.95rem;
  line-height: 1.5;
}
.contact-notice svg {
  flex-shrink: 0;
  margin-top: 2px;
  stroke: #F59E0B;
}
.contact-notice a {
  color: #92400E;
  font-weight: 600;
  text-decoration: underline;
}
.contact-notice a:hover {
  color: #78350F;
}
