:root {
  --green: #2e5f27;
  --olive: #6c7a1f;
  --gold: #f2c078;
  --cream: #fff8ef;
  --brown: #433427;
  --text: #2a2a2a;
  --muted: #5a5a5a;
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

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

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

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

a {
  color: var(--green);
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem clamp(1rem, 4vw, 4rem);
  background: rgba(255, 248, 239, 0.95);
  backdrop-filter: blur(6px);
  z-index: 10;
  border-bottom: 1px solid rgba(67, 52, 39, 0.1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  width: 85px;
  height: auto;
}

.brand-title {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0;
}

.brand-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
}

.site-nav {
  display: none;
  gap: 1rem;
  flex-direction: column;
}

.site-nav a {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--gold);
}

.menu-toggle {
  display: inline-flex;
  margin-left: auto;
  border: none;
  background: none;
  padding: 0.35rem;
  cursor: pointer;
  border-radius: 0.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

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

.menu-toggle-bar {
  display: block;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--brown);
  margin: 4px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-active .menu-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active .menu-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

body.mobile-nav-open {
  overflow: hidden;
}

@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }

  .site-header {
    flex-direction: row;
    align-items: center;
  }

  .site-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: static;
    padding: 0;
    background: transparent;
    gap: 1rem;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
}

.hero {
  position: relative;
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.8);
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  padding: clamp(1rem, 3vw, 3rem);
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.4));
}

.holiday-sticker {
  position: absolute;
  top: clamp(0.5rem, 4vw, 1.75rem);
  left: clamp(0.35rem, 3vw, 2rem);
  transform: rotate(-5deg);
  z-index: 25;
  width: clamp(120px, 16vw, 170px);
  height: clamp(120px, 16vw, 170px);
  background-image: url("images/red-ornament.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  color: #fff;
  font-family: "Homemade Apple", cursive;
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  text-transform: none;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-align: center;
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.holiday-sticker span {
  display: block;
  font-size: inherit;
  line-height: 1.25;
  text-align: center;
  padding-top: 1rem;
}

.holiday-sticker span em {
  display: block;
  font-size: 0.7em;
  font-style: normal;
  margin-top: 0.55rem;
}

.holiday-sticker span .tap-text {
  display: none;
}

.holiday-sticker.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.hero-pretitle {
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-transform: uppercase;
}

.hero-logo {
  position: relative;
  display: inline-flex;
}

.hero-logo img {
  width: clamp(400px, 57vw, 600px);
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.35));
}

.hero-headline {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 600;
  color: #dff4c8;
  margin: 0;
  line-height: 1.1;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.8), 0 8px 25px rgba(0, 0, 0, 0.5);
}

.hero-subline {
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0.5rem 0 0.5rem;
  letter-spacing: 0.05em;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  color: var(--brown);
  margin-top: 0;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.2;
  margin: -0.3rem 0 0.05rem;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.lead {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  color: #f6f1eb;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}

.hero-cta {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  border-radius: 999px;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
}

.btn.primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 25px rgba(46, 95, 39, 0.35);
}

.btn.ghost {
  background: rgba(46, 95, 39, 0.15);
  color: #fff;
  border: 1px solid rgba(46, 95, 39, 0.5);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(67, 52, 39, 0.2);
}

main {
  padding: clamp(0.25rem, 2vw, 1.5rem) clamp(1.5rem, 4vw, 4rem);
}

.content-section {
  margin-top: 4rem;
  background: #f7fbf4;
  border-radius: 1.5rem;
  padding: clamp(1.5rem, 3vw, 3rem);
  box-shadow: 0 25px 70px rgba(67, 52, 39, 0.08);
}

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

.section-lead {
  color: var(--muted);
  max-width: 620px;
  margin: 0.5rem auto 0;
}

.about-grid {
  color: var(--muted);
  max-width: 950px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.about-photo {
  width: 100%;
}

.about-photo img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px rgba(43, 59, 34, 0.25);
  object-fit: cover;
}

.about-text p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--brown);
}

@media (max-width: 720px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .about-photo {
    max-width: 420px;
    margin: 0 auto;
  }
}

.hay-section {
  background: #f7fbf4;
}

.hay-table-wrapper {
  overflow-x: auto;
}

.hay-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  font-size: 0.95rem;
}

