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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
}

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

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

ul, ol { list-style: none; }

/* ─── Container ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ─── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  font-variation-settings: 'opsz' 120;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3.5vw, 3rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: var(--space-md); }
p:last-child { margin-bottom: 0; }

.text-muted { color: var(--color-text-muted); }
.text-center { text-align: center; }

/* ─── Section Headers ───────────────────────────────────────── */
.section { padding: var(--space-xl) 0; }
.section-alt { background: var(--color-surface); }

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header h2 { margin-bottom: var(--space-md); }

.section-header p {
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.0625rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}

/* Filled → outlined on hover */
.btn-primary {
  background: var(--color-text);
  color: #fff;
  border-color: var(--color-text);
}

.btn-primary:hover {
  background: transparent;
  color: var(--color-text);
}

/* Outlined → filled on hover */
.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-text);
}

.btn-outline:hover {
  background: var(--color-text);
  color: #fff;
}

/* Black outlined → black filled on hover (nav button) */
.btn-contact {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-text);
}

.btn-contact:hover,
.nav-links a.btn-contact:hover {
  background: var(--color-text);
  color: #fff;
  border-color: var(--color-text);
}

/* White filled → white outlined on hover (for dark/image backgrounds) */
.btn-white {
  background: #fff;
  color: var(--color-text);
  border-color: #fff;
}

.btn-white:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

/* White outlined → white filled with black text on hover (hero buttons) */
.btn-white-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-white-outline:hover {
  background: #fff;
  color: var(--color-text);
  border-color: #fff;
}

/* ─── Navigation ────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  z-index: 200;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
  border-bottom-color: rgba(224, 224, 224, 0.4);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: var(--space-lg);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-logo-img {
  height: 3.09375rem;
  width: auto;
  display: block;
}

.nav-logo:hover { color: var(--color-accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-links a:hover { color: var(--color-accent); }

.nav-links .btn-nav {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.85);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: var(--space-lg);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: var(--space-sm);
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}

.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}

.footer-nav a:hover { color: #fff; }

.footer-contact {
  text-align: right;
}

.footer-contact a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-xs);
  transition: color var(--transition);
}

.footer-contact a:hover { color: #fff; }

.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
  justify-content: flex-end;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.75);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

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

.footer-social svg { width: 18px; height: 18px; fill: currentColor; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.footer-bottom-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
}

.footer-bottom-meta a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  cursor: pointer;
}

.footer-bottom-meta a:hover { color: #fff; }

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--color-text);
}

.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
  transform: translateX(100%);
  transition: transform 0.75s ease-in-out;
}

.hero-bg.is-current { transform: translateX(0); }
.hero-bg.is-prev    { transform: translateX(-100%); }
.hero-bg.no-transition { transition: none; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-hero-overlay);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: var(--space-xl) var(--space-lg);
  max-width: 800px;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-md);
}

.hero-content h1 {
  color: #fff;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
  font-size: clamp(3rem, 8vw, 5rem);
  animation: hero-enter 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s both;
}

.hero-content p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.88);
  max-width: 540px;
  margin: 0 auto var(--space-lg);
  animation: hero-enter 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: hero-enter 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.75s both;
}

.hero-content p { margin-bottom: var(--space-xl); }

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Page hero (shorter, for inner pages) */
.page-hero {
  background: var(--color-text);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.25;
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero-content h1 { color: #fff; margin-bottom: var(--space-sm); }
.page-hero-content p { color: rgba(255,255,255,0.8); margin: 0; }

/* ─── Highlights (3 icon cards) ─────────────────────────────── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.highlight-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.highlight-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.highlight-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  background: rgba(45,80,22,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-icon svg { width: 28px; height: 28px; color: var(--color-accent); }

.highlight-card h3 { margin-bottom: var(--space-sm); font-size: 1.125rem; }
.highlight-card p { color: var(--color-text-muted); font-size: 0.9375rem; margin: 0; }

/* ─── Blog Preview Cards ────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), transform var(--transition);
}

.blog-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.blog-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.blog-card:hover .blog-card-image img { transform: scale(1.04); }

.blog-card-body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.blog-card h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
  transition: color var(--transition);
}

.blog-card:hover h3 { color: var(--color-accent); }

.blog-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  flex: 1;
  margin-bottom: var(--space-md);
}

.blog-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  transition: color var(--transition);
}

.blog-card-link:hover { color: var(--color-accent-hover); }

/* ─── CTA Section ───────────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: var(--space-2xl) 0;
  min-height: 480px;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  left: 0;
  top: -30%;
  width: 100%;
  height: 160%;
  object-fit: cover;
  z-index: 0;
  will-change: transform;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 22, 10, 0.50);
  z-index: 1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 { color: #fff; margin-bottom: var(--space-md); }
.cta-section p { color: rgba(255,255,255,0.85); margin-bottom: var(--space-lg); font-size: 1.0625rem; }

/* ─── Gallery Grid ──────────────────────────────────────────── */
.gallery-filters {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.gallery-grid {
  columns: 3;
  column-gap: var(--space-md);
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--space-md);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 400ms ease;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
  transition: background var(--transition);
}

.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.35); }

.gallery-item-caption {
  color: #fff;
  font-size: 0.875rem;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--transition), transform var(--transition);
}

.gallery-item:hover .gallery-item-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Gallery category cards ────────────────────────────────── */
.gallery-grid--categories {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  column-count: initial;
  column-gap: initial;
}

.gallery-category-card {
  width: 100%;
  cursor: pointer;
}

.gallery-category-card:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
  border-radius: var(--radius-md);
}

.gallery-category-info {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.gallery-category-name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  line-height: 1.2;
}

.gallery-category-count {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.gallery-category-image {
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-border);
}

.gallery-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}

.gallery-category-card:hover .gallery-category-image img { transform: scale(1.03); }

/* ─── Lightbox ──────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
}

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

.lightbox-content {
  position: relative;
  max-width: 1100px;
  max-height: 90vh;
  width: 100%;
}

.lightbox-img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-caption {
  color: rgba(255,255,255,0.8);
  text-align: center;
  padding: var(--space-md) 0 0;
  font-size: 0.9rem;
  margin: 0;
}

.lightbox-counter {
  color: rgba(255,255,255,0.45);
  text-align: center;
  font-size: 0.8125rem;
  padding: var(--space-xs) 0 0;
  margin: 0;
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity var(--transition);
}

.lightbox-close:hover { opacity: 1; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  backdrop-filter: blur(4px);
}

.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-nav.prev { left: -64px; }
.lightbox-nav.next { right: -64px; }

/* ─── Blog list ─────────────────────────────────────────────── */
.blog-list { display: flex; flex-direction: column; gap: var(--space-xl); }

.blog-post-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: var(--space-xl);
  align-items: center;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.blog-post-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }

.blog-post-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.blog-post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.blog-post-card:hover .blog-post-card-image img { transform: scale(1.04); }

.blog-post-card-body { padding: var(--space-xl) var(--space-xl) var(--space-xl) 0; }

.blog-post-card-meta {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.blog-post-card h2 { font-size: 1.5rem; margin-bottom: var(--space-sm); }
.blog-post-card h2 a { transition: color var(--transition); }
.blog-post-card h2 a:hover { color: var(--color-accent); }
.blog-post-card p { color: var(--color-text-muted); margin-bottom: var(--space-lg); }

/* ─── Blog Single Post ──────────────────────────────────────── */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-xl);
  align-items: start;
}

.post-header { margin-bottom: var(--space-xl); }

.post-cover {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-xl);
}

