/*
Theme Name: Frische Orangen
Theme URI: https://frischeorangen.com/
Author: Frische Orangen
Author URI: https://frischeorangen.com/
Description: Professionelles, responsives WordPress-Theme für Frische Orangen aus Sizilien. Mit Preisliste, Sortiment, Verkaufsstandorten, Terminen, Unternehmensgeschichte und WhatsApp-Anfrage.
Version: 1.1.0
Requires at least: 6.2
Tested up to: 6.9
Requires PHP: 7.4
Text Domain: frische-orangen
Tags: custom-logo, custom-menu, featured-images, one-column, accessibility-ready, responsive-layout
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
  --ink: #173d2b;
  --ink-deep: #0e2b1f;
  --orange: #e9672e;
  --orange-deep: #c74c18;
  --cream: #f5f0e6;
  --paper: #fffdf8;
  --sage: #b7c9ab;
  --line: rgba(23, 61, 43, 0.17);
  --white: #fff;
  --muted: #68756e;
  --max: 1240px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--white);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { width: 30px; height: 1px; background: currentColor; content: ""; }
.eyebrow--light { color: var(--sage); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}
h1 { font-size: clamp(3.5rem, 7.2vw, 7.3rem); }
h2 { font-size: clamp(2.6rem, 5vw, 5.3rem); }
h1 em, h2 em { color: var(--orange); font-weight: 400; }
.section { padding: 130px 0; }

.season-bar { background: var(--ink-deep); color: #e6ece6; font-size: .76rem; letter-spacing: .06em; }
.season-bar__inner { display: flex; min-height: 36px; align-items: center; justify-content: space-between; }
.season-bar__inner span:first-child { display: flex; align-items: center; gap: 9px; }
.season-bar a { border-bottom: 1px solid rgba(255, 255, 255, .35); }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #85bd5c; box-shadow: 0 0 0 4px rgba(133, 189, 92, .12); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 248, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav-wrap { display: flex; height: 84px; align-items: center; gap: 38px; }
.brand { display: inline-flex; align-items: center; gap: 11px; margin-right: auto; line-height: 1.1; }
.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  flex: none;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 50% 48% 52% 46%;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 700;
}
.brand strong { display: block; font-family: var(--serif); font-size: 1.06rem; }
.brand small { color: var(--muted); font-size: .64rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 28px; font-size: .84rem; font-weight: 600; }
.site-nav li { margin: 0; list-style: none; }
.site-nav a { position: relative; padding: 8px 0; }
.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; border: 0; background: transparent; }
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 26px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.button:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }
.button--small { min-height: 42px; padding: 0 20px; }
.button--dark { background: var(--ink-deep); }
.button--orange { background: var(--orange); border-color: var(--orange); }
.button--orange:hover { color: var(--ink-deep); background: var(--cream); border-color: var(--cream); }
.button--wide { width: 100%; }
.text-link, .card-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 7px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
}

.hero { min-height: 750px; padding: 72px 0 82px; overflow: hidden; background: var(--cream); }
.hero__grid { display: grid; grid-template-columns: .94fr 1.06fr; align-items: center; gap: 78px; }
.hero__copy { position: relative; z-index: 2; padding: 28px 0; }
.hero__copy h1 em { display: inline-block; }
.hero__lead { max-width: 600px; margin-bottom: 34px; color: #506159; font-size: 1.15rem; line-height: 1.75; }
.hero__actions { display: flex; align-items: center; gap: 30px; margin-bottom: 46px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 12px 25px; padding-top: 23px; border-top: 1px solid var(--line); }
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 650; }
.hero__meta svg { width: 18px; fill: none; stroke: var(--orange); stroke-width: 1.7; }
.hero__visual { position: relative; padding: 0 24px 54px 0; }
.hero__visual::before {
  position: absolute;
  top: -80px;
  right: -160px;
  width: 490px;
  height: 490px;
  border: 1px solid rgba(23, 61, 43, .12);
  border-radius: 50%;
  content: "";
}
.hero__image { position: relative; height: 545px; overflow: hidden; }
.hero__image img { width: 100%; height: 100%; object-fit: cover; }
.hero__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 32, 23, .43), transparent 45%);
  content: "";
}
.hero__label {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  min-width: 190px;
  padding: 22px;
  color: var(--ink);
  background: var(--paper);
}
.hero__label span { display: block; color: var(--muted); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.hero__label strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.hero__note {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 44px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 420px;
  padding: 18px 24px;
  color: var(--white);
  background: var(--ink);
}
.hero__note-number { color: var(--orange); font-family: var(--serif); font-size: 2rem; font-style: italic; }
.hero__note p { margin: 0; font-size: .76rem; line-height: 1.45; }

.trust-strip { color: var(--white); background: var(--orange); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-strip__grid > div { display: flex; min-height: 104px; align-items: center; gap: 15px; padding: 22px 24px; border-right: 1px solid rgba(255, 255, 255, .25); }
.trust-strip__grid > div:first-child { border-left: 1px solid rgba(255, 255, 255, .25); }
.trust-strip__grid span { opacity: .7; font-family: var(--serif); font-size: 1.25rem; font-style: italic; }
.trust-strip__grid p { margin: 0; font-size: .74rem; line-height: 1.4; }
.trust-strip__grid strong { display: block; margin-bottom: 3px; font-size: .84rem; }

.section-heading--split { display: grid; grid-template-columns: 1.1fr .6fr; align-items: end; gap: 80px; margin-bottom: 65px; }
.section-heading--split h2 { margin-bottom: 0; }
.section-heading--split > p { max-width: 490px; margin-bottom: 8px; color: var(--muted); }
.feature-grid { display: grid; grid-template-columns: 1.35fr .825fr .825fr; gap: 20px; }
.feature-card { position: relative; min-height: 550px; overflow: hidden; color: var(--white); background: var(--ink); }
.feature-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2, .7, .2, 1); }
.feature-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 27, 17, .88) 0%, rgba(5, 27, 17, .08) 66%);
  content: "";
}
.feature-card:hover img { transform: scale(1.035); }
.feature-card__content { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; padding: 30px; }
.feature-card__content > span { color: #d2dacd; font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.feature-card__content h3 { margin: 12px 0 8px; font-family: var(--serif); font-size: 2.2rem; font-weight: 400; line-height: 1; }
.feature-card__content p { min-height: 54px; margin-bottom: 18px; color: #eef2ec; font-size: .85rem; line-height: 1.55; }
.feature-card .card-link { color: var(--white); }

.price-section { color: var(--white); background: var(--ink); }
.price-header { display: grid; grid-template-columns: 1.1fr .6fr; align-items: end; gap: 80px; margin-bottom: 54px; }
.price-header h2 { margin: 0; }
.price-header__aside > p { max-width: 460px; color: #c2cec5; }
.search-box { display: flex; max-width: 450px; height: 54px; align-items: center; gap: 12px; padding: 0 15px; border-bottom: 1px solid rgba(255, 255, 255, .4); }
.search-box svg { width: 20px; fill: none; stroke: #c2cec5; stroke-width: 1.6; }
.search-box input { width: 100%; color: var(--white); background: transparent; border: 0; outline: 0; }
.search-box input::placeholder { color: #b4c0b8; }
.price-tabs { display: flex; gap: 4px; border-bottom: 1px solid rgba(255, 255, 255, .18); }
.price-tabs button {
  position: relative;
  padding: 17px 24px;
  color: #b8c5bd;
  background: transparent;
  border: 0;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
}
.price-tabs button::after { position: absolute; right: 0; bottom: -1px; left: 0; height: 3px; background: var(--orange); content: ""; transform: scaleX(0); }
.price-tabs button[aria-selected="true"] { color: var(--white); }
.price-tabs button[aria-selected="true"]::after { transform: scaleX(1); }
.price-panels { padding-top: 28px; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255, 255, 255, .15); border: 1px solid rgba(255, 255, 255, .15); }
.price-card { min-height: 270px; padding: 28px; background: var(--ink); }
.price-card.is-filtered { display: none; }
.price-card > div:first-child { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 13px; padding-bottom: 24px; }
.price-card h3 { margin: 0; font-family: var(--serif); font-size: 1.75rem; font-weight: 400; line-height: 1.1; }
.price-card small { grid-column: 2; margin-top: -6px; color: #adbbb2; line-height: 1.4; }
.item-index { color: var(--orange); font-family: var(--serif); font-size: .9rem; font-style: italic; }
.price-card ul { margin: 0; padding: 0; list-style: none; }
.price-card li { display: flex; justify-content: space-between; gap: 20px; padding: 9px 0; border-bottom: 1px solid rgba(255, 255, 255, .12); color: #cdd6d0; font-size: .8rem; }
.price-card li strong { color: var(--white); white-space: nowrap; }
.price-card--image { position: relative; padding: 0; overflow: hidden; }
.price-card--image img { width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.price-card--image::after { position: absolute; inset: 0; background: rgba(14, 43, 31, .15); content: ""; }
.availability { position: absolute; bottom: 20px; left: 20px; z-index: 2; padding: 8px 12px; color: var(--ink); background: var(--paper); font-size: .66rem; font-weight: 700; text-transform: uppercase; }
.search-empty { padding: 30px; color: #c8d2cb; text-align: center; }

.locations { background: var(--paper); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.location-card { padding: 38px; color: var(--white); background: var(--ink); }
.location-card--orange { background: var(--orange-deep); }
.location-card__head { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 30px; padding-bottom: 26px; border-bottom: 1px solid rgba(255, 255, 255, .25); }
.location-card__head > span { color: var(--sage); font-family: var(--serif); font-size: 1.2rem; font-style: italic; }
.location-card__head p { margin: 0; opacity: .72; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.location-card__head h3 { margin: 2px 0 0; font-family: var(--serif); font-size: 2.5rem; font-weight: 400; line-height: 1; }
.location-address { margin-bottom: 25px; color: #e2e8e3; }
.date-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; margin-bottom: 30px; }
.date-list span { padding: 9px 0; border-bottom: 1px solid rgba(255, 255, 255, .16); font-size: .8rem; }
.location-card > a { display: inline-flex; gap: 14px; border-bottom: 1px solid currentColor; font-size: .78rem; font-weight: 700; }
.other-dates { margin-top: 24px; padding: 34px 38px; color: var(--white); background: var(--cream); border: 1px solid var(--line); }
.other-dates > .eyebrow { color: var(--ink); }
.other-dates > div { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 40px; }
.other-dates article { color: var(--ink); }
.other-dates time { color: var(--orange-deep); font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.other-dates h3 { margin: 2px 0 0; font-family: var(--serif); font-size: 1.45rem; font-weight: 400; }
.other-dates article p { margin: 0; color: var(--muted); font-size: .75rem; }

.story { color: var(--ink); background: var(--cream); }
.story__grid { display: grid; grid-template-columns: 1fr .82fr; align-items: center; gap: 90px; }
.story__media { position: relative; padding-bottom: 44px; }
.story__media > img { width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover; }
.story__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 45px;
  padding: 18px 22px;
  color: var(--white);
  background: var(--ink);
}
.story__caption span { display: block; color: var(--sage); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.story__caption strong { font-family: var(--serif); font-weight: 400; }
.story__copy h2 { font-size: clamp(2.7rem, 4.5vw, 4.6rem); }
.story__copy > p { color: var(--muted); }
.story__lead { color: var(--ink) !important; font-family: var(--serif); font-size: 1.35rem; line-height: 1.55; }
.signature { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); }
.signature span { display: block; color: var(--muted); font-size: .72rem; }
.signature strong { font-family: var(--serif); font-size: 1.25rem; font-style: italic; font-weight: 400; }

.contact-section { padding: 125px 0; color: var(--white); background: var(--ink-deep); }
.contact-section__grid { display: grid; grid-template-columns: 1fr .8fr; gap: 100px; }
.contact-copy h2 { margin-bottom: 30px; }
.contact-copy > p:not(.eyebrow) { max-width: 560px; color: #bdc9c1; }
.contact-links { margin-top: 45px; border-top: 1px solid rgba(255, 255, 255, .18); }
.contact-links a { display: flex; justify-content: space-between; gap: 24px; padding: 18px 0; border-bottom: 1px solid rgba(255, 255, 255, .18); }
.contact-links span { color: #9daea3; font-size: .72rem; text-transform: uppercase; }
.contact-links strong { font-family: var(--serif); font-size: 1rem; font-weight: 400; }
.inquiry-form { align-self: start; padding: 38px; color: var(--ink); background: var(--paper); }
.form-heading { margin-bottom: 28px; padding-bottom: 21px; border-bottom: 1px solid var(--line); }
.form-heading span { font-family: var(--serif); font-size: 1.6rem; }
.form-heading p { margin: 2px 0 0; color: var(--muted); font-size: .75rem; }
.inquiry-form label { display: block; margin-bottom: 19px; }
.inquiry-form label > span { display: block; margin-bottom: 7px; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea {
  width: 100%;
  padding: 12px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
}
.inquiry-form textarea { resize: vertical; }
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { border-color: var(--orange); }
.inquiry-form small { display: block; margin-top: 12px; color: var(--muted); font-size: .65rem; text-align: center; }

.site-footer { color: #d5ddd7; background: #091e15; }
.footer-main { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 65px; padding: 70px 0 55px; }
.brand--footer { color: var(--white); }
.brand--footer small { color: #9eaea4; }
.footer-brand p { margin: 24px 0 0; color: #92a298; font-size: .8rem; }
.footer-main h3 { margin: 4px 0 20px; color: #8fa097; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-main > div:not(.footer-brand) a { display: block; margin: 10px 0; font-size: .78rem; }
.footer-main a:hover { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; padding: 20px 0; border-top: 1px solid rgba(255, 255, 255, .12); color: #809188; font-size: .68rem; }
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--white);
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .25);
  transition: transform .2s ease;
}
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.04); }
.floating-whatsapp svg { width: 25px; fill: currentColor; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .site-nav { gap: 18px; }
  .site-nav a { font-size: .78rem; }
  .nav-cta { display: none; }
  .hero__grid { gap: 38px; }
  .hero__image { height: 480px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card--large { grid-row: span 2; }
  .story__grid, .contact-section__grid { gap: 55px; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 84px; }
  .container { width: min(calc(100% - 32px), var(--max)); }
  .season-bar__inner { justify-content: center; }
  .season-bar__inner > span:first-child { display: none; }
  .nav-wrap { height: 72px; justify-content: space-between; gap: 12px; }
  .nav-wrap .brand { margin-right: 0; }
  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 5px;
    padding: 0;
    cursor: pointer;
  }
  .menu-toggle > span:not(.sr-only) { display: block; width: 24px; height: 2px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    top: 108px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 28px 24px;
    background: var(--paper);
    transform: translateX(100%);
    transition: transform .28s ease;
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav a { padding: 18px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.6rem; font-weight: 400; }
  .hero { padding-top: 50px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { padding-bottom: 0; }
  .hero__visual { max-width: 620px; }
  .trust-strip__grid { grid-template-columns: 1fr 1fr; }
  .trust-strip__grid > div:nth-child(odd) { border-left: 1px solid rgba(255, 255, 255, .25); }
  .section { padding: 95px 0; }
  .section-heading--split, .price-header { grid-template-columns: 1fr; gap: 28px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card { min-height: 470px; }
  .feature-card--large { grid-column: span 2; grid-row: auto; }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .other-dates > div { grid-template-columns: 1fr 1fr; }
  .other-dates .button { grid-column: span 2; }
  .story__grid, .contact-section__grid { grid-template-columns: 1fr; }
  .story__media { max-width: 620px; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-main > div:last-child { grid-column: 2; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  .brand strong { font-size: .94rem; }
  h1 { font-size: clamp(2.65rem, 11vw, 3.1rem); }
  h1 em { display: block; }
  h2 { font-size: clamp(2.65rem, 13vw, 3.75rem); }
  .hero { padding: 38px 0 58px; }
  .hero__lead { font-size: 1rem; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .hero__visual { padding-right: 0; }
  .hero__image { height: 430px; }
  .hero__note { right: 14px; left: 14px; }
  .hero__label { display: none; }
  .hero__meta { gap: 12px; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .trust-strip__grid > div { min-height: 82px; border-left: 1px solid rgba(255, 255, 255, .25); }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-card--large { min-height: 470px; grid-column: auto; }
  .feature-card__content { padding: 24px; }
  .price-tabs { overflow-x: auto; }
  .price-tabs button { flex: none; padding: 15px 16px; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card { min-height: auto; }
  .price-card--image { min-height: 230px; }
  .location-card { padding: 28px 22px; }
  .date-list { grid-template-columns: 1fr; }
  .other-dates { padding: 28px 22px; }
  .other-dates > div { grid-template-columns: 1fr; }
  .other-dates .button { grid-column: auto; }
  .story__grid { gap: 50px; }
  .contact-section { padding: 90px 0; }
  .contact-links a { align-items: flex-start; flex-direction: column; gap: 4px; }
  .inquiry-form { padding: 27px 22px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
  .footer-brand { grid-column: span 2; }
  .footer-main > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 3px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/*
 * Logo-led, high-clarity refresh.
 * Large type, strong contrast and obvious controls are intentional:
 * many customers prefer a simpler, easier-to-read experience.
 */
:root {
  --ink: #252122;
  --ink-deep: #1c191a;
  --orange: #ef8122;
  --orange-deep: #d96416;
  --red: #eb2f34;
  --red-deep: #c91f26;
  --green: #81ad35;
  --green-deep: #557b1f;
  --cream: #fff5e8;
  --paper: #fffdf9;
  --sage: #d9e8bd;
  --line: rgba(37, 33, 34, .16);
  --muted: #5d5758;
  --max: 1220px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, "Segoe UI", sans-serif;
}

body {
  color: var(--ink);
  background: var(--paper);
  font-size: 18px;
  line-height: 1.7;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 4px solid #ffcf4a;
  outline-offset: 4px;
}

.container { width: min(calc(100% - 48px), var(--max)); }
.section { padding: 96px 0; }

.season-bar {
  color: #fff;
  background: var(--green-deep);
  font-size: .88rem;
  letter-spacing: 0;
}

.season-bar__inner { min-height: 44px; }
.season-bar a { border: 0; text-decoration: underline; text-underline-offset: 3px; }
.status-dot { width: 9px; height: 9px; background: #d8f793; }

.site-header {
  background: rgba(255, 255, 255, .98);
  border-bottom: 3px solid var(--orange);
  box-shadow: 0 5px 22px rgba(37, 33, 34, .08);
}

.nav-wrap { height: 98px; gap: 26px; }
.brand { min-width: 210px; }
.brand-logo {
  width: 218px;
  height: 78px;
  object-fit: contain;
  object-position: center;
}

.site-nav {
  gap: 24px;
  color: var(--ink);
  font-size: .94rem;
  font-weight: 700;
}

.site-nav a { padding: 13px 2px; }
.site-nav a::after { height: 3px; background: var(--red); }

.button {
  min-height: 58px;
  padding: 0 28px;
  color: #fff;
  background: var(--red);
  border: 2px solid var(--red);
  border-radius: 8px;
  font-size: .94rem;
  font-weight: 800;
  letter-spacing: 0;
}

.button:hover {
  color: #fff;
  background: var(--red-deep);
  border-color: var(--red-deep);
}

.button--small { min-height: 50px; padding: 0 20px; }
.button--orange { background: var(--red); border-color: var(--red); }
.button--outline { color: var(--ink); background: #fff; border-color: var(--ink); }
.button--outline:hover { color: #fff; background: var(--green-deep); border-color: var(--green-deep); }

.hero {
  min-height: 0;
  padding: 76px 0;
  background:
    radial-gradient(circle at 12% 16%, rgba(239, 129, 34, .15), transparent 28%),
    var(--cream);
}

.hero__grid { grid-template-columns: .9fr 1.1fr; gap: 64px; }
.hero__copy { padding: 10px 0; }
.hero h1 {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: clamp(3.3rem, 6.5vw, 6rem);
  line-height: 1.02;
}

h1 em,
h2 em { color: var(--red); }

.eyebrow {
  color: var(--green-deep);
  font-size: .82rem;
  letter-spacing: .08em;
}

.eyebrow::before { width: 38px; height: 3px; background: var(--orange); }
.hero__lead { color: #4b4546; font-size: 1.2rem; line-height: 1.7; }
.hero__actions { align-items: stretch; gap: 14px; margin-bottom: 38px; }
.hero__actions .button { min-width: 205px; }
.hero__meta { gap: 14px 24px; padding-top: 26px; border-color: rgba(37, 33, 34, .2); }
.hero__meta span { font-size: .9rem; }
.hero__meta svg { width: 21px; stroke: var(--green-deep); stroke-width: 2; }

.hero__visual { padding: 0 18px 48px 0; }
.hero__visual::before { border: 5px solid rgba(129, 173, 53, .2); }
.hero__image {
  height: 525px;
  border-radius: 18px;
  box-shadow: 0 20px 55px rgba(37, 33, 34, .2);
}
.hero__label { min-width: 210px; padding: 20px 24px; border-radius: 12px 0 0 0; }
.hero__label span { font-size: .75rem; }
.hero__label strong { font-size: 1.4rem; font-weight: 700; }
.hero__note {
  border-radius: 10px;
  background: var(--green-deep);
  box-shadow: 0 14px 35px rgba(37, 33, 34, .22);
}
.hero__note p { font-size: .86rem; }
.hero__note-number { color: #fff0b1; }

.quick-links { padding: 58px 0 64px; background: #fff; }
.quick-links h2 {
  margin-bottom: 28px;
  font-family: var(--sans);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
}
.quick-links__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quick-links__grid > a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 118px;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(37, 33, 34, .06);
}
.quick-links__grid > a:hover { border-color: var(--red); transform: translateY(-2px); }
.quick-links__number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 800;
}
.quick-links__grid a:nth-child(2) .quick-links__number { background: var(--orange-deep); }
.quick-links__grid a:nth-child(3) .quick-links__number { background: var(--green-deep); }
.quick-links__grid strong,
.quick-links__grid small { display: block; }
.quick-links__grid strong { font-size: 1rem; line-height: 1.3; }
.quick-links__grid small { margin-top: 5px; color: var(--muted); font-size: .84rem; line-height: 1.35; }
.quick-links__grid > a > span:last-child { color: var(--red); font-size: 1.6rem; font-weight: 800; }

.trust-strip { background: var(--red); }
.trust-strip__grid p { font-size: .82rem; }
.trust-strip__grid strong { font-size: .95rem; }

.section-heading--split > p,
.story__copy > p { color: #554f50; }
.feature-card { border-radius: 14px; }
.feature-card__content > span { font-size: .75rem; }
.feature-card__content h3 { font-size: 1.65rem; }
.feature-card__content p { font-size: .93rem; }
.product-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.product-photo-grid figure {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  background: var(--cream);
  border-radius: 12px;
}
.product-photo-grid img { width: 100%; height: 100%; object-fit: cover; }
.product-photo-grid figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(37, 33, 34, .88);
  border-radius: 7px;
  font-size: .9rem;
  font-weight: 800;
  text-align: center;
}

.price-section { color: #fff; background: var(--ink-deep); }
.price-tabs { gap: 10px; border: 0; }
.price-tabs button {
  min-height: 56px;
  padding: 12px 24px;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .35);
  border-radius: 8px 8px 0 0;
  font-size: .94rem;
}
.price-tabs button[aria-selected="true"] {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}
.price-tabs button::after { display: none; }
.price-card { border-radius: 10px; }
.price-card h3 { font-size: 1.25rem; }
.price-card li,
.price-card small { font-size: .86rem; }
.search-box input { min-height: 54px; font-size: 1rem; }

.location-card,
.other-dates { border-radius: 12px; }
.location-card h3,
.other-dates h3 { font-size: 1.5rem; font-weight: 700; }
.location-card p,
.other-dates article p { font-size: .9rem; }

.story { background: var(--cream); }
.story__media > img { border-radius: 18px; }
.story__caption { border-radius: 10px; background: var(--green-deep); }
.story__caption span { color: #edf8d7; }
.story__lead { font-size: 1.45rem; }

.contact-section { color: #fff; background: var(--green-deep); }
.contact-copy > p:not(.eyebrow) { color: #f2f7e9; }
.contact-links span { color: #e2edcf; font-size: .82rem; }
.contact-links strong { font-family: var(--sans); font-size: 1.05rem; font-weight: 700; }
.inquiry-form { border-radius: 14px; }
.inquiry-form label { font-size: .85rem; }
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea { min-height: 52px; font-size: 1rem; }

.site-footer { color: #e7e2e3; background: var(--ink-deep); }
.brand-logo--footer {
  width: 210px;
  height: 105px;
  padding: 7px;
  background: #fff;
  border-radius: 8px;
}
.footer-brand p { color: #c6bfc1; font-size: .88rem; }
.footer-main h3 { color: #f0bb80; font-size: .76rem; }
.footer-main > div:not(.footer-brand) a { font-size: .88rem; }
.footer-main a:hover { color: #ffb34b; }

@media (max-width: 1080px) {
  .nav-wrap { gap: 18px; }
  .brand-logo { width: 190px; }
  .site-nav { gap: 16px; font-size: .86rem; }
  .nav-cta { display: none; }
}

@media (max-width: 820px) {
  body { font-size: 17px; }
  .container { width: min(calc(100% - 32px), var(--max)); }
  .section { padding: 76px 0; }
  .nav-wrap { position: relative; height: 84px; }
  .brand { min-width: 0; }
  .brand-logo { width: 172px; height: 68px; }
  .menu-toggle {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 2;
    display: grid !important;
    flex: none;
    margin-left: auto;
    transform: translateY(-50%);
  }
  .menu-toggle > span:not(.sr-only) { background: var(--ink); }
  .site-nav {
    display: none;
    gap: 4px;
    padding: 22px;
    font-size: 1.05rem;
    transform: none;
    visibility: hidden;
  }
  .site-nav.is-open { display: flex; transform: none; visibility: visible; }
  .site-nav a { display: block; width: 100%; padding: 15px 8px; border-bottom: 1px solid var(--line); }
  .hero { padding: 50px 0 62px; }
  .hero__grid { width: 100%; grid-template-columns: minmax(0, 1fr); gap: 44px; }
  .hero__copy,
  .hero__visual { width: 100%; min-width: 0; max-width: 100%; }
  .hero__lead { overflow-wrap: anywhere; }
  .hero h1 { font-size: clamp(3rem, 11vw, 5rem); }
  .hero__image { height: 460px; }
  .quick-links__grid { grid-template-columns: 1fr; }
  .quick-links__grid > a { min-height: 100px; }
  .product-photo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  body { font-size: 17px; }
  .season-bar__inner { justify-content: center; text-align: center; }
  .season-bar__inner > span { display: none !important; }
  .season-phone { padding: 8px 0; }
  .brand-logo { width: 155px; height: 62px; }
  .hero { padding-top: 42px; }
  .hero h1 { margin-bottom: 22px; font-size: 2.8rem; }
  .hero__lead { font-size: 1.05rem; }
  .hero__actions { display: grid; grid-template-columns: 1fr; }
  .hero__actions .button { width: 100%; }
  .hero__meta { display: grid; grid-template-columns: 1fr; }
  .hero__image { height: 370px; }
  .hero__visual { padding-right: 0; }
  .hero__note { left: 12px; }
  .quick-links { padding: 46px 0 52px; }
  .quick-links h2 { font-size: 1.55rem; }
  .quick-links__grid > a { grid-template-columns: auto 1fr; padding: 20px 18px; }
  .quick-links__grid > a > span:last-child { display: none; }
  .product-photo-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-photo-grid figure { min-height: 180px; }
  .price-tabs { display: grid; grid-template-columns: 1fr; }
  .price-tabs button { width: 100%; border-radius: 8px; text-align: left; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}
