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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  color: #2c2c2c;
  background-color: #faf8f5;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Merriweather', serif;
  color: #2c2c2c;
}

a { color: #2c3e2d; }

/* === Navigation === */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #2c3e2d;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

nav .logo {
  font-family: 'Merriweather', serif;
  color: #faf8f5;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
}

nav .nav-links {
  display: flex;
  list-style: none;
  gap: 1.75rem;
  align-items: center;
}

nav .nav-links a {
  color: #d4c9b8;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s;
}

nav .nav-links a:hover,
nav .nav-links a.is-current {
  color: #faf8f5;
}

nav .nav-cta {
  background-color: #d4c9b8;
  color: #2c3e2d !important;
  padding: 0.5rem 1.1rem;
  border-radius: 3px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
  transition: background-color 0.2s, color 0.2s;
}

nav .nav-cta:hover {
  background-color: #faf8f5;
  color: #1e2d1f !important;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #faf8f5;
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 768px) {
  .hamburger { display: block; }
  nav .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background-color: #2c3e2d;
    flex-direction: column;
    padding: 1rem 2rem;
    gap: 1rem;
  }
  nav .nav-links.open { display: flex; }
  nav .nav-cta { width: 100%; text-align: center; }
}

/* === Sections === */
section {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  scroll-margin-top: 80px;
}

.section-rule {
  display: block;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #8a7a62, transparent);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.section-header .eyebrow {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8a7a62;
  margin-bottom: 0.6rem;
}

/* === Long-form prose === */
.prose {
  max-width: 65ch;
  margin: 0 auto;
  color: #3a3a3a;
}

.prose p { margin-bottom: 1.4rem; line-height: 1.85; font-size: 1.05rem; }
.prose p:last-child { margin-bottom: 0; }
.prose h2 { font-size: 1.7rem; margin: 3rem 0 1rem; letter-spacing: 0.02em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.2rem; margin: 2rem 0 0.75rem; color: #2c3e2d; letter-spacing: 0.02em; }
.prose ul, .prose ol { margin: 0 0 1.4rem 1.25rem; }
.prose li { margin-bottom: 0.5rem; line-height: 1.75; }
.prose a { color: #2c3e2d; border-bottom: 1px solid rgba(44, 62, 45, 0.3); text-decoration: none; }
.prose a:hover { border-bottom-color: #1e2d1f; }
.prose blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid #8a7a62;
  background: #f3eee5;
  font-style: italic;
  color: #3a3a3a;
  border-radius: 0 4px 4px 0;
}
.prose blockquote p { margin: 0; }

/* === Page hero (smaller, for non-home pages) === */
.page-hero {
  position: relative;
  min-height: 380px;
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero .hero-bg { position: absolute; inset: 0; }
.page-hero .hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Favor the upper third of the photo so faces stay visible
     when the wide hero band crops out the top + bottom. */
  object-position: center 28%;
  display: block;
}

@media (max-width: 768px) {
  .page-hero { min-height: 320px; }
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15, 26, 15, 0.45) 0%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 1;
}

.page-hero .page-hero-content {
  position: relative;
  z-index: 2;
  color: #faf8f5;
  padding: 4rem 2rem;
  max-width: 720px;
}

.page-hero h1 {
  font-size: 2.4rem;
  color: #faf8f5;
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.page-hero p {
  font-size: 1.1rem;
  color: #d4c9b8;
  font-style: italic;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .page-hero h1 { font-size: 1.8rem; }
  .page-hero p { font-size: 1rem; }
}

/* === Home Hero (full bleed) === */
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(25px); } to { opacity: 1; transform: translateY(0); } }

.hero {
  position: relative;
  height: 88vh;
  min-height: 560px;
  margin-top: 64px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 25s ease-out forwards;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15, 26, 15, 0.35) 0%, rgba(0, 0, 0, 0.25) 35%, rgba(0, 0, 0, 0.6) 75%, rgba(0, 0, 0, 0.78) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #faf8f5;
  padding: 0 2rem;
  max-width: 800px;
}

