/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: #2a2a2a;
  background: #faf8f4;
  line-height: 1.75;
}

/* === TYPOGRAPHY === */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
}

h1 { font-size: clamp(3rem, 8vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.25rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.5rem; font-weight: 600; font-family: 'Cormorant Garamond', serif; }

p { margin-bottom: 1rem; font-size: 1.02rem; color: #3a3a3a; }
p:last-child { margin-bottom: 0; }
a { color: inherit; text-decoration: none; }

/* === LAYOUT === */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container--narrow {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 6rem 0; }
.section--cream { background: #f5f0e8; }
.center { text-align: center; }

/* === EYEBROW === */
.section-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8a6e3e;
  margin-bottom: 0.6rem;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 0.75rem 2rem;
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 56px;
  width: auto;
  display: block;
}
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  color: #6b4fa0;
}
.nav-logo-text em {
  font-style: italic;
  font-weight: 300;
}
.nav-logo-farm {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8a6e3e;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2a2a2a;
  transition: color 0.2s;
}
.nav-links a:hover { color: #6b4fa0; }

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,20,20,0.35) 0%, rgba(20,20,20,0.55) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  color: #faf8f4;
  padding: 0 2rem;
  max-width: 900px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.2rem;
}
.hero h1 {
  color: #faf8f4;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-tagline {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  margin-bottom: 2.5rem;
  letter-spacing: 0.03em;
}
.hero-cta {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.7);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.hero-cta:hover {
  background: rgba(255,255,255,0.15);
}

/* === ABOUT === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text { padding-top: 1rem; }
.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.address {
  font-size: 0.88rem;
  color: #888;
  letter-spacing: 0.04em;
  margin-top: 1.5rem;
}

/* === FULL BLEED === */
.full-bleed {
  height: 420px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.full-bleed-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,20,20,0.4);
}
.full-bleed-text {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
}

/* === GRID CARDS === */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.card {
  background: #faf8f4;
  overflow: hidden;
  border: 1px solid #e8e2d8;
}
.card-image { height: 200px; overflow: hidden; }
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.card:hover .card-image img { transform: scale(1.04); }
.card-body { padding: 1.75rem; }
.card-icon { font-size: 1.5rem; margin-bottom: 0.6rem; }
.card-body p { font-size: 0.95rem; color: #555; }

/* === FEATURE GRID === */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.feature-grid--reverse .feature-image { order: 2; }
.feature-grid--reverse .feature-text { order: 1; }
.feature-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
.feature-text h2 { margin-top: 0.5rem; }

/* === LAYERS TAGS === */
.layers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.layers span {
  background: #ede8f5;
  color: #6b4fa0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 2px;
}

/* === GALLERY STRIP === */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 320px;
}
.gallery-item {
  background-size: cover;
  background-position: center;
  transition: filter 0.3s;
}
.gallery-item:hover { filter: brightness(1.08); }

/* === BUTTONS === */
.btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.85rem 2.2rem;
  background: #6b4fa0;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.btn:hover { background: #5a3e8a; }

/* === CONTACT === */
.email-link {
  display: inline-block;
  margin-top: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: #6b4fa0;
  border-bottom: 1px solid #c4b0e0;
  padding-bottom: 3px;
  transition: color 0.2s;
}
.email-link:hover { color: #5a3e8a; }

/* === FOOTER === */
.footer {
  background: #2a2118;
  color: #b0a090;
  padding: 3.5rem 2rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.footer-logo {
  height: 80px;
  width: auto;
  opacity: 0.75;
  filter: brightness(0) invert(1);
}
.footer p { font-size: 0.88rem; margin-bottom: 0.25rem; color: #b0a090; }
.footer-sub { font-size: 0.8rem; color: #7a6a5a; }
.footer a { color: #b0a090; }
.footer a:hover { color: #d4c4b0; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .about-grid, .feature-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-grid--reverse .feature-image { order: 0; }
  .feature-grid--reverse .feature-text { order: 0; }
  .about-image img, .feature-image img { height: 320px; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); height: 400px; }
  .nav-links { display: none; }
  .full-bleed { background-attachment: scroll; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  .section { padding: 4rem 0; }
  .gallery-strip { grid-template-columns: 1fr 1fr; height: 300px; }
  h2 { font-size: 1.9rem; }
}
