*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:    #ede9e0;
  --cream-lt: #f5f2eb;
  --maroon:   #5c1a2a;
  --maroon-d: #4a1220;
  --teal:     #1b6b65;
  --teal-d:   #155550;
  --red:      #b32a2a;
  --red-h:    #8f1f1f;
  --gold:     #c8a55b;
  --text:     #1c1c1c;
  --text-lt:  #4a4a4a;
  --text-dark: #1c1c1c;
  --text-mid:  #4a4a4a;
  --white:    #ffffff;
  --radius:   4px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream-lt); color: var(--text); line-height: 1.6; }

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a  { color: inherit; text-decoration: none; }

.container   { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.btn         { display: inline-block; padding: 10px 22px; border-radius: var(--radius); font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; cursor: pointer; transition: background var(--transition), transform var(--transition); border: none; }
.btn-red     { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-h); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.7); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.hero {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1610832958506-aa56368176cf?w=1400&q=80') center/cover no-repeat;
  filter: brightness(0.72);
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 32px 64px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.12;
  max-width: 480px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.hero p {
  font-family: 'Source Serif 4', serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  margin-top: 12px;
  max-width: 360px;
  font-style: italic;
}

.section-intro {
  background: var(--maroon);
  padding: 80px 32px;
}
.section-intro .inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.section-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--white);
  line-height: 1.35;
  font-style: italic;
  font-weight: 700;
}
.section-intro .body-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 14px;
  line-height: 1.75;
}
.section-intro .body-text p strong {
  color: rgba(255,255,255,0.95);
  font-weight: 600;
}

.section-service {
  background: var(--cream);
  padding: 90px 32px;
}
.section-service .inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.section-service.reverse .inner { direction: rtl; }
.section-service.reverse .inner > * { direction: ltr; }

.service-img {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 12px 48px rgba(0,0,0,0.13);
}
.service-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--red);
  margin-bottom: 18px;
}
.service-text p {
  font-size: 0.88rem;
  color: var(--text-lt);
  line-height: 1.8;
  margin-bottom: 14px;
}

.section-orchard {
  position: relative;
  overflow: hidden;
  padding: 90px 32px;
}
.section-orchard::before {
  content: '';
  position: absolute; inset: 0;
  background: url('images/home_images/Vines-reaching-for-the-sky-2.jpg') center/cover no-repeat;
  filter: brightness(0.38);
}
.section-orchard .inner {
  position: relative; z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.section-orchard .text-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-orchard .text-col p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin-bottom: 14px;
}
.orchard-photo {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3/2;
  box-shadow: 0 12px 48px rgba(0,0,0,0.4);
}

.section-employment {
  background: var(--teal);
  padding: 90px 32px;
  text-align: center;
}
.section-employment h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 10px;
}
.section-employment p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
}
.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 600px;
  margin: 44px auto 0;
}
.staff-card {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3/2;
  background: var(--teal-d);
}
.staff-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: opacity 0.3s, transform 0.4s;
}
.staff-card:hover img { opacity: 1; transform: scale(1.04); }

@media (max-width: 900px) {
  .section-intro .inner,
  .section-service .inner,
  .section-orchard .inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .section-service.reverse .inner { direction: ltr; }

  .staff-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .hero { height: 400px; }
  .hero-content { padding: 0 16px 44px; }
  .section-intro, .section-service, .section-orchard, .section-employment { padding: 56px 16px; }
  .staff-grid { grid-template-columns: 1fr; max-width: 400px; }
  .container { padding: 0 16px; }
}

.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* ── ABOUT PAGE ── */
.about-hero {
  position: relative;
  height: 380px;
  overflow: hidden;
  background: url('images/about_images/Bee-Pollinating-Flower.jpg') center/cover no-repeat;
}
.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}
.hero-bee {
  position: absolute;
  top: 20px;
  right: 60px;
  width: 180px;
  height: 180px;
  opacity: .85;
  z-index: 1;
}
.about-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px 48px;
  height: 100%;
  display: flex;
  width: 100%;
}
.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.12;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}

.about-intro {
  background: var(--maroon);
  padding: 80px 32px;
}
.about-intro .inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--white);
  line-height: 1.35;
  font-style: italic;
  font-weight: 700;
}
.about-intro p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 14px;
  line-height: 1.75;
}
.about-intro p strong {
  color: rgba(255,255,255,0.95);
  font-weight: 600;
}

.about-values {
  background: var(--cream);
  padding: 90px 32px;
}
.about-values .inner {
  max-width: 1100px;
  margin: 0 auto;
}
.about-values h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--text-dark);
  margin-bottom: 10px;
}
.about-values > .inner > p {
  font-size: 0.9rem;
  color: var(--text-lt);
  margin-bottom: 28px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 6px;
  padding: 26px 28px 24px;
  transition: background .2s, transform .3s;
}
.value-card:hover { background: var(--cream-lt); transform: translateY(-2px); }
.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 10px;
  letter-spacing: .01em;
}
.value-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-lt);
}

.about-locations {
  background: var(--teal);
  padding: 90px 32px;
  text-align: center;
}
.about-locations .inner {
  max-width: 1100px;
  margin: 0 auto;
}
.about-locations h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 10px;
}
.locations-intro {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.location-item {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  margin-bottom: 40px;
  align-items: start;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.location-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.location-info p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
}
.location-info a {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  border: none;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.aerial {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--teal-d);
}

.divider {
  height: 1px;
  background: var(--gold);
  max-width: 1100px;
  margin: 0 auto;
  opacity: .4;
}

@media (max-width: 900px) {
  .about-intro .inner,
  .values-grid,
  .location-item {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-hero .hero-content { padding: 0 32px 48px; }
}

@media (max-width: 640px) {
  .about-hero { height: 400px; }
  .about-hero .hero-content { padding: 0 16px 44px; }
  .about-intro, .about-values, .about-locations { padding: 56px 16px; }
  .values-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}
