/* ============================================================
   EVERGREEN CHRISTMAS TREE FARM — Shared Stylesheet
   Brand: Classic, warm, elevated. "Ralph Lauren Christmas."
   ============================================================ */

/* Fonts are loaded via <link> tags in each page head (preconnect + trimmed weights) */

/* ─── VARIABLES ─────────────────────────────────────────── */
:root {
  --green-dark:   #1E3A1E;
  --green-mid:    #2D5A2D;
  --green-light:  #4A7C4A;
  --cream:        #F7F2E8;
  --cream-dark:   #EDE6D4;
  --red:          #8B1A1A;
  --red-light:    #A52020;
  --gold:         #B8862A;
  --gold-light:   #D4A843;
  --gold-text:    #8F6820;  /* darker gold for small text on light backgrounds (4.5:1) */
  --charcoal:     #1C1C1C;
  --warm-gray:    #6B6355;
  --white:        #FFFFFF;

  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Lato', 'Helvetica Neue', Arial, sans-serif;

  --max-width:    1100px;
  --section-pad:  80px 24px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
}

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

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

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--green-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1.2rem; color: var(--charcoal); }
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; }

/* ─── LAYOUT HELPERS ────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-pad); }
.section--cream { background: var(--cream); }
.section--green { background: var(--green-dark); color: var(--cream); }
.section--green h1,
.section--green h2,
.section--green h3 { color: var(--cream); }
.section--green p { color: var(--cream-dark); }

.section--red { background: var(--red); color: var(--white); }
.section--red h2 { color: var(--white); }
.section--red p { color: rgba(255,255,255,0.88); }

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

.lead {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--warm-gray);
  margin-bottom: 2rem;
}

.divider {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 1rem 0 1.8rem;
}
.divider--center { margin-left: auto; margin-right: auto; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn--primary {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}
.btn--primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
}

.btn--outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn--outline:hover {
  background: var(--green-dark);
  color: var(--white);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-light:hover {
  background: var(--white);
  color: var(--green-dark);
}

/* ─── NAVIGATION ─────────────────────────────────────────── */
.nav {
  background: var(--green-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--gold);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__brand {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.nav__brand span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 2px;
}

.nav__links a {
  display: block;
  padding: 8px 14px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,242,232,0.8);
  transition: color 0.2s;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--gold-light);
}

.nav__links a.nav__cta {
  background: var(--gold);
  color: var(--white);
  margin-left: 8px;
}

.nav__links a.nav__cta:hover {
  background: var(--gold-light);
  color: var(--white);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--green-dark);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,25,10,0.45) 0%, rgba(10,25,10,0.3) 50%, rgba(10,25,10,0.65) 100%),
    url('hero.jpg') center/cover no-repeat;
}

/* Portrait crop for phones — same shot, framed for a vertical screen */
@media (max-width: 680px) {
  .hero__bg {
    background:
      linear-gradient(to bottom, rgba(10,25,10,0.45) 0%, rgba(10,25,10,0.3) 50%, rgba(10,25,10,0.65) 100%),
      url('hero-mobile.jpg') center/cover no-repeat;
  }
}

.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 40px 24px;
  max-width: 760px;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic;
  color: var(--cream-dark);
  margin-bottom: 2.4rem;
  line-height: 1.6;
}

/* ─── PAGE HEADER ────────────────────────────────────────── */
.page-header {
  background: var(--green-dark);
  padding: 72px 24px 64px;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}

.page-header h1 { color: var(--white); margin-bottom: 0.6rem; }
.page-header .lead { color: var(--cream-dark); margin-bottom: 0; }

/* ─── CARDS GRID ─────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
}

.card {
  background: var(--cream);
  padding: 36px 28px;
  border-top: 3px solid var(--gold);
}

.card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.card p { font-size: 0.95rem; color: var(--warm-gray); margin: 0; }

/* ─── SEASON STRIP ───────────────────────────────────────── */
.season-strip {
  background: var(--red);
  padding: 40px 24px;
  text-align: center;
}

.season-strip p {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

/* ─── TWO-COLUMN LAYOUT ──────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 720px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
}

/* ─── EXPERIENCE SECTIONS ────────────────────────────────── */
.exp-section {
  padding: 64px 24px;
  border-bottom: 1px solid var(--cream-dark);
}

.exp-section:last-of-type { border-bottom: none; }

.exp-section .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

.exp-section__label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-text);
  padding-top: 6px;
}

