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

:root {
  --forest:   #2D5016;
  --sage:     #7A9E5A;
  --sage-lt:  #C4D9AD;
  --cream:    #FAF7F2;
  --taupe:    #8B7355;
  --ink:      #1A1A1A;
  --white:    #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-w: 1100px;
  --section-gap: 7rem;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }

/* ─── Typography ────────────────────────────────────────────── */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
  display: block;
}

/* ─── Layout helpers ────────────────────────────────────────── */
.container {
  width: min(var(--max-w), 100% - 3rem);
  margin-inline: auto;
}

section { padding-block: var(--section-gap); }

/* ─── Nav ───────────────────────────────────────────────────── */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.3s, box-shadow 0.3s;
}
nav.scrolled {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(45,80,22,0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--forest); }

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding-block: 0;
  padding-top: 5rem;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(122,158,90,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(45,80,22,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-text { position: relative; }

.hero-name {
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  color: var(--forest);
  margin-bottom: 1.25rem;
}

.hero-name span {
  display: block;
  color: var(--sage);
}

.hero-tagline {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--taupe);
  max-width: 38ch;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--forest);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}
.hero-cta:hover { background: var(--sage); transform: translateY(-2px); }
.hero-cta svg { transition: transform 0.2s; }
.hero-cta:hover svg { transform: translateX(4px); }

/* Hero image */
.hero-image-wrap {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.hero-image-frame {
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 80svh;
  position: relative;
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  inset: -1rem 1rem 1rem -1rem;
  border: 2px solid var(--sage-lt);
  border-radius: 2px;
  z-index: 0;
}

.hero-image-frame img,
.hero-image-frame .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  position: relative;
  z-index: 1;
}

.img-placeholder {
  background: linear-gradient(135deg, var(--sage-lt) 0%, #d4e8bb 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 1.1rem;
  opacity: 0.7;
}

/* leaf SVG accent */
.leaf-divider {
  display: block;
  margin: 0 auto 3rem;
  opacity: 0.35;
}

/* ─── About ─────────────────────────────────────────────────── */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-frame {
  aspect-ratio: 4/5;
  position: relative;
}

.about-image-frame::after {
  content: '';
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  background: var(--sage-lt);
  border-radius: 2px;
  z-index: 0;
}

.about-image-frame img,
.about-image-frame .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  position: relative;
  z-index: 1;
}

.about-text p {
  color: var(--taupe);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}
.about-text p:last-child { margin-bottom: 0; }

/* ─── Interests ─────────────────────────────────────────────── */
.interests-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.interest-card {
  background: var(--white);
  border-radius: 2px;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  border-top: 3px solid var(--sage-lt);
}

.interest-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(122,158,90,0.04), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.interest-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(45,80,22,0.1); }
.interest-card:hover::before { opacity: 1; }
.interest-card:hover .interest-card-border { border-color: var(--sage); }

.interest-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.interest-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.interest-card p {
  font-size: 0.9rem;
  color: var(--taupe);
  line-height: 1.6;
}

/* ─── Gallery ───────────────────────────────────────────────── */
.gallery { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 1;
}

.gallery-item:first-child {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-item img,
.gallery-item .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-item .img-placeholder {
  font-size: 0.85rem;
  opacity: 0.5;
}

/* ─── Contact ───────────────────────────────────────────────── */
.contact {
  background: var(--forest);
  color: var(--white);
  text-align: center;
}

.contact .section-title { color: var(--sage-lt); }
.contact .eyebrow { color: var(--sage); }

.contact p {
  color: rgba(255,255,255,0.7);
  max-width: 42ch;
  margin: 1rem auto 2.5rem;
  font-size: 1.05rem;
}

.contact-form {
  max-width: 480px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  padding: 0.85rem 1.1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--sage);
  background: rgba(255,255,255,0.12);
}
.contact-form textarea { resize: vertical; min-height: 130px; }

.contact-form button {
  background: var(--sage);
  color: var(--white);
  border: none;
  border-radius: 2px;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.contact-form button:hover { background: var(--sage-lt); color: var(--forest); transform: translateY(-2px); }

/* ─── Footer ────────────────────────────────────────────────── */
footer {
  background: #1A2810;
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

/* ─── Fade-in animation ─────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 4rem;
    gap: 3rem;
  }
  .hero-image-wrap { order: -1; }
  .hero-image-frame { max-height: 55vw; aspect-ratio: 3/2; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .interests-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
}

@media (max-width: 540px) {
  :root { --section-gap: 4rem; }
  .nav-links { display: none; }
  .interests-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; aspect-ratio: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  .hero-cta, .interest-card, .gallery-item img { transition: none; }
}