.hay-table th,
.hay-table td {
  border: 1px solid rgba(46, 95, 39, 0.2);
  padding: 0.85rem 1rem;
  text-align: left;
}

.hay-table th {
  background: rgba(46, 95, 39, 0.1);
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

.hay-table tbody tr:nth-child(odd) td {
  background: rgba(255, 255, 255, 0.75);
}

.hay-table tbody tr:nth-child(even) td {
  background: rgba(245, 245, 245, 0.75);
}

.card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: #fff;
  border: 1px solid rgba(46, 95, 39, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--muted);
}

.card h3 {
  color: var(--green);
}

.card dl {
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.card dt {
  font-weight: 600;
  color: var(--text);
}

.gallery-section {
  background: #fdf7ef;
}

.gallery-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-grid figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.gallery-img {
  border: none;
  padding: 0;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  display: block;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-img:hover,
.gallery-img:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.gallery-section figcaption {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.seasonal-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.seasonal-image img {
  width: min(700px, 100%);
  display: block;
  margin: 0 auto;
  border-radius: 1.25rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.seasonal-details {
  text-align: center;
  font-size: 1.1rem;
  color: var(--brown);
}

.seasonal-details ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1rem;
}

.seasonal-details li + li {
  margin-top: 0.35rem;
}

.seasonal-details a {
  font-weight: 600;
}

.seasonal-pickup {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.seasonal-notes {
  max-width: 650px;
  margin: 0 auto;
  font-size: 0.85rem;
  font-style: italic;
  color: #787878;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: min(90vw, 900px);
  max-height: 90vh;
  width: 100%;
}

.lightbox-content img {
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: rgba(0, 0, 0, 0.8);
}

.blog-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.blog-card {
  border: 1px solid rgba(67, 52, 39, 0.15);
  border-radius: 1rem;
  padding: 1.25rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blog-card time {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
}

.blog-note {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  align-items: start;
}

.contact-card {
  background: rgba(46, 95, 39, 0.08);
  border-radius: 1.25rem;
  padding: 1.5rem;
  color: var(--brown);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  color: var(--brown);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  margin-top: 0.35rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(67, 52, 39, 0.2);
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  outline: none;
  box-shadow: 0 0 0 2px rgba(46, 95, 39, 0.2);
}

.form-confirmation {
  min-height: 1.5rem;
  margin: 0;
  font-weight: 600;
  color: var(--green);
}

.form-confirmation.is-error {
  color: #b33a3a;
}

.site-footer {
  text-align: center;
  padding: 2rem 1rem 3rem;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .site-header {
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
  }

  .brand {
    flex: 1;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 130;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    padding: 5rem 1.75rem 2rem;
    background: rgba(255, 248, 239, 0.98);
    gap: 1.25rem;
    align-items: stretch;
    justify-content: flex-start;
    text-align: left;
    overflow-y: auto;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  body.mobile-nav-open .site-nav {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    font-size: 1.15rem;
    letter-spacing: 0.08em;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(67, 52, 39, 0.1);
    width: 100%;
    display: block;
  }

  .holiday-sticker span .click-text {
    display: none;
  }

  .holiday-sticker span .tap-text {
    display: block;
  }

  .holiday-sticker {
    top: clamp(0.25rem, 3vw, 1rem);
    left: clamp(0.15rem, 2vw, 0.75rem);
  }

  .hero {
    min-height: 70vh;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 0.5rem 1rem;
  }

  .site-nav {
    padding: 4.25rem 1.25rem 1.5rem;
  }

  .site-nav a {
    font-size: 1.05rem;
  }

  .menu-toggle {
    padding: 0.25rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
  }

  .gallery-img {
    aspect-ratio: 1 / 1;
    border-radius: 0.75rem;
  }

  .gallery-section figcaption {
    font-size: 0.85rem;
  }

  .hero-content {
    padding: 1.5rem 1rem;
    gap: 1rem;
  }

  .hero-logo img {
    width: min(280px, 80vw);
  }

  .hero-headline {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .hero-subline {
    font-size: 1rem;
    letter-spacing: 0.03em;
  }

  .hero-cta {
    gap: 0.5rem;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }

  main {
    padding: 1.25rem 1rem 2rem;
  }

  .content-section {
    margin-top: 2rem;
    padding: 1.25rem;
  }

  .hay-table {
    min-width: 360px;
    font-size: 0.85rem;
  }
}