.post-meta {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.post-content { max-width: 720px; }

.post-content h1, .post-content h2, .post-content h3,
.post-content h4, .post-content h5, .post-content h6 {
  margin: var(--space-lg) 0 var(--space-md);
}

.post-content p { margin-bottom: var(--space-md); line-height: 1.8; }

.post-content img {
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
  width: 100%;
}

.post-content ul, .post-content ol {
  margin: var(--space-md) 0 var(--space-md) var(--space-lg);
  list-style: disc;
}

.post-content ol { list-style: decimal; }
.post-content li { margin-bottom: var(--space-sm); }

.post-content blockquote {
  border-left: 4px solid var(--color-accent);
  padding-left: var(--space-lg);
  margin: var(--space-lg) 0;
  font-style: italic;
  color: var(--color-text-muted);
}

.post-sidebar { position: sticky; top: calc(var(--nav-height) + var(--space-lg)); }

.post-sidebar-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
}

/* Semantically h3 (sits under the article h2s); sized like the old h4. */
.post-sidebar-card h3 { font-size: 1.125rem; margin-bottom: var(--space-md); }

/* ─── Contact Page ──────────────────────────────────────────── */
.contact-intro {
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  text-align: center;
  background: var(--color-bg);
}

.contact-intro h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  margin-bottom: var(--space-md);
}

.contact-intro-sub {
  font-family: var(--font-heading);
  font-style: italic;
  font-variation-settings: 'opsz' 120;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--color-text);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Split layout */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

.contact-split-image {
  overflow: hidden;
  position: relative;
}

.contact-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
}

.contact-split-form {
  background: #EDE9E3;
  padding: var(--space-xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

/* Address / contact info header inside form panel */
.cf-page-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.contact-address {
  font-size: 0.9375rem;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.contact-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  font-size: 0.9375rem;
}

.contact-meta a {
  color: var(--color-text);
  transition: color var(--transition);
}

.contact-meta a:hover { color: var(--color-accent); }

.contact-meta-sep { color: var(--color-text-muted); }

/* Form rows and fields */
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.cf-row--top { align-items: start; }

.cf-field {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-md);
}

.cf-field--full {
  grid-column: 1 / -1;
  margin-bottom: var(--space-lg);
}

.cf-field label,
.cf-group-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  display: block;
}

.cf-date-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text);
  display: block;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.cf-req { color: var(--color-text); }

/* Underline-only inputs */
.cf-field input,
.cf-field textarea {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(26,26,26,0.45);
  border-radius: 0;
  padding: var(--space-sm) 0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text);
  outline: none;
  width: 100%;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.cf-field input:focus,
.cf-field textarea:focus {
  border-bottom-color: var(--color-text);
}

.cf-field input.error { border-bottom-color: #c0392b; }

.cf-field textarea {
  resize: none;
  min-height: 72px;
  line-height: 1.6;
}

.cf-field input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.4;
  cursor: pointer;
}

/* Checkboxes */
.cf-checkboxes {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}

.cf-checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9375rem;
  color: var(--color-text);
  cursor: pointer;
}

.cf-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(26,26,26,0.5);
  border-radius: 2px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--color-text);
  background: transparent;
}

/* Send button */
.cf-submit {
  background: var(--color-text);
  color: #fff;
  border-color: var(--color-text);
  min-width: 120px;
  margin-top: var(--space-lg);
  align-self: flex-start;
}

.cf-submit:hover {
  background: transparent;
  color: var(--color-text);
}

/* Field errors */
.field-error {
  font-size: 0.8125rem;
  color: #c0392b;
  margin-top: var(--space-xs);
  margin-bottom: 0;
  min-height: 1.2em;
}

.form-success {
  background: rgba(45,80,22,0.08);
  border: 1px solid rgba(45,80,22,0.2);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  text-align: center;
  display: none;
}

.form-success.is-visible { display: block; }
.form-success h3 { color: var(--color-accent); margin-bottom: var(--space-md); }

.form-error-banner {
  background: rgba(192,57,43,0.08);
  border: 1px solid rgba(192,57,43,0.25);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  font-size: 0.9rem;
  margin-bottom: var(--space-lg);
  display: none;
  color: #c0392b;
}

.form-error-banner.is-visible { display: block; }

/* ─── Vendors ───────────────────────────────────────────────── */
.vendor-category { margin-bottom: var(--space-xl); }