.hero-content .eyebrow {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #d4c9b8;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: heroFadeUp 1s ease-out 0.2s forwards;
}

.hero-content h1 {
  font-size: 3.2rem;
  color: #faf8f5;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.15;
  opacity: 0;
  animation: heroFadeUp 1s ease-out 0.5s forwards;
}

.hero-content .lede {
  font-size: 1.2rem;
  color: #e8e0d4;
  letter-spacing: 0.02em;
  line-height: 1.55;
  margin: 0 auto 2.25rem;
  max-width: 620px;
  opacity: 0;
  animation: heroFadeUp 1s ease-out 0.8s forwards;
}

.hero-cta-group {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 1s ease-out 1.1s forwards;
}

@media (max-width: 768px) {
  .hero { height: 80vh; min-height: 480px; }
  .hero-content h1 { font-size: 2.1rem; }
  .hero-content .lede { font-size: 1.05rem; }
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.95rem 2.25rem;
  background-color: #2c3e2d;
  color: #faf8f5;
  border: 1px solid #2c3e2d;
  border-radius: 4px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s, color 0.3s, border-color 0.3s;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn:hover {
  background-color: #1e2d1f;
  border-color: #1e2d1f;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(44, 62, 45, 0.3);
}

.btn:active { transform: translateY(0); }

.btn-light {
  background-color: #d4c9b8;
  color: #2c3e2d;
  border-color: #d4c9b8;
}

.btn-light:hover {
  background-color: #faf8f5;
  border-color: #faf8f5;
  color: #1e2d1f;
}

.btn-ghost {
  background-color: transparent;
  color: #faf8f5;
  border-color: rgba(250, 248, 245, 0.55);
}

.btn-ghost:hover {
  background-color: rgba(250, 248, 245, 0.1);
  border-color: #faf8f5;
  color: #faf8f5;
}

.btn-secondary {
  background-color: transparent;
  color: #2c3e2d;
}

.btn-secondary:hover {
  background-color: #2c3e2d;
  color: #faf8f5;
}

/* === Story (StoryBrand) sections === */
#problem {
  padding: 5rem 2rem;
  background-color: #f3eee5;
}

#problem .inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

#problem h2 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

#problem .lede {
  font-size: 1.15rem;
  color: #4a4a4a;
  line-height: 1.75;
  margin: 0 auto;
  max-width: 640px;
}

/* Three-column "what you want" cards */
.three-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.three-up .card {
  text-align: center;
  padding: 0 0.5rem;
}

.three-up .card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #2c3e2d;
  color: #d4c9b8;
  margin-bottom: 1rem;
  font-family: 'Merriweather', serif;
  font-size: 1.3rem;
}

.three-up .card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: #2c3e2d;
}

.three-up .card p {
  color: #4a4a4a;
  font-size: 0.98rem;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .three-up { grid-template-columns: 1fr; gap: 2rem; }
}

/* === Guide section === */
#guide {
  padding: 6rem 2rem;
}

.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.guide-grid .photo {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.guide-grid .photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  aspect-ratio: 4 / 3;
}

.guide-grid h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
}

.guide-grid p {
  margin-bottom: 1rem;
  line-height: 1.85;
  color: #4a4a4a;
  font-size: 1.02rem;
}