@media (max-width: 680px) {
  .exp-section .container { grid-template-columns: 1fr; gap: 12px; }
  .exp-section__label { padding-top: 0; }
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--cream-dark);
  padding: 20px 0;
}

.faq-item:first-child { border-top: 1px solid var(--cream-dark); }

.faq-q {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.faq-a { font-size: 0.95rem; color: var(--warm-gray); margin: 0; }

/* ─── HOURS TABLE ────────────────────────────────────────── */
.hours-block {
  background: var(--cream);
  border-left: 4px solid var(--green-mid);
  padding: 28px 32px;
  margin-bottom: 2rem;
}

.hours-block p { margin-bottom: 0.4rem; font-size: 0.95rem; }
.hours-block strong { color: var(--green-dark); }

/* ─── FORM ───────────────────────────────────────────────── */
.form-group { margin-bottom: 1.4rem; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D5CFC3;
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--charcoal);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
}

.form-group textarea { min-height: 140px; resize: vertical; }

/* ─── RESERVE LIST ───────────────────────────────────────── */
.reserve {
  background: var(--green-dark);
  padding: 72px 24px;
  text-align: center;
}

.reserve__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.9rem;
}

.reserve h2 {
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.reserve__lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cream-dark);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 1.8rem;
}

.reserve__form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
}

.reserve__form input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid rgba(247, 242, 232, 0.35);
  background: rgba(255, 255, 255, 0.07);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}

.reserve__form input[type="email"]::placeholder {
  color: rgba(247, 242, 232, 0.5);
}

.reserve__form input[type="email"]:focus {
  border-color: var(--gold-light);
}

.reserve__form .btn {
  white-space: nowrap;
}

.reserve__note {
  font-size: 0.8rem;
  color: rgba(247, 242, 232, 0.55);
  margin-top: 0.9rem;
}

.reserve__msg {
  display: none;
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
}

.reserve__msg--ok { display: block; color: var(--gold-light); }
.reserve__msg--err { display: block; color: #E8A9A9; }

@media (max-width: 520px) {
  .reserve__form { flex-direction: column; }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  padding: 56px 24px 32px;
  color: rgba(247,242,232,0.7);
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.footer p { font-size: 0.875rem; line-height: 1.8; color: rgba(247,242,232,0.65); margin-bottom: 0.4rem; }

.footer__heading {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.footer__links { list-style: none; }
.footer__links li { margin-bottom: 0.4rem; }
.footer__links a {
  font-size: 0.875rem;
  color: rgba(247,242,232,0.65);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--gold-light); }

.footer__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(247,242,232,0.4);
  flex-wrap: wrap;
  gap: 8px;
}

.footer__bottom a { color: rgba(247,242,232,0.5); transition: color 0.2s; }
.footer__bottom a:hover,
.footer__bottom a:focus { color: var(--gold-light); }

/* ─── CLOSING LINE ───────────────────────────────────────── */
.closing {
  background: var(--cream-dark);
  padding: 48px 24px;
  text-align: center;
}

.closing p {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-style: italic;
  color: var(--green-dark);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 860px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

/* Nav collapses to the hamburger before the 8 links start wrapping (~1000px) */
@media (max-width: 1000px) {
  .nav__links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--green-dark); padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.1); }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 12px 24px; }
  .nav__links a.nav__cta { display: inline-block; margin: 8px 24px 4px; padding: 10px 18px; }
  .nav__toggle { display: flex; }
}

@media (max-width: 680px) {
  :root { --section-pad: 56px 20px; }

  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .cards { grid-template-columns: 1fr; }
}

/* ─── SPECIES LIST ───────────────────────────────────────── */
.species-list { list-style: none; margin: 1.2rem 0; }
.species-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.species-list li:last-child { border-bottom: none; }
.species-list .species-name {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--green-dark);
  font-size: 1.05rem;
}

/* ─── CONTACT INFO BLOCK ─────────────────────────────────── */
.contact-info { list-style: none; margin: 1rem 0 2rem; }
.contact-info li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.95rem;
  align-items: flex-start;
}
.contact-info li:last-child { border-bottom: none; }
.contact-info .label {
  font-weight: 700;
  color: var(--green-dark);
  min-width: 72px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 2px;
}

/* ─── UTILITY ────────────────────────────────────────────── */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
