:root {
  --bg-cream: #fff8ef;
  --bg-soft: #f8e7d1;
  --bg-warm: #f7d3b3;
  --ink: #2f221d;
  --muted: #654e40;
  --rust: #b5532d;
  --rust-deep: #8e371c;
  --olive: #62754a;
  --card: rgba(255, 250, 243, 0.82);
  --card-strong: rgba(255, 245, 232, 0.94);
  --line: rgba(122, 74, 46, 0.14);
  --shadow: 0 18px 40px rgba(60, 31, 17, 0.12);
  --shadow-soft: 0 12px 28px rgba(60, 31, 17, 0.09);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

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

a {
  color: inherit;
}

.site-bg {
  background:
    radial-gradient(circle at top left, rgba(255, 214, 166, 0.88), transparent 34%),
    radial-gradient(circle at 85% 16%, rgba(172, 194, 132, 0.28), transparent 28%),
    linear-gradient(150deg, #fffaf2 0%, #fdecd8 45%, #fff6ee 100%);
  inset: 0;
  position: fixed;
  z-index: -2;
}

.site-bg::after {
  background:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  inset: 0;
  opacity: 0.3;
  position: absolute;
}

.topbar,
main,
.footer {
  margin-inline: auto;
  max-width: 1160px;
  width: min(92vw, 1160px);
}

.topbar {
  align-items: center;
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  padding: 1.4rem 0 1rem;
}

.brand {
  align-items: center;
  display: inline-flex;
  text-decoration: none;
}

.brand__logo {
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  height: 4.9rem;
  object-fit: cover;
  width: 6.8rem;
}

.nav {
  backdrop-filter: blur(12px);
  background: rgba(255, 250, 243, 0.66);
  border: 1px solid rgba(122, 74, 46, 0.12);
  border-radius: 999px;
  display: flex;
  gap: 0.35rem;
  padding: 0.35rem;
}

.nav a {
  border-radius: 999px;
  color: #5a4034;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.55rem 0.9rem;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.nav a:hover {
  background: rgba(181, 83, 45, 0.09);
  color: var(--rust-deep);
}

.button {
  align-items: center;
  background: linear-gradient(135deg, var(--rust), #d87538);
  border: none;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(181, 83, 45, 0.24);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 0.96rem;
  font-weight: 800;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.78rem 1.25rem;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  box-shadow: 0 14px 30px rgba(181, 83, 45, 0.3);
  transform: translateY(-2px);
}

.button--small {
  font-size: 0.88rem;
  min-height: 2.65rem;
  padding: 0.68rem 1.05rem;
}

.button--ghost {
  background: rgba(255, 250, 243, 0.54);
  border: 1px solid rgba(122, 74, 46, 0.18);
  box-shadow: none;
  color: #5e4031;
}

.button--ghost:hover {
  box-shadow: var(--shadow-soft);
}

main {
  padding-block: 1rem 3rem;
}

section {
  margin-block: 3rem;
}

.eyebrow {
  color: var(--olive);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 0.35rem;
  text-transform: uppercase;
}

.hero h1,
h2,
h3,
.faq-item summary {
  font-family: "Fraunces", serif;
  line-height: 1.08;
  margin: 0;
}

.hero {
  align-items: stretch;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.hero__content {
  padding-block: 1rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  letter-spacing: -0.03em;
  max-width: 9ch;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 1rem 0 0;
  max-width: 58ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.hero__notes {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.hero__notes p {
  background: rgba(255, 251, 246, 0.56);
  border: 1px solid rgba(122, 74, 46, 0.12);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  margin: 0;
  padding: 0.85rem 0.95rem;
}

.hero__feature,
.story__panel,
.contact-card,
.gallery-card,
.card,
.news-list li,
.faq-item {
  backdrop-filter: blur(10px);
}

.hero__feature {
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.88), rgba(251, 235, 217, 0.92));
  border: 1px solid rgba(122, 74, 46, 0.12);
  border-radius: 1.6rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero__image {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.hero__feature-body {
  padding: 1.15rem 1.2rem 0;
}

.hero__feature-body h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.35rem);
  margin-top: 0.2rem;
}

.hero__feature-body p {
  color: var(--muted);
  margin: 0.9rem 0 0;
}

.hero__label {
  color: var(--rust-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
}

.hero__list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 1.05rem 1.2rem 1.25rem 2.35rem;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 0.4rem;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -0.02em;
}

.section-intro {
  color: var(--muted);
  margin: 0.25rem 0 0;
  max-width: 56ch;
}

.cards {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.25rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.card__image {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.card__copy {
  padding: 1rem 1.05rem 1.15rem;
}

.card h3 {
  font-size: 1.4rem;
}

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

.price {
  color: var(--rust-deep);
  font-weight: 800;
}

.seasonal-rotator {
  background: var(--card-strong);
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  box-shadow: var(--shadow-soft);
  margin-top: 1.25rem;
  overflow: hidden;
  position: relative;
}

.seasonal-slide {
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 500ms ease;
}

.seasonal-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.seasonal-slide img {
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  width: 100%;
}

.seasonal-slide figcaption {
  color: #533a2f;
  font-weight: 700;
  padding: 0.95rem 1rem 1.05rem;
}

.seasonal-rotator__dots {
  bottom: 0.9rem;
  display: flex;
  gap: 0.45rem;
  position: absolute;
  right: 0.9rem;
}

.seasonal-rotator__dot {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  height: 0.72rem;
  width: 0.72rem;
}

.seasonal-rotator__dot.is-active {
  background: var(--rust);
  border-color: var(--rust);
}

.story__panel {
  background:
    linear-gradient(135deg, rgba(248, 232, 209, 0.88), rgba(255, 250, 244, 0.82));
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.4rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  padding: 1.5rem;
}

.story__media {
  align-self: stretch;
}

.story__image {
  border-radius: 1.2rem;
  box-shadow: var(--shadow-soft);
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  width: 100%;
}

.story__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story__panel h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  margin-top: 0.1rem;
  max-width: 15ch;
}

.story__panel p {
  color: var(--muted);
  margin: 1rem 0 0;
  max-width: 72ch;
}

.story__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.story-chip {
  background: rgba(255, 251, 246, 0.72);
  border: 1px solid rgba(122, 74, 46, 0.12);
  border-radius: 999px;
  color: #5c4234;
  font-weight: 800;
  padding: 0.65rem 0.9rem;
}

.news-list {
  display: grid;
  gap: 0.85rem;
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.news-list li {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
}

.news-item {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: 132px minmax(0, 1fr);
  padding: 0.95rem;
  text-decoration: none;
}

.news-item:hover {
  background: rgba(255, 241, 225, 0.45);
  border-radius: 1rem;
}

.news-copy {
  min-width: 0;
}

.news-title {
  color: #5c311f;
  display: block;
  font-weight: 800;
}

.news-meta {
  color: #6b5244;
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.news-item:hover .news-title {
  color: var(--rust-deep);
  text-decoration: underline;
}

.news-thumb {
  border-radius: 0.85rem;
  height: 80px;
  object-fit: cover;
  width: 132px;
}

.news-thumb--label {
  align-items: center;
  background: linear-gradient(145deg, #ffe5c8, #ffd3a8);
  border: 1px solid #e5bd9c;
  color: #7a381f;
  display: inline-flex;
  font-family: "Fraunces", serif;
  font-size: 1rem;
  font-weight: 700;
  justify-content: center;
}

.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-top: 1.25rem;
}

.contact-card {
  background: var(--card-strong);
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  box-shadow: var(--shadow-soft);
  padding: 1.25rem;
}

.contact-card h3 {
  font-size: 1.55rem;
}

.contact-card p {
  color: var(--muted);
  margin: 0.8rem 0 0;
}

.contact-card a:not(.button) {
  color: var(--rust-deep);
  font-weight: 800;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.order-form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.order-form .mc-field-group,
.order-form #mc_embed_signup_scroll,
.order-form .clear {
  display: grid;
  gap: 0.85rem;
}

.order-form .indicates-required {
  color: #6c5547;
  font-size: 0.9rem;
}

.order-form .asterisk {
  color: var(--rust-deep);
  font-weight: 800;
}

.order-form label {
  color: #4e392f;
  display: grid;
  font-weight: 700;
  gap: 0.38rem;
}

.order-form input[type="email"],
.order-form input[type="text"] {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #d9bca7;
  border-radius: 0.8rem;
  color: var(--ink);
  font: inherit;
  padding: 0.75rem 0.8rem;
  width: 100%;
}

.order-form input[type="email"]:focus,
.order-form input[type="text"]:focus {
  border-color: #ca6a34;
  outline: 2px solid rgba(202, 106, 52, 0.16);
}

.order-form input[type="submit"].button {
  appearance: none;
  border: none;
  white-space: normal;
  width: 100%;
}

.order-form .response {
  background: rgba(255, 250, 243, 0.78);
  border: 1px solid rgba(122, 74, 46, 0.12);
  border-radius: 0.8rem;
  color: #5c4234;
  padding: 0.8rem 0.9rem;
}

.form-note {
  color: #6c5547;
  font-size: 0.92rem;
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  padding: 0.9rem 1rem;
}

.faq-item summary {
  color: #5f2d1b;
  cursor: pointer;
  font-size: 1.18rem;
  font-weight: 700;
  list-style: none;
  padding-right: 1.6rem;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  color: var(--rust-deep);
  content: "+";
  font-size: 1.3rem;
  position: absolute;
  right: 0;
  top: -0.1rem;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  color: var(--muted);
  margin: 0.8rem 0 0;
  max-width: 75ch;
}

.faq-item a {
  color: var(--rust-deep);
  font-weight: 800;
}

.footer {
  align-items: start;
  border-top: 1px solid rgba(122, 74, 46, 0.22);
  color: #614737;
  display: grid;
  gap: 0.9rem 1rem;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  margin-bottom: 2rem;
  margin-top: 1.5rem;
  padding: 1.25rem 0 0.4rem;
}

.footer__meta {
  display: grid;
  gap: 0.35rem;
}

.footer__contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
}

.footer__contact-line a {
  color: #7a3d24;
  font-weight: 800;
  text-decoration: none;
}

.footer__contact-line a:hover {
  color: var(--rust-deep);
  text-decoration: underline;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  margin-top: 0.1rem;
}

.footer__links a {
  color: #7a3d24;
  font-weight: 800;
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--rust-deep);
  text-decoration: underline;
}

.footer p {
  margin: 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.3rem;
}

.social-link {
  align-items: center;
  background: linear-gradient(145deg, #ffe8cf, #ffdcb6);
  border: 1px solid #e2c2a7;
  border-radius: 999px;
  color: #6c341f;
  display: inline-flex;
  font-weight: 800;
  gap: 0.4rem;
  padding: 0.38rem 0.7rem;
  text-decoration: none;
}

.social-link svg {
  fill: currentColor;
  height: 1rem;
  width: 1rem;
}

.social-link:hover {
  border-color: #cf8a5f;
  color: var(--rust-deep);
}

.footer__map-wrap {
  align-self: start;
}

.footer__map {
  border: 1px solid rgba(122, 74, 46, 0.18);
  border-radius: 1rem;
  height: 210px;
  width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 450ms ease, transform 450ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero,
  .contact-grid,
  .footer {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  .topbar {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    border-radius: 1.1rem;
    display: grid;
    gap: 0.4rem;
    order: 3;
    padding: 0.45rem;
    width: 100%;
  }

  .nav a {
    display: block;
    flex: none;
    text-align: center;
  }

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

  .news-item {
    grid-template-columns: 1fr;
  }

  .news-thumb {
    height: 150px;
    width: 100%;
  }
}

@media (max-width: 540px) {
  .topbar,
  main,
  .footer {
    width: min(94vw, 1160px);
  }

  .hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.3rem);
  }

  .nav a {
    width: 100%;
  }

  .story__panel,
  .contact-card,
  .faq-item {
    padding: 1rem;
  }

  .button,
  .button--small {
    width: 100%;
  }

  .hero__actions,
  .contact-actions {
    display: grid;
  }
}