.vendor-category-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
}

.vendor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.vendor-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.vendor-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.09);
  transform: translateY(-2px);
}

.vendor-card-image {
  aspect-ratio: 16/7;
  overflow: hidden;
  background: var(--color-bg);
}

.vendor-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.vendor-card:hover .vendor-card-image img { transform: scale(1.03); }

.vendor-logo-wrap {
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.vendor-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vendor-card-body { padding: var(--space-lg); }

.vendor-card h3 { font-size: 1.0625rem; margin-bottom: var(--space-xs); }

.vendor-card-cat {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent-alt);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

.vendor-card-body p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.vendor-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition), color var(--transition);
}

.vendor-link:hover { color: var(--color-accent-hover); gap: 8px; }

/* ─── FAQ Accordion ─────────────────────────────────────────── */
.faq-intro,
.page-intro {
  max-width: 760px;
  margin: 0 auto var(--space-xl);
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1.0625rem;
}

.faq-intro[hidden] { display: none; }

.page-intro a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-lg) 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  gap: var(--space-md);
  transition: color var(--transition);
}

.faq-question:hover { color: var(--color-accent); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(45,80,22,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}

.faq-icon svg { width: 12px; height: 12px; color: var(--color-accent); transition: transform var(--transition); }

.faq-item.is-open .faq-icon { background: var(--color-accent); }
.faq-item.is-open .faq-icon svg { color: #fff; transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease, padding 300ms ease;
}

.faq-answer-inner {
  padding: 0 0 var(--space-lg);
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* Answers are authored as markdown in the CMS, so they may contain multiple
   paragraphs, lists and links. */
.faq-answer-inner p { margin-bottom: var(--space-md); }
.faq-answer-inner p:last-child { margin-bottom: 0; }

.faq-answer-inner ul,
.faq-answer-inner ol {
  margin: 0 0 var(--space-md) var(--space-lg);
  list-style: disc;
}

.faq-answer-inner ol { list-style: decimal; }
.faq-answer-inner li { margin-bottom: var(--space-xs); }

.faq-answer-inner a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Generous cap: long multi-paragraph answers must not clip on narrow screens. */
.faq-item.is-open .faq-answer { max-height: 1500px; }

/* ─── Directions ────────────────────────────────────────────── */
.directions-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 4/3;
}

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

.venue-address {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.venue-address h2 { margin-bottom: var(--space-md); }

.address-text {
  font-size: 1.0625rem;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.map-links { display: flex; gap: var(--space-md); flex-wrap: wrap; }

.directions-info { margin-top: var(--space-lg); }

.directions-info h2 { margin-bottom: var(--space-md); }

.directions-related {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.directions-related a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── About Page ────────────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-story img {
  border-radius: var(--radius-md);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-story-text { padding: var(--space-lg) 0; }
.about-story-text h2 { margin-bottom: var(--space-lg); }

.usp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.usp-card {
  padding: var(--space-lg);
  border-left: 3px solid var(--color-accent);
}

.usp-card h4 { margin-bottom: var(--space-sm); }
.usp-card p { color: var(--color-text-muted); font-size: 0.9375rem; margin: 0; }

/* ─── Privacy Modal ─────────────────────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  max-width: 580px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(8px);
  transition: transform 200ms ease;
}

.modal-backdrop.is-open .modal-box { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-muted);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition), color var(--transition);
  line-height: 1;
}

.modal-close:hover {
  background: var(--color-border);
  color: var(--color-text);
}

.modal-box h2 { margin-bottom: var(--space-md); font-size: 1.5rem; }
.modal-box h3 { font-size: 1rem; margin: var(--space-lg) 0 var(--space-sm); }
.modal-box p { color: var(--color-text-muted); font-size: 0.9375rem; margin-bottom: var(--space-md); }
.modal-box ul { margin: 0 0 var(--space-md) var(--space-lg); list-style: disc; }
.modal-box li { color: var(--color-text-muted); font-size: 0.9375rem; margin-bottom: var(--space-xs); }

/* ─── 404 Page ──────────────────────────────────────────────── */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

.error-page-inner { max-width: 480px; }
.error-number { font-size: clamp(5rem, 15vw, 10rem); font-family: var(--font-heading); color: var(--color-accent); line-height: 1; margin-bottom: var(--space-md); }
.error-page h1 { font-size: 1.75rem; margin-bottom: var(--space-md); }
.error-page p { color: var(--color-text-muted); margin-bottom: var(--space-xl); }
.error-actions { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; }

/* ─── Privacy Page ──────────────────────────────────────────── */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { margin: var(--space-xl) 0 var(--space-md); font-size: 1.375rem; }
.prose h3 { margin: var(--space-lg) 0 var(--space-sm); font-size: 1.1rem; }
.prose ul { margin: 0 0 var(--space-md) var(--space-lg); list-style: disc; }
.prose li { margin-bottom: var(--space-sm); color: var(--color-text-muted); }
.prose p { color: var(--color-text-muted); }
.prose a { color: var(--color-accent); text-decoration: underline; }

/* ─── Statement Section ─────────────────────────────────────── */
.statement-section {
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  background: var(--color-bg);
}

.statement-eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.04em;
}

.statement-section h2 {
  max-width: 700px;
  margin: 0 auto var(--space-lg);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
}

.statement-divider {
  width: 48px;
  height: 1px;
  background: var(--color-accent);
  margin: 0 auto;
  opacity: 0.5;
}

/* ─── Split Section ──────────────────────────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.split-image {
  overflow: hidden;
  position: relative;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease;
}

.split-section:hover .split-image img { transform: scale(1.03); }

.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl) var(--space-2xl);
  background: var(--color-bg);
}

.split-text h2 {
  margin: var(--space-sm) 0 var(--space-lg);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.2;
}

.split-text h3 {
  margin-bottom: var(--space-lg);
}

.split-text p {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  line-height: 1.85;
  max-width: 440px;
  margin-bottom: var(--space-lg);
}

.split-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

/* ─── Full-Bleed Photo Strip ─────────────────────────────────── */
.full-bleed-photo {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.full-bleed-photo img {
  position: absolute;
  left: 0;
  top: -30%;
  width: 100%;
  height: 160%;
  object-fit: cover;
  will-change: transform;
}

/* ─── Venue / Gallery CTA Section ───────────────────────────── */
.venue-cta-section {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.venue-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.venue-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 22, 10, 0.58);
  z-index: 1;
}

.venue-cta-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: var(--space-xl) var(--space-lg);
  max-width: 600px;
}

.venue-cta-content .section-label { color: rgba(255,255,255,0.65); }

.venue-cta-content h2 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin: var(--space-sm) 0 var(--space-md);
}

.venue-cta-content p {
  color: rgba(255,255,255,0.82);
  font-size: 1.0625rem;
  margin-bottom: var(--space-xl);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Loading State ─────────────────────────────────────────── */
.loading-state {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.empty-state {
  text-align: center;
  padding: var(--space-xl);
  color: var(--color-text-muted);
}

/* ─── Skip link ─────────────────────────────────────────────── */
/* Offscreen until focused, so keyboard users can jump past the nav. */
.skip-link {
  position: absolute;
  left: var(--space-md);
  top: -100px;
  z-index: 300;
  padding: 0.75rem 1.25rem;
  background: var(--color-surface);
  color: var(--color-text);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: top var(--transition);
}

.skip-link:focus {
  top: var(--space-md);
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ─── Utility ───────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ─── Mission section ───────────────────────────────────────── */
.mission-section {
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  background: var(--color-surface);
}

.page-header {
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  background: var(--color-surface);
}

.page-header h1 {
  text-align: center;
  margin: 0 auto var(--space-sm);
}

.page-header h2 {
  max-width: 700px;
  margin: 0 auto var(--space-md);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
}

.mission-section h2 {
  max-width: 700px;
  margin: 0 auto var(--space-lg);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
}

.mission-section p {
  max-width: 660px;
  margin: var(--space-lg) auto 0;
  color: var(--color-text-muted);
  line-height: 1.85;
  font-size: 1.0625rem;
}

/* ─── Occasions section ─────────────────────────────────────── */
.occasions-section {
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  background: var(--color-bg);
}

.occasions-section h2 {
  max-width: 700px;
  margin: 0 auto var(--space-lg);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
}

.occasions-section > p {
  max-width: 760px;
  margin: var(--space-lg) auto var(--space-2xl);
  color: var(--color-text-muted);
  line-height: 1.85;
  font-size: 1.0625rem;
}

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.occasion-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.occasion-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.occasion-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.occasion-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

/* ─── Mid-desktop ───────────────────────────────────────────── */
@media (max-width: 1280px) {
  /* Split-text: 96px horizontal padding becomes cramped below 1300px wide */
  .split-text { padding: var(--space-xl) var(--space-lg); }
  /* Nav links: reduce gap so 6 items breathe at 900–1280px */
  .nav-links { gap: var(--space-md); }
  /* Lightbox arrows: move inside content so they stay on-screen */
  .lightbox-nav.prev { left: var(--space-md); }
  .lightbox-nav.next { right: var(--space-md); }
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .split-section { grid-template-columns: 1fr; min-height: unset; }
  .split-image { aspect-ratio: 4/3; height: auto; }
  .split-text { padding: var(--space-xl) var(--space-lg); }
  .split-text p { max-width: 100%; }
  .full-bleed-photo { height: 280px; }
  .venue-cta-section { min-height: 420px; }
  .highlights-grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .gallery-category-image { aspect-ratio: 16 / 9; }
  .occasions-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story { grid-template-columns: 1fr; }
  .directions-layout { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; }
  .contact-split-image { aspect-ratio: 16/9; min-height: unset; }
  .contact-split-form { padding: var(--space-xl) var(--space-lg); }
  .cf-row { grid-template-columns: 1fr; gap: var(--space-md); }
  .blog-post-card { grid-template-columns: 1fr; }
  .blog-post-card-body { padding: var(--space-lg); }
  .post-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-contact { text-align: center; }
  .footer-social { justify-content: center; }
  .usp-grid { grid-template-columns: 1fr; }
  .vendor-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-md) var(--space-lg) var(--space-lg);
    gap: var(--space-md);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .nav-links.is-open { display: flex; }

  .nav-links .btn-nav { width: 100%; text-align: center; }

  .nav-toggle { display: flex; }

  .nav { position: relative; }
}

@media (max-width: 600px) {
  /* Lightbox: move arrows and close inside the visible content area */
  .lightbox-close {
    top: var(--space-sm);
    right: var(--space-sm);
    background: rgba(0,0,0,0.45);
    border-radius: 50%;
  }
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    background: rgba(0,0,0,0.4);
  }
  .lightbox-nav.prev { left: var(--space-sm); }
  .lightbox-nav.next { right: var(--space-sm); }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--space-md); }
  .section { padding: var(--space-lg) 0; }
  .gallery-grid { columns: 1; }
  .gallery-category-name { font-size: 1.35rem; }
  .gallery-grid--categories { gap: var(--space-xl); }
  .gallery-category-image { aspect-ratio: 4 / 3; }
  .hero-actions { flex-direction: column; align-items: center; }
  .map-links { flex-direction: column; }
  .statement-section { padding: var(--space-xl) var(--space-md); }
  .venue-cta-section { min-height: 280px; }
  .full-bleed-photo { height: 180px; }
  .split-text { padding: var(--space-lg) var(--space-md); }
  .page-hero { padding: var(--space-lg) var(--space-md); }
  .footer-top { gap: var(--space-lg); }
}

/* ─── Scroll Reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .full-bleed-photo img { will-change: auto; }
  .hero-content h1,
  .hero-content p,
  .hero-actions { animation: none; opacity: 1; transform: none; }
}