.guide-grid .credentials {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.guide-grid .credentials span {
  background: #ede7dd;
  color: #2c3e2d;
  font-size: 0.82rem;
  padding: 0.35rem 0.8rem;
  border-radius: 3px;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .guide-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* === Plan (3 steps) === */
#plan {
  background: linear-gradient(175deg, #2c3e2d 0%, #243526 100%);
  max-width: none;
  padding: 6rem 2rem;
  position: relative;
  color: #e8e0d4;
}

#plan::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(138, 122, 98, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

#plan .inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#plan h2 {
  text-align: center;
  font-size: 2rem;
  color: #e8e0d4;
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

#plan .section-rule {
  background: linear-gradient(90deg, transparent, #d4c9b8, transparent);
  margin-bottom: 3rem;
}

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

.plan-step {
  text-align: center;
}

.plan-step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid #8a7a62;
  color: #d4c9b8;
  font-family: 'Merriweather', serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.plan-step h3 {
  font-size: 1.2rem;
  color: #faf8f5;
  margin-bottom: 0.6rem;
  letter-spacing: 0.03em;
}

.plan-step p {
  color: #b8ae9e;
  line-height: 1.7;
  font-size: 0.98rem;
}

#plan .plan-cta {
  text-align: center;
}

@media (max-width: 768px) {
  .plan-steps { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* === Testimonial pull-quote === */
.pull-quote {
  background: #faf8f5;
  padding: 5rem 2rem;
}

.pull-quote .inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.pull-quote blockquote {
  font-family: 'Merriweather', serif;
  font-size: 1.35rem;
  line-height: 1.65;
  color: #2c2c2c;
  font-style: italic;
  letter-spacing: 0.01em;
  position: relative;
}

.pull-quote blockquote::before {
  content: '\201C';
  font-family: 'Merriweather', serif;
  font-size: 4rem;
  color: #8a7a62;
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.pull-quote cite {
  display: block;
  margin-top: 1.5rem;
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a7a62;
}

@media (max-width: 768px) {
  .pull-quote blockquote { font-size: 1.15rem; }
}

/* === CTA strip (bottom of every content page) === */
.cta-strip {
  background: linear-gradient(175deg, #ede7dd 0%, #f0ebe3 50%, #e8e1d6 100%);
  padding: 4.5rem 2rem;
  text-align: center;
  position: relative;
}

.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C8B75' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-strip .inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-strip h2 {
  font-size: 1.9rem;
  margin-bottom: 0.6rem;
  letter-spacing: 0.03em;
}

.cta-strip p {
  font-size: 1.05rem;
  color: #5a544c;
  margin-bottom: 2rem;
  font-style: italic;
}

.cta-strip .buttons {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Bio cards (about page) === */
.bio-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.bio-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-left: 3px solid #8a7a62;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.bio-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.bio-card .bio-text {
  padding: 1.85rem;
}

.bio-card h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #2c3e2d;
}

.bio-card .bio-role {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a7a62;
  margin-bottom: 1rem;
}

.bio-card .bio-text p {
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 1rem;
}

.bio-card .bio-text p:last-of-type { margin-bottom: 1.25rem; }

.bio-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
}

.bio-card ul li {
  font-size: 0.95rem;
  color: #4a4a4a;
  padding: 0.35rem 0 0.35rem 1.25rem;
  position: relative;
  line-height: 1.55;
}

.bio-card ul li::before {
  content: '·';
  position: absolute;
  left: 0.4rem;
  color: #8a7a62;
  font-weight: bold;
}

.bio-card .bio-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2c3e2d;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(44, 62, 45, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.3s, color 0.3s;
}

.bio-card .bio-link:hover {
  color: #1e2d1f;
  border-bottom-color: #1e2d1f;
}

.bio-card .bio-link svg { width: 16px; height: 16px; }

@media (max-width: 768px) {
  .bio-cards { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* === FAQ === */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-top: 1px solid #d8d2c5;
  padding: 1.75rem 0;
}

.faq-item:last-child {
  border-bottom: 1px solid #d8d2c5;
}

.faq-item h2 {
  font-family: 'Merriweather', serif;
  font-size: 1.25rem;
  color: #2c3e2d;
  margin-bottom: 0.85rem;
  letter-spacing: 0.01em;
}

.faq-item p {
  color: #3a3a3a;
  line-height: 1.85;
  margin-bottom: 0.85rem;
  font-size: 1.02rem;
}

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

/* === Gallery === */
.gallery-section {
  max-width: none;
  padding: 5rem 0 6rem;
  background: linear-gradient(175deg, #1a2b1a 0%, #0f1a0f 40%, #1c2a1c 100%);
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(74, 103, 65, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(74, 103, 65, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.gallery-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-header h1,
.gallery-header h2 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: #e8e0d4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.gallery-header .gallery-rule {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #8a7a62, transparent);
  margin: 0 auto 1rem;
}

.gallery-header p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.05rem;
  color: #9a9080;
  font-style: italic;
  letter-spacing: 0.03em;
}

.gallery-masonry {
  columns: 3;
  column-gap: 1rem;
}

.gallery-masonry a {
  display: block;
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.gallery-masonry a::after {
  content: attr(data-caption);
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1rem 0.85rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  color: #e8e0d4;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-masonry a:hover::after { opacity: 1; transform: translateY(0); }

.gallery-masonry img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
  filter: saturate(0.9) brightness(0.95);
}

.gallery-masonry a:hover img {
  transform: scale(1.04);
  filter: saturate(1.1) brightness(1.02);
}

.js-reveal.gallery-masonry a {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.js-reveal.gallery-masonry a.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal.gallery-masonry a {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 900px) {
  .gallery-masonry { columns: 2; column-gap: 0.75rem; }
  .gallery-masonry a { margin-bottom: 0.75rem; }
  .gallery-header h1, .gallery-header h2 { font-size: 1.8rem; }
}

@media (max-width: 500px) {
  .gallery-masonry { columns: 1; }
  .gallery-section { padding: 4rem 0 5rem; }
  .gallery-header { margin-bottom: 2.5rem; }
}

/* === Section reveal === */
/* Visible by default — JS opts elements into the hidden state via .js-reveal,
   then removes it (or adds .revealed) when they intersect the viewport.
   This way no-JS users and crawlers always see content. */
.js-reveal.section-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-reveal.section-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal.section-reveal,
  .js-reveal.section-reveal.revealed {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* === Footer === */
footer {
  background: linear-gradient(to bottom, #1a2b1a 0%, #0f1a0f 100%);
  color: #9a9080;
  text-align: center;
  padding: 3rem 2rem 2rem;
  font-size: 0.85rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #4a6745, transparent);
}

footer .footer-logo {
  max-width: 140px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}

footer .footer-name {
  font-family: 'Merriweather', serif;
  color: #e8e0d4;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.06em;
}

footer .footer-nav {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  list-style: none;
  margin: 1rem 0 1.5rem;
  flex-wrap: wrap;
  padding: 0;
}

footer .footer-nav a {
  color: #b8ae9e;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

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

footer p:last-child { color: #6a6258; }

/* === Preview gallery band (homepage) === */
.preview-gallery {
  background: linear-gradient(175deg, #1a2b1a 0%, #0f1a0f 50%, #1c2a1c 100%);
  padding: 5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}

.preview-gallery::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 0%, rgba(74, 103, 65, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 100%, rgba(74, 103, 65, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.preview-gallery .inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.preview-gallery .pg-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.preview-gallery h2 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.85rem;
  font-weight: 400;
  color: #e8e0d4;
  letter-spacing: 0.06em;
  margin: 0;
}

.preview-gallery .pg-cta {
  color: #d4c9b8;
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid rgba(212, 201, 184, 0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.preview-gallery .pg-cta:hover {
  color: #faf8f5;
  border-bottom-color: #faf8f5;
}

.preview-gallery .pg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.preview-gallery .pg-grid a {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  text-decoration: none;
}

.preview-gallery .pg-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
  filter: saturate(0.92) brightness(0.95);
}

.preview-gallery .pg-grid a:hover img {
  transform: scale(1.05);
  filter: saturate(1.1) brightness(1.02);
}

.preview-gallery .pg-grid a::after {
  content: attr(data-caption);
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.5rem 0.85rem 0.7rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: #e8e0d4;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.preview-gallery .pg-grid a:hover::after { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .preview-gallery .pg-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .preview-gallery h2 { font-size: 1.55rem; }
}

@media (max-width: 500px) {
  .preview-gallery { padding: 4rem 0 4.5rem; }
  .preview-gallery .pg-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .preview-gallery .pg-header { flex-direction: column; align-items: flex-start; }
}

/* === Utility === */
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }


