:root {
  --wine: #6f1b20;
  --wine-dark: #2f1512;
  --vine: #2f6b3f;
  --vine-dark: #1f4e2f;
  --charcoal: #22221d;
  --cream: #f1e7d6;
  --ivory: #fbf3e6;
  --gold: #b98b45;
  --muted: #675d50;
  --line: #d0b88f;
  --paper: #f7efdf;
  --leather: #3a1715;
  --shadow: 0 18px 45px rgba(38, 28, 18, 0.17);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--cream);
  color: #211917;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

body:not(.admin-body) {
  background:
    radial-gradient(circle at 50% -18rem, rgba(255, 250, 240, 0.88), rgba(255, 250, 240, 0) 34rem),
    linear-gradient(rgba(244, 235, 220, 0.82), rgba(244, 235, 220, 0.88)),
    url("images/old-world-vineyard-light.jpg") center -96px / min(1200px, 100%) auto no-repeat,
    var(--cream);
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(111, 27, 32, 0.42);
  outline-offset: 3px;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

.promo {
  --promo-bg-top: rgba(89, 23, 22, 0.90);
  --promo-bg-bottom: rgba(55, 20, 17, 0.92);
  align-items: center;
  background:
    linear-gradient(180deg, var(--promo-bg-top), var(--promo-bg-bottom)),
    url("images/old-world-wine-strip.jpg") center / cover;
  border-bottom: 1px solid rgba(185, 139, 69, 0.62);
  color: #fff6e7;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  justify-content: center;
  line-height: 1.25;
  text-align: center;
  font-size: clamp(12px, 0.85vw, 14px);
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 11px 20px;
  position: relative;
  z-index: 3001;
}

.promo span {
  display: block;
  max-width: min(100%, 980px);
  white-space: normal;
}

.promo-mobile-message {
  display: none;
}

.promo strong {
  background: var(--ivory);
  border: 1px solid rgba(185, 139, 69, 0.55);
  color: var(--wine);
  border-radius: 6px;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 5px 12px;
  text-transform: uppercase;
}

.site-header {
  background: rgba(250, 244, 232, 0.94);
  border-bottom: 1px solid rgba(150, 112, 60, 0.34);
  box-shadow: 0 8px 22px rgba(38, 28, 18, 0.07);
  position: sticky;
  top: 0;
  z-index: 3000;
  backdrop-filter: blur(12px);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.logo-link {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
}

.logo {
  height: auto;
  width: 220px;
}

.nav-actions {
  align-items: center;
  display: none;
  gap: 8px;
  margin-left: auto;
}

.nav-book-button,
.nav-menu-toggle {
  display: none;
}

.nav-menu-icon {
  border-bottom: 2px solid currentColor;
  border-top: 2px solid currentColor;
  height: 14px;
  position: relative;
  width: 18px;
}

.nav-menu-icon::before {
  background: currentColor;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 4px;
}

.nav-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
  align-items: center;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links a {
  color: #3f3932;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 44px;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--wine);
}

.button,
button {
  appearance: none;
  border: 1px solid rgba(185, 139, 69, 0.28);
  background: linear-gradient(180deg, #7a2024, #561317);
  color: white;
  border-radius: 4px;
  box-shadow: 0 10px 26px rgba(56, 20, 16, 0.16);
  padding: 12px 18px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1.2;
  min-height: 44px;
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-links a.button,
.nav-links a.button:hover,
.nav-links a.button:focus-visible {
  color: white;
}

.button.secondary {
  background: rgba(251, 243, 230, 0.9);
  border: 1px solid rgba(111, 27, 32, 0.64);
  color: var(--wine);
}

body:not(.admin-body) .button:hover,
body:not(.admin-body) button:hover,
body:not(.admin-body) .button:focus-visible,
body:not(.admin-body) button:focus-visible {
  background: linear-gradient(180deg, #4b1714, #2f1512);
  border-color: var(--wine-dark);
  box-shadow: 0 12px 24px rgba(47, 21, 18, 0.25);
  color: white;
  transform: translateY(-1px);
}

body:not(.admin-body) .button.secondary:hover,
body:not(.admin-body) .button.secondary:focus-visible {
  background: var(--wine);
  border-color: var(--wine);
  color: white;
}

.hero .hero-secondary-button,
.seo-landing-hero .hero-secondary-button {
  background: var(--ivory);
  border-color: rgba(185, 139, 69, 0.7);
  color: var(--wine-dark);
  box-shadow: 0 12px 24px rgba(15, 12, 14, 0.18);
}

body:not(.admin-body) .hero .hero-secondary-button:hover,
body:not(.admin-body) .hero .hero-secondary-button:focus-visible,
body:not(.admin-body) .seo-landing-hero .hero-secondary-button:hover,
body:not(.admin-body) .seo-landing-hero .hero-secondary-button:focus-visible {
  background: var(--wine-dark);
  border-color: white;
  color: white;
}

body:not(.admin-body) button:disabled,
body:not(.admin-body) button:disabled:hover,
body:not(.admin-body) .button[aria-disabled="true"],
body:not(.admin-body) .button[aria-disabled="true"]:hover {
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.nav-links a.button.secondary,
.nav-links a.button.secondary:hover,
.nav-links a.button.secondary:focus-visible {
  color: var(--wine);
}

.button.dark {
  background: var(--charcoal);
}

.button.small {
  border-radius: 7px;
  font-size: 12px;
  min-height: 38px;
  padding: 8px 12px;
}

.button.icon-action-button {
  min-width: 42px;
  padding: 8px;
}

.action-button-icon {
  font-size: 20px;
}

.button.danger {
  border-color: #8c1d1d;
  color: #8c1d1d;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 640px;
  background:
    linear-gradient(90deg, rgba(37, 25, 20, 0.80), rgba(37, 25, 20, 0.40)),
    var(--hero-image, url("../images/hero-vineyard.jpg")) center / cover;
  border-bottom: 3px solid rgba(185, 139, 69, 0.58);
  color: white;
  display: grid;
  align-items: center;
  padding: 70px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 460px);
  gap: 58px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(52px, 6vw, 84px);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.34);
}

.home-original-hero {
  background:
    linear-gradient(180deg, rgba(244, 235, 220, 0.70), rgba(244, 235, 220, 0.88)),
    url("images/old-world-vineyard-light.jpg") center center / cover no-repeat,
    #f2e4d0;
  border-bottom: 3px solid rgba(185, 139, 69, 0.58);
  color: #251716;
  min-height: auto;
  padding: clamp(16px, 3vw, 34px) 0 clamp(24px, 4vw, 46px);
}

.home-original-hero-art {
  background: url("images/hero-home-original.jpg") center top / 100% auto no-repeat;
  box-shadow: 0 28px 70px rgba(38, 28, 18, 0.22);
  margin: 0 auto;
  max-width: 1080px;
  overflow: hidden;
  padding: clamp(500px, 45vw, 540px) clamp(22px, 6vw, 88px) clamp(30px, 4vw, 46px);
  position: relative;
}

.home-original-hero-panel {
  display: grid;
  gap: 12px;
  position: relative;
}

.home-original-hero-panel .eyebrow,
.home-original-hero-panel p {
  margin: 0;
}

.home-original-hero-panel p:not(.eyebrow) {
  color: #251716;
  font-size: clamp(16px, 1.6vw, 21px);
  font-weight: 800;
  line-height: 1.45;
  max-width: 780px;
}

.home-original-hero-actions {
  margin-top: 4px;
}

.home-original-hero .hero-secondary-button {
  background: #fffaf2;
  border-color: rgba(135, 25, 25, 0.55);
  color: var(--wine);
}

.home-original-hero .hero-trust-line {
  color: #4f3a32;
  font-weight: 900;
  margin: 0;
  text-shadow: none;
}

.eyebrow {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
  margin: 0 0 18px;
}

h1 {
  font-size: clamp(56px, 8vw, 104px);
}

h2 {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--wine-dark);
}

h3 {
  font-size: 28px;
}

.script {
  color: #efc476;
  font-style: italic;
}

.card,
.panel,
.booking-card {
  background: linear-gradient(180deg, rgba(255, 249, 239, 0.98), rgba(247, 237, 221, 0.96));
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.booking-card {
  padding: 24px;
  color: #251716;
}

.tour-detail-hero,
.region-tour-hero {
  min-height: clamp(430px, 58vh, 560px);
}

.package-purchase-section {
  padding: 48px 0 58px;
}

.package-purchase-layout {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
}

.package-detail-panel {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.package-detail-panel .eyebrow,
.package-detail-panel h2,
.package-detail-panel p {
  margin: 0;
}

.package-detail-panel h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.package-detail-panel p:not(.eyebrow) {
  color: #3f3230;
  font-size: 17px;
  line-height: 1.65;
}

.package-included-card {
  box-shadow: 0 14px 34px rgba(63, 23, 16, 0.1);
  padding: 20px 22px;
}

.package-included-card h3 {
  color: var(--wine-dark);
  font-size: 27px;
  line-height: 1.05;
  margin-bottom: 10px;
}

.package-included-card ul {
  columns: 2;
  column-gap: 28px;
  margin: 0;
  padding-left: 20px;
}

.package-included-card li {
  break-inside: avoid;
  line-height: 1.45;
  margin-bottom: 7px;
}

.package-route-reassurance {
  background: #fff8ef;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
}

.package-route-reassurance strong {
  font-size: 25px;
}

.package-trust-badges {
  margin-top: 0;
}

.package-private-group-perk {
  margin: 0;
  max-width: none;
}

.region-booking-summary .region-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.region-booking-summary .package-included-card ul {
  columns: 1;
}

.region-detail-layout {
  max-width: 980px;
}

.package-booking-card {
  max-height: calc(100vh - 150px);
  overflow-y: auto;
  padding: 18px;
  position: sticky;
  scrollbar-gutter: stable;
  top: 128px;
  z-index: 20;
}

.booking-card-head {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
}

.booking-card-head .eyebrow,
.booking-card-head h3,
.booking-card-head p {
  margin: 0;
}

.booking-card-head h3 {
  color: var(--wine-dark);
  font-size: 27px;
  line-height: 1.05;
}

.booking-card-head p:not(.eyebrow):not(.price) {
  color: #4b3a36;
  font-size: 14px;
  line-height: 1.45;
}

.package-booking-card .price {
  font-size: 19px;
  line-height: 1.2;
}

.package-booking-card .field {
  gap: 6px;
  margin-bottom: 10px;
}

.package-booking-card label {
  font-size: 12px;
}

.package-booking-card input,
.package-booking-card select,
.package-booking-card textarea {
  border-radius: 7px;
  min-height: 40px;
  padding: 9px 10px;
}

.package-booking-card textarea {
  min-height: 78px;
}

.package-booking-card .field-note {
  font-size: 12px;
  line-height: 1.35;
}

.package-booking-card .grid.two,
.booking-contact-grid {
  gap: 10px;
}

.package-booking-card .availability-widget {
  gap: 8px;
  margin: 0 0 12px;
  padding: 10px;
}

.package-booking-card .availability-widget p {
  font-size: 12px;
  line-height: 1.35;
}

.package-booking-card .availability-calendar-head {
  gap: 8px;
  grid-template-columns: 36px minmax(0, 1fr) 36px;
}

.package-booking-card .availability-status {
  font-size: 24px;
}

.package-booking-card .availability-season {
  font-size: 10px;
  margin-top: 4px;
}

.package-booking-card .availability-nav {
  border-radius: 7px;
  font-size: 24px;
  height: 36px;
  min-height: 36px;
  width: 36px;
}

.package-booking-card .availability-selected-status {
  border-radius: 7px;
  font-size: 13px;
  padding: 8px 10px;
}

.package-booking-card .availability-weekdays,
.package-booking-card .availability-days {
  gap: 4px;
  grid-template-columns: repeat(7, minmax(38px, 1fr));
  width: 100%;
}

.package-booking-card .availability-day {
  border-radius: 7px;
  gap: 3px;
  min-height: 48px;
  min-width: 38px;
  padding: 5px 2px;
}

.package-booking-card .availability-day .availability-weekday {
  display: none;
}

.package-booking-card .availability-date-line {
  font-size: 17px;
}

.package-booking-card .availability-label {
  font-size: 8px;
  letter-spacing: 0;
  white-space: normal;
}

.package-booking-card .terms-agreement-panel {
  gap: 8px;
  margin: 12px 0;
}

.package-booking-card .booking-terms-summary {
  gap: 6px;
  padding: 10px;
}

.package-booking-card .booking-terms-summary p,
.package-booking-card .booking-terms-details summary,
.package-booking-card .terms-check {
  font-size: 12px;
}

.package-booking-card .booking-terms-scroll {
  max-height: 180px;
}

.package-booking-card button[type="submit"] {
  bottom: 0;
  box-shadow: 0 -10px 22px rgba(255, 250, 242, 0.92);
  margin-top: 2px;
  position: sticky;
  width: 100%;
  z-index: 2;
}

.mobile-booking-bar,
.mobile-booking-bar-spacer {
  display: none;
}

.quick-book-card {
  display: grid;
  gap: 16px;
}

.quick-book-card .eyebrow,
.quick-book-card h3,
.quick-book-card p {
  margin: 0;
}

.quick-book-card h3 {
  color: var(--wine-dark);
  font-size: 32px;
  line-height: 1.05;
}

.quick-book-card p:not(.eyebrow) {
  color: #3f3230;
}

.quick-book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tour-overview-section {
  padding-bottom: 70px;
}

.tour-highlights-layout {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.78fr);
}

.tour-highlights-layout {
  margin-bottom: 44px;
}

.booking-layout {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(240px, 1fr) minmax(0, 2fr);
}

.booking-layout > * {
  min-width: 0;
}

.booking-layout .booking-card {
  width: 100%;
}

.booking-guests-row {
  max-width: 50%;
}

.included-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 26px;
}

.included-card ul {
  margin-bottom: 0;
}

.van-showcase-section {
  overflow: hidden;
}

body.laquinta-page .van-showcase-section.section.alt {
  background:
    linear-gradient(rgba(251, 243, 230, 0.78), rgba(251, 243, 230, 0.90)),
    url("images/old-world-vineyard-light.jpg") center center / cover no-repeat;
}

.van-showcase {
  align-items: center;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.82fr);
}

.van-showcase-media {
  display: block;
}

.van-showcase-media img {
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

.van-showcase-copy {
  display: grid;
  gap: 15px;
}

.van-showcase-copy .eyebrow,
.van-showcase-copy h2,
.van-showcase-copy p {
  margin: 0;
}

.van-showcase-copy h2 {
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.02;
}

.van-showcase-copy p:not(.eyebrow) {
  color: #3f3230;
  font-size: 17px;
}

.van-showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.section.dog-friendly-tour-section {
  background: var(--ivory);
  border-bottom: 1px solid rgba(47, 107, 63, 0.12);
  border-top: 1px solid rgba(47, 107, 63, 0.12);
  min-height: 0;
  padding: 0;
  scroll-margin-top: 112px;
}

.dog-friendly-tour-layout {
  align-items: stretch;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.dog-friendly-tour-media {
  margin: 0;
  min-height: 820px;
  overflow: hidden;
}

.dog-friendly-tour-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  width: 100%;
}

.dog-friendly-tour-copy {
  align-content: center;
  background: var(--ivory);
  display: grid;
  gap: 16px;
  padding: clamp(48px, 5vw, 88px);
  position: relative;
  width: 100%;
}

.dog-friendly-tour-copy::before {
  align-items: center;
  background: var(--vine);
  border: 4px solid var(--ivory);
  border-radius: 50%;
  color: white;
  content: "pets";
  display: flex;
  font-family: "Material Symbols Outlined";
  font-size: 29px;
  height: 62px;
  justify-content: center;
  position: absolute;
  right: 24px;
  top: 24px;
  width: 62px;
}

.dog-friendly-tour-copy .eyebrow,
.dog-friendly-tour-copy h2,
.dog-friendly-tour-copy p,
.dog-friendly-tour-copy ul {
  margin: 0;
}

.dog-friendly-tour-copy h2 {
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1;
}

.dog-friendly-tour-copy > p:not(.eyebrow):not(.dog-friendly-tour-note) {
  color: #3f3230;
  font-size: 17px;
  line-height: 1.7;
}

.dog-friendly-tour-list {
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.dog-friendly-tour-list li {
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(47, 107, 63, 0.18);
  border-radius: 9px;
  display: flex;
  gap: 11px;
  padding: 11px 13px;
}

.dog-friendly-tour-list .material-symbols-outlined {
  color: var(--vine);
  flex: 0 0 auto;
}

.dog-friendly-tour-price {
  align-items: center;
  display: flex;
  gap: 14px;
}

.dog-friendly-tour-price > strong {
  color: var(--vine-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1;
}

.dog-friendly-tour-price span {
  border-left: 1px solid rgba(47, 107, 63, 0.28);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  padding-left: 14px;
  text-transform: uppercase;
}

.dog-friendly-tour-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dog-friendly-tour-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.dog-friendly-booking-flag {
  align-items: center;
  background: #e6f4e5;
  border: 1px solid rgba(47, 107, 63, 0.28);
  border-radius: 999px;
  color: var(--vine-dark);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  gap: 5px;
  margin-top: 6px;
  padding: 5px 9px;
  text-transform: uppercase;
}

.dog-friendly-booking-flag .material-symbols-outlined {
  font-size: 16px;
}

.laquinta-page {
  background:
    linear-gradient(rgba(251, 243, 230, 0.82), rgba(241, 231, 214, 0.92)),
    url("images/old-world-vineyard-light.jpg") center top / min(1200px, 100%) auto no-repeat,
    var(--cream);
}

.laquinta-campaign-section {
  background:
    linear-gradient(180deg, rgba(27, 23, 19, 0.10), rgba(251, 243, 230, 0.88)),
    #f2e4d0;
  border-bottom: 0;
  padding: clamp(22px, 4vw, 48px) 0;
}

.laquinta-poster {
  aspect-ratio: 1792 / 1536;
  background: url("images/la-quinta/sip-stay-hero.jpg") center top / 100% 100% no-repeat;
  box-shadow: 0 28px 70px rgba(38, 28, 18, 0.22);
  margin: 0 auto;
  max-width: 1280px;
  overflow: hidden;
  position: relative;
}

.laquinta-poster-copy {
  color: white;
  font-size: clamp(14px, 1.75vw, 24px);
  font-weight: 700;
  left: 13%;
  line-height: 1.18;
  max-width: 40%;
  position: absolute;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
  top: 34.8%;
}

.laquinta-poster-copy p {
  margin: 0;
}

.laquinta-poster-copy strong {
  color: #f7c54d;
  font-weight: 700;
}

.laquinta-benefit-row {
  align-items: center;
  bottom: 29%;
  display: grid;
  gap: clamp(8px, 1.4vw, 22px);
  grid-template-columns: minmax(0, 1fr) 0.36fr minmax(0, 1fr);
  left: 6%;
  position: absolute;
  width: 42%;
}

.laquinta-benefit {
  align-items: center;
  display: grid;
  justify-items: center;
  text-align: center;
}

.laquinta-benefit img {
  width: clamp(38px, 5.4vw, 76px);
}

.laquinta-benefit span {
  color: #004528;
  font-size: clamp(18px, 3vw, 40px);
  font-weight: 950;
  letter-spacing: 0.02em;
  line-height: 0.98;
  text-transform: uppercase;
}

.laquinta-benefit small {
  color: #16120f;
  font-size: clamp(10px, 1.38vw, 19px);
  font-weight: 900;
  line-height: 1.05;
}

.laquinta-heart {
  align-self: center;
  justify-self: center;
  width: clamp(28px, 3.5vw, 54px);
}

.laquinta-discount-art {
  bottom: 18.8%;
  position: absolute;
  right: 5.7%;
  width: 39.5%;
}

.laquinta-bottom-strip {
  bottom: 2.1%;
  left: 1.7%;
  position: absolute;
  width: 96.6%;
}

.laquinta-bunk-preview-section {
  background: #e5d9db;
  border-bottom: 1px solid rgba(185, 139, 69, 0.34);
  border-top: 1px solid rgba(185, 139, 69, 0.22);
  padding: clamp(26px, 4vw, 46px) 0;
}

.laquinta-bunk-preview {
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(185, 139, 69, 0.46);
  border-radius: 6px;
  box-shadow: 0 22px 52px rgba(38, 28, 18, 0.14);
  display: grid;
  margin: 0 auto;
  max-width: 980px;
  overflow: hidden;
}

.laquinta-bunk-preview img {
  aspect-ratio: 1400 / 933;
  grid-area: 1 / 1;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.laquinta-bunk-preview figcaption {
  align-self: end;
  background: linear-gradient(180deg, rgba(35, 21, 18, 0), rgba(35, 21, 18, 0.78));
  color: #fff8ed;
  font-size: 14px;
  font-weight: 850;
  grid-area: 1 / 1;
  line-height: 1.35;
  padding: 74px 18px 16px;
}

.laquinta-offer-section {
  background-color: #f4ebdc;
  background-image:
    linear-gradient(180deg, rgba(251, 243, 230, 0.96), rgba(244, 235, 220, 0.96)),
    url("images/old-world-vineyard-light.jpg");
  background-position: 0 0, center clamp(-440px, -22vw, -260px);
  background-repeat: repeat, no-repeat;
  background-size: auto, 100% auto;
  border-bottom: 1px solid rgba(185, 139, 69, 0.34);
  border-top: 0;
}

.laquinta-offer-grid {
  align-items: stretch;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
}

.laquinta-offer-copy,
.laquinta-voucher-card {
  background: rgba(255, 250, 242, 0.92);
  border: 1px solid rgba(185, 139, 69, 0.46);
  border-radius: 6px;
  box-shadow: 0 22px 52px rgba(38, 28, 18, 0.14);
  padding: clamp(24px, 4vw, 38px);
}

.laquinta-offer-copy h1 {
  color: var(--wine-dark);
  font-size: clamp(44px, 5.7vw, 78px);
  margin-bottom: 18px;
}

.laquinta-offer-copy p:not(.eyebrow),
.laquinta-voucher-card p:not(.eyebrow),
.laquinta-fine-print {
  color: #3f3230;
  font-size: 17px;
}

.laquinta-code-card,
.laquinta-voucher-details {
  background: #edf5ec;
  border: 1px solid #004528;
  border-radius: 8px;
  color: #004528;
  display: inline-grid;
  gap: 2px;
  margin: 10px 0 18px;
  min-width: min(100%, 310px);
  padding: 14px 18px;
}

.laquinta-code-card span,
.laquinta-voucher-details span {
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.laquinta-code-card strong,
.laquinta-voucher-details strong {
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: 0.04em;
  line-height: 0.95;
}

.laquinta-action-row,
.laquinta-voucher-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.laquinta-fine-print {
  font-size: 13px;
  line-height: 1.45;
  margin: 18px 0 0;
}

.laquinta-voucher-card {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.94), rgba(251, 243, 230, 0.94)),
    url("images/la-quinta/exclusive-discount.png") right 20px top 18px / 42% auto no-repeat;
}

.laquinta-voucher-card h2 {
  font-size: clamp(31px, 3.8vw, 48px);
  line-height: 1.02;
  margin-bottom: 14px;
  max-width: 88%;
}

.laquinta-voucher-card .laquinta-voucher-details {
  display: grid;
  margin-right: 10px;
  min-width: 190px;
}

.laquinta-rooms-section {
  background: #e5d9db;
  border-bottom: 1px solid rgba(185, 139, 69, 0.34);
  border-top: 1px solid rgba(185, 139, 69, 0.34);
}

.laquinta-rooms-layout {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 52px);
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
}

.laquinta-rooms-copy {
  display: grid;
  gap: 16px;
}

.laquinta-rooms-copy .eyebrow,
.laquinta-rooms-copy h2,
.laquinta-rooms-copy p {
  margin: 0;
}

.laquinta-rooms-copy h2 {
  color: var(--wine-dark);
  font-size: clamp(38px, 4.8vw, 66px);
  line-height: 0.98;
}

.laquinta-rooms-copy p:not(.eyebrow) {
  color: #3f3230;
  font-size: 18px;
  line-height: 1.62;
}

.laquinta-room-facts {
  display: grid;
  gap: 10px;
  margin: 2px 0 4px;
}

.laquinta-room-facts div {
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(185, 139, 69, 0.42);
  border-radius: 6px;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
}

.laquinta-room-facts strong {
  color: var(--wine-dark);
  line-height: 1.2;
}

.laquinta-room-facts span {
  color: #514038;
  font-size: 15px;
  line-height: 1.45;
}

.laquinta-rooms-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.laquinta-rooms-gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.laquinta-room-photo {
  background: rgba(255, 250, 242, 0.86);
  border: 1px solid rgba(185, 139, 69, 0.48);
  border-radius: 6px;
  box-shadow: 0 20px 48px rgba(38, 28, 18, 0.15);
  display: grid;
  margin: 0;
  overflow: hidden;
}

.laquinta-room-photo-featured {
  grid-row: span 2;
  min-height: 560px;
}

.laquinta-room-photo-small {
  min-height: 273px;
}

.laquinta-room-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.laquinta-room-photo figcaption {
  align-self: end;
  background: linear-gradient(180deg, rgba(35, 21, 18, 0), rgba(35, 21, 18, 0.78));
  color: #fff8ed;
  font-size: 13px;
  font-weight: 800;
  grid-area: 1 / 1;
  line-height: 1.35;
  padding: 54px 16px 14px;
}

.laquinta-room-photo img {
  grid-area: 1 / 1;
}

.tour-host-section {
  background:
    linear-gradient(rgba(251, 243, 230, 0.78), rgba(251, 243, 230, 0.88)),
    url("images/old-world-vineyard-light.jpg") center top / cover no-repeat;
  border-top: 1px solid rgba(185, 139, 69, 0.32);
}

.tour-host-layout {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
}

.tour-host-gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.74fr);
}

.tour-host-image {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
  margin: 0;
  overflow: hidden;
}

.tour-host-image-primary {
  grid-row: span 2;
  min-height: 540px;
}

.tour-host-image-small {
  min-height: 263px;
}

.tour-host-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.tour-host-image-primary img {
  object-position: 51% 48%;
}

.tour-host-image-small img {
  object-position: center;
}

.tour-host-copy {
  display: grid;
  gap: 14px;
}

.tour-host-copy .eyebrow,
.tour-host-copy h2,
.tour-host-copy p {
  margin: 0;
}

.tour-host-copy h2 {
  color: var(--wine-dark);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.96;
}

.tour-host-subtitle {
  color: var(--vine-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.08;
}

.tour-host-copy p:not(.eyebrow):not(.tour-host-subtitle) {
  color: #3f3230;
  font-size: 17px;
  line-height: 1.68;
}

.tour-host-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.tour-trust-badges {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tour-trust-badges span {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 210, 191, 0.95);
  border-radius: 999px;
  color: #3a2b27;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  padding: 8px 10px;
}

.hero .tour-trust-badges span,
.blog-hero .tour-trust-badges span {
  background: rgba(255, 255, 255, 0.92);
}

.hero-reassurance {
  color: #342724;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.5;
  margin-top: 14px;
}

.hero .hero-reassurance {
  color: #fffaf2;
}

.hero-trust-line {
  color: #342724;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.5;
  margin-top: 14px;
}

.hero .hero-trust-line {
  color: #fffaf2;
}

.this-week-offer-strip {
  background: var(--wine);
  color: #fffaf2;
  padding: 22px 0;
}

.this-week-offer {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.this-week-offer .eyebrow {
  color: #efc476;
  margin-bottom: 6px;
}

.this-week-offer h2 {
  color: #fffaf2;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.02;
  margin: 0 0 8px;
}

.this-week-offer p:not(.eyebrow) {
  color: rgba(255, 250, 242, 0.92);
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
}

.this-week-offer .button {
  background: #fffaf2;
  border-color: #fffaf2;
  color: var(--wine);
  white-space: nowrap;
}

.this-week-offer .button:hover,
.this-week-offer .button:focus-visible {
  background: #efc476;
  border-color: #efc476;
  color: var(--wine-dark);
}

.tour-intent-section {
  padding-top: 54px;
}

.tour-intent-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tour-intent-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(63, 23, 16, 0.09);
  color: inherit;
  display: grid;
  gap: 10px;
  min-height: 230px;
  padding: 20px;
  text-decoration: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.tour-intent-card:hover,
.tour-intent-card:focus-visible {
  border-color: var(--wine);
  box-shadow: 0 18px 42px rgba(63, 23, 16, 0.16);
  transform: translateY(-2px);
}

.tour-intent-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tour-intent-card h3 {
  color: var(--wine-dark);
  font-size: 25px;
  line-height: 1.04;
  margin: 0;
}

.tour-intent-card p {
  color: #463330;
  line-height: 1.55;
  margin: 0;
}

.tour-intent-card.is-featured {
  background: #fffaf2;
  border-color: rgba(157, 0, 38, 0.45);
  grid-column: span 2;
}

.tour-intent-card:nth-child(4),
.tour-intent-card:nth-child(5) {
  grid-column: span 2;
  min-height: 210px;
}

.home-featured-packages-section {
  background:
    linear-gradient(180deg, rgba(249, 242, 229, 0.78), rgba(239, 226, 207, 0.88)),
    url("images/old-world-vineyard-light.jpg") center top / cover no-repeat;
  border-bottom: 1px solid rgba(185, 139, 69, 0.32);
  border-top: 1px solid rgba(185, 139, 69, 0.32);
}

.home-signature-packages-section {
  background: linear-gradient(180deg, rgba(250, 242, 229, 0.96), rgba(241, 231, 214, 0.98));
}

.home-region-links-section {
  background:
    linear-gradient(180deg, rgba(251, 245, 235, 0.92), rgba(239, 228, 210, 0.95)),
    url("images/old-world-vineyard-light.jpg") center top / 100% auto no-repeat;
  border-bottom: 1px solid rgba(185, 139, 69, 0.28);
  padding: 46px 0;
}

.home-region-links-layout {
  align-items: center;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
}

.home-region-links-copy h2 {
  font-size: clamp(35px, 4vw, 58px);
  line-height: 0.98;
  margin: 0 0 14px;
}

.home-region-links-copy p:not(.eyebrow) {
  margin: 0;
  max-width: 560px;
}

.home-region-link-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.home-region-link-list a {
  background: rgba(255, 250, 242, 0.64);
  border: 1px solid rgba(125, 30, 26, 0.22);
  border-radius: 6px;
  box-shadow: 0 14px 32px rgba(55, 41, 28, 0.10);
  color: var(--wine-dark);
  display: grid;
  gap: 9px;
  min-height: 148px;
  padding: 16px;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.home-region-link-list a:hover,
.home-region-link-list a:focus-visible {
  background: rgba(255, 250, 242, 0.84);
  border-color: rgba(125, 30, 26, 0.46);
  transform: translateY(-2px);
}

.home-region-link-list span {
  font-weight: 950;
  line-height: 1.1;
}

.home-region-link-list small {
  color: #604b42;
  font-size: 13px;
  line-height: 1.45;
}

.home-featured-packages-section .section-head,
.home-advice-section .section-head {
  max-width: 1120px;
}

.home-featured-package-grid {
  align-items: stretch;
}

.home-featured-package-card {
  background: linear-gradient(180deg, rgba(255, 249, 239, 0.97), rgba(247, 237, 221, 0.97));
  border: 1px solid rgba(185, 139, 69, 0.44);
  border-radius: 6px;
  box-shadow: 0 22px 52px rgba(38, 28, 18, 0.16);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.home-featured-package-card img {
  height: 220px;
  object-fit: cover;
  width: 100%;
}

.home-featured-package-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 13px;
  padding: 22px;
}

.home-featured-package-body h3 {
  color: var(--wine-dark);
  font-size: clamp(27px, 3vw, 34px);
  line-height: 1.02;
  margin: 0;
}

.home-featured-package-body p {
  color: #463330;
  line-height: 1.55;
  margin: 0;
}

.home-featured-package-footer {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  margin-top: auto;
}

.home-featured-package-footer .price {
  margin: 0;
}

.home-featured-package-footer .button {
  flex: 0 0 auto;
}

.anti-wine-tour-spotlight {
  background:
    radial-gradient(circle at 84% 14%, rgba(214, 167, 74, 0.20), transparent 34%),
    linear-gradient(135deg, #171713 0%, #261c18 52%, #4a101f 100%);
  border-bottom: 2px solid rgba(214, 167, 74, 0.58);
  border-top: 2px solid rgba(214, 167, 74, 0.58);
  color: #fffaf2;
}

.region-tour-index-section .anti-wine-tour-spotlight {
  background: transparent;
  border: 0;
  margin: 34px 0 42px;
  padding: 0;
}

.region-tour-index-section .anti-wine-tour-spotlight > .container {
  max-width: none;
  padding: 0;
  width: 100%;
}

.anti-wine-tour-layout {
  background: #1c1a17;
  border: 1px solid rgba(214, 167, 74, 0.62);
  border-radius: 10px;
  box-shadow: 0 28px 72px rgba(14, 9, 7, 0.34);
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  overflow: hidden;
}

.anti-wine-tour-media {
  min-height: 620px;
  overflow: hidden;
  position: relative;
}

.anti-wine-tour-media::after {
  background: linear-gradient(180deg, transparent 56%, rgba(11, 8, 7, 0.86));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.anti-wine-tour-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.anti-wine-tour-photo-credit,
.anti-wine-tour-hero-credit {
  color: #fff7e8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration-color: rgba(255, 247, 232, 0.5);
}

.anti-wine-tour-photo-credit {
  bottom: 16px;
  left: 18px;
  position: absolute;
  z-index: 1;
}

.anti-wine-tour-copy {
  align-content: center;
  display: grid;
  gap: 18px;
  padding: clamp(30px, 5vw, 64px);
}

.anti-wine-tour-copy .eyebrow,
.anti-wine-tour-copy h2,
.anti-wine-tour-copy p {
  color: inherit;
  margin: 0;
}

.anti-wine-tour-copy h2 {
  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.9;
}

.anti-wine-tour-kicker-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.anti-wine-tour-favourite,
.tour-card-favourite {
  background: #d6a74a;
  border-radius: 999px;
  color: #25140d;
  display: inline-flex;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
  padding: 7px 12px;
  text-transform: uppercase;
}

.anti-wine-tour-lede {
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.45;
  max-width: 760px;
}

.anti-wine-tour-stops {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.anti-wine-tour-stops li {
  align-items: flex-start;
  background: rgba(255, 250, 242, 0.07);
  border: 1px solid rgba(214, 167, 74, 0.28);
  border-radius: 7px;
  display: flex;
  gap: 11px;
  padding: 13px;
}

.anti-wine-tour-stops li > span {
  align-items: center;
  background: #d6a74a;
  border-radius: 50%;
  color: #25140d;
  display: inline-flex;
  flex: 0 0 28px;
  font-size: 13px;
  font-weight: 950;
  height: 28px;
  justify-content: center;
}

.anti-wine-tour-stops div {
  display: grid;
  gap: 5px;
}

.anti-wine-tour-stops strong,
.anti-wine-tour-stops a {
  color: #fffaf2;
  line-height: 1.15;
}

.anti-wine-tour-stops small {
  color: rgba(255, 250, 242, 0.75);
  line-height: 1.4;
}

.anti-wine-tour-availability {
  border-left: 3px solid #d6a74a;
  color: rgba(255, 250, 242, 0.78) !important;
  font-size: 14px;
  line-height: 1.5;
  padding-left: 13px;
}

.anti-wine-tour-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.anti-wine-tour-actions .price {
  color: #fffaf2;
  margin: 0 8px 0 0;
}

.region-tour-card.is-featured-anti-wine {
  border-color: #d6a74a;
  box-shadow: 0 22px 52px rgba(91, 45, 12, 0.25);
}

.region-tour-card.is-featured-anti-wine::before {
  background: linear-gradient(90deg, #d6a74a, #8f0730);
  content: "Featured";
  color: white;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  padding: 7px 13px;
  position: absolute;
  right: 0;
  text-transform: uppercase;
  top: 0;
  z-index: 2;
}

.tour-card-favourite {
  font-size: 10px;
  padding: 5px 9px;
}

.anti-wine-tour-route-section {
  background:
    linear-gradient(rgba(251, 243, 230, 0.92), rgba(248, 237, 219, 0.96)),
    url("images/old-world-vineyard-light.jpg") center top / cover no-repeat;
}

.anti-wine-tour-route-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.anti-wine-tour-route-grid li {
  background: rgba(255, 252, 246, 0.93);
  border: 1px solid rgba(143, 7, 48, 0.2);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(58, 31, 18, 0.11);
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-height: 285px;
  padding: 24px;
}

.anti-wine-tour-stop-number {
  color: #9a6b1c;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.anti-wine-tour-route-grid h3 {
  color: var(--wine-dark);
  font-size: 25px;
  line-height: 1.05;
  margin: 0;
}

.anti-wine-tour-route-grid p {
  color: #4d3932;
  line-height: 1.55;
  margin: 0;
}

.anti-wine-tour-route-grid a {
  color: var(--wine);
  font-weight: 900;
  margin-top: auto;
}

.anti-wine-tour-truth-note {
  background: #2a201b;
  border-left: 5px solid #d6a74a;
  border-radius: 6px;
  color: #fffaf2;
  line-height: 1.6;
  margin: 24px 0 0;
  padding: 18px 20px;
}

.anti-wine-tour-hero-credit {
  display: inline-block;
  margin-top: 14px;
}

@media screen and (max-width: 900px) {
  .anti-wine-tour-layout {
    grid-template-columns: 1fr;
  }

  .anti-wine-tour-media {
    min-height: 360px;
  }

  .anti-wine-tour-route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 620px) {
  .anti-wine-tour-media {
    min-height: 270px;
  }

  .anti-wine-tour-copy {
    padding: 28px 20px;
  }

  .anti-wine-tour-stops,
  .anti-wine-tour-route-grid {
    grid-template-columns: 1fr;
  }

  .anti-wine-tour-route-grid li {
    min-height: 0;
  }

  .anti-wine-tour-actions .button {
    justify-content: center;
    width: 100%;
  }
}

.home-advice-section {
  background:
    linear-gradient(180deg, rgba(31, 30, 26, 0.58), rgba(31, 30, 26, 0.72)),
    url("images/old-world-vineyard-dark.jpg") center 78% / cover;
  border-bottom: 2px solid rgba(185, 139, 69, 0.42);
  border-top: 2px solid rgba(185, 139, 69, 0.42);
  color: white;
}

.home-advice-section .section-head h2,
.home-advice-section .section-head p:not(.eyebrow) {
  color: white;
}

.home-advice-section .section-head p:not(.eyebrow) {
  opacity: 0.82;
}

.home-advice-grid {
  align-items: stretch;
}

.home-advice-card {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: linear-gradient(145deg, rgba(255, 250, 242, 0.78), rgba(225, 220, 210, 0.56));
  border: 1px solid rgba(255, 250, 242, 0.48);
  border-radius: 6px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
  color: var(--wine-dark);
  display: grid;
  gap: 14px;
  min-height: 330px;
  padding: 26px;
  text-decoration: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.home-advice-card:hover,
.home-advice-card:focus-visible {
  border-color: rgba(255, 250, 242, 0.82);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.home-advice-card span {
  color: #8a672e;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.home-advice-card h3 {
  color: var(--wine-dark);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  margin: 0;
}

.home-advice-card p {
  color: #2f2924;
  font-size: 16px;
  line-height: 1.58;
  margin: 0;
}

.home-advice-card strong {
  align-self: end;
  color: var(--wine);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.region-tour-card.is-featured-west-kelowna {
  border-color: rgba(157, 0, 38, 0.55);
  box-shadow: 0 18px 44px rgba(63, 23, 16, 0.16);
}

.june-openings-section {
  padding-top: 34px;
}

.june-openings-panel,
.west-choice-panel,
.route-reassurance {
  background: #fffaf2;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(63, 23, 16, 0.08);
}

.june-openings-panel,
.west-choice-panel {
  padding: 24px;
}

.june-openings-panel {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.west-choice-panel {
  display: block;
}

.june-openings-panel h2,
.west-choice-panel h2 {
  color: var(--wine-dark);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.04;
  margin: 0 0 10px;
}

.june-openings-panel p:not(.eyebrow),
.west-choice-panel p:not(.eyebrow) {
  color: #3f3230;
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

.route-reassurance-section,
.west-choice-section {
  padding-bottom: 0;
}

.route-reassurance {
  padding: 20px 22px;
}

.route-reassurance strong {
  color: var(--wine-dark);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.05;
  margin-bottom: 8px;
}

.route-reassurance p {
  color: #3f3230;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.booking-route-reassurance {
  margin-top: 18px;
}

.west-choice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.private-group-perk {
  background: #fffaf2;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(63, 23, 16, 0.08);
  margin: 24px auto 0;
  max-width: 980px;
  padding: 18px 22px;
}

.private-group-perk strong {
  color: var(--wine-dark);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.05;
  margin-bottom: 6px;
}

.private-group-perk p {
  color: #3f3230;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.private-group-perk .button {
  margin-top: 14px;
}

.booking-private-group-perk {
  margin: 18px 0 0;
}

.premium-request-section {
  padding-bottom: 0;
}

.premium-request-panel {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 24px;
}

.premium-request-panel h2 {
  color: var(--wine-dark);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.04;
  margin: 0 0 10px;
}

.premium-request-panel p:not(.eyebrow) {
  color: #3f3230;
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
}

@media screen and (max-width: 1100px) {
  .tour-intent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .june-openings-panel,
  .this-week-offer {
    grid-template-columns: 1fr;
  }

  .tour-intent-card {
    min-height: 0;
  }

  .tour-intent-card:nth-child(4),
  .tour-intent-card:nth-child(5) {
    grid-column: auto;
  }

  .premium-request-panel {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 1050px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 32px;
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(48px, 8vw, 72px);
  }
}

@media screen and (max-width: 640px) {
  .tour-intent-grid {
    grid-template-columns: 1fr;
  }

  .tour-intent-card.is-featured {
    grid-column: auto;
  }

  .tour-intent-card h3 {
    font-size: 23px;
  }

  .june-openings-panel .button,
  .premium-request-panel .button,
  .this-week-offer .button,
  .west-choice-actions .button {
    width: 100%;
  }
}

.booking-section {
  scroll-margin-top: 120px;
}

body.tour-detail-page .booking-section {
  scroll-margin-top: 138px;
}

.booking-intro {
  max-width: 380px;
}

.booking-intro p {
  color: #3f3230;
  font-size: 17px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.password-toggle-field {
  position: relative;
}

.password-toggle-field input {
  padding-right: 52px;
  width: 100%;
}

.password-toggle-field .password-toggle-button {
  appearance: none;
  background: transparent;
  border: 0;
  border-radius: 6px;
  box-shadow: none;
  color: var(--muted);
  display: inline-flex;
  gap: 0;
  justify-content: center;
  line-height: 1;
  min-height: 36px;
  min-width: 40px;
  padding: 6px;
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  text-transform: none;
}

.password-toggle-field .password-toggle-button:hover,
.password-toggle-field .password-toggle-button:focus-visible {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: var(--wine);
  transform: translateY(-50%);
}

.password-toggle-field .password-toggle-button .material-symbols-outlined {
  font-size: 22px;
}

.field-hint {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  margin: -4px 0 8px;
}

.field-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin: -2px 0 0;
}

.booking-terms-summary {
  background: #fffaf2;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #3f3230;
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
  padding: 14px;
}

.booking-terms-summary p {
  line-height: 1.55;
  margin: 0;
}

.booking-terms-summary a {
  color: var(--wine);
  font-weight: 900;
}

.booking-terms-details {
  margin-bottom: 12px;
}

.booking-terms-details summary {
  color: var(--wine);
  cursor: pointer;
  font-weight: 900;
  margin-bottom: 10px;
}

.field-note.is-error {
  color: var(--wine);
  font-weight: 800;
}

.price-field-hint {
  grid-column: 1 / -1;
}

.form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  font-weight: 900;
  font-size: 13px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d9c7b5;
  background: white;
  border-radius: 8px;
  padding: 12px 13px;
  font: inherit;
}

input[type="checkbox"],
input[type="radio"] {
  min-height: 20px;
  min-width: 20px;
  width: auto;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-panel {
  padding: 24px;
}

.contact-photo {
  display: block;
  margin-top: 28px;
}

.contact-photo img {
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

.contact-form {
  margin-top: 10px;
}

.section {
  padding: 78px 0;
}

.section.alt {
  background:
    linear-gradient(rgba(251, 243, 230, 0.80), rgba(251, 243, 230, 0.90)),
    url("images/old-world-vineyard-light.jpg") center -112px / min(1200px, 100%) auto no-repeat;
}

.section.old-world-light-section {
  background:
    linear-gradient(180deg, rgba(251, 243, 230, 0.76), rgba(251, 243, 230, 0.90)),
    url("images/old-world-vineyard-light.jpg") center top / cover no-repeat;
  border-bottom: 1px solid rgba(185, 139, 69, 0.28);
  border-top: 1px solid rgba(185, 139, 69, 0.28);
}

.section.blog-index-section.old-world-light-section {
  background:
    linear-gradient(180deg, rgba(251, 243, 230, 0.80), rgba(251, 243, 230, 0.90)),
    url("images/old-world-vineyard-light.jpg") center top / 100% auto no-repeat;
}

.section.login-section {
  align-items: center;
  background:
    radial-gradient(circle at center, rgba(251, 243, 230, 0.76) 0%, rgba(251, 243, 230, 0.86) 48%, rgba(241, 231, 214, 0.94) 100%),
    url("images/old-world-vineyard-light.jpg") center center / cover no-repeat;
  display: flex;
  min-height: calc(100vh - 214px);
  min-height: calc(100svh - 214px);
}

.login-container {
  max-width: 520px;
  width: 100%;
}

.login-panel {
  background: rgba(255, 250, 241, 0.86);
  border-color: rgba(185, 139, 69, 0.42);
  padding: clamp(22px, 4vw, 34px);
}

.section.winery-directory-section {
  background:
    linear-gradient(180deg, rgba(244, 235, 220, 0.36), rgba(241, 231, 214, 0.46)),
    url("images/old-world-vineyard-light.jpg") center top / cover no-repeat;
  background-attachment: scroll, fixed;
}

.section.cta-section {
  padding: 72px 0;
}

.section.dark {
  background: #141819;
  color: white;
}

.section.dark h2,
.section.dark h3 {
  color: white;
}

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 34px;
}

.tenant-public-head {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.tenant-public-logo {
  display: block;
  height: auto;
  margin: 0 auto 18px;
  max-height: 120px;
  max-width: min(320px, 82vw);
  object-fit: contain;
  width: auto;
}

.grid {
  display: grid;
  gap: 26px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.region-tour-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-left: auto;
  margin-right: auto;
  max-width: 1180px;
}

.region-tour-index-section {
  background:
    linear-gradient(rgba(251, 243, 230, 0.80), rgba(251, 243, 230, 0.90)),
    url("images/old-world-vineyard-light.jpg") center top / 100% auto no-repeat;
  padding-top: 44px;
}

.region-tour-index-section .section-head {
  margin-bottom: 22px;
}

.region-tour-groups {
  display: grid;
  gap: 34px;
}

.region-tour-group {
  margin-left: auto;
  margin-right: auto;
  max-width: 1180px;
  width: 100%;
}

.region-tour-group-grid {
  max-width: none;
}

@media screen and (max-width: 1100px) {
  .region-tour-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.region-title-row {
  align-items: flex-end;
  border-bottom: 1px solid rgba(126, 96, 55, 0.18);
  display: flex;
  margin: 0 0 14px;
  min-height: 64px;
  padding: 0 0 5px;
}

.region-title-row h3 {
  color: var(--wine-dark);
  font-size: clamp(42px, 7vw, 62px);
  line-height: 0.92;
  margin: 0;
}

.region-title-art {
  display: block;
  height: auto;
  max-width: 100%;
  width: min(398px, 100%);
}

.tour-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-color: rgba(185, 139, 69, 0.44);
  border-radius: 6px;
}

.region-tour-card {
  border-top: 5px solid transparent;
  position: relative;
}

.region-tour-card.tier-signature {
  border-color: #2b7044;
}

.region-tour-card.tier-premium {
  border-color: #f0b429;
  box-shadow: 0 18px 42px rgba(132, 84, 0, 0.16);
}

.region-tour-card.tier-extended {
  border-color: #6f072a;
  box-shadow: 0 18px 42px rgba(111, 7, 42, 0.16);
}

.region-tour-card.tier-custom {
  border-color: #171717;
  box-shadow: 0 18px 42px rgba(23, 23, 23, 0.16);
}

.region-tour-card.tier-custom.tier-accent-platinum {
  border-color: #c9c0b3;
  box-shadow: 0 18px 42px rgba(115, 105, 92, 0.16);
}

.tour-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.tour-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 13px;
  padding: 22px;
}

.tour-card-body h3 {
  line-height: 1.05;
  margin: 2px 0 0;
}

.tour-card-body p {
  margin: 0;
}

.tour-card-badges {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.section-action {
  margin: 30px 0 0;
  text-align: center;
}

.blog-hero {
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.96), rgba(255, 250, 242, 0.86)),
    url("../images/wine-glass-vineyard.jpg") center / cover;
}

.blog-hero-grid {
  align-items: center;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
}

.blog-hero h1 {
  color: var(--wine-dark);
  font-size: clamp(48px, 6vw, 82px);
}

.blog-hero p:not(.eyebrow),
.blog-list-head p {
  color: #3f3230;
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.blog-hero .hero-actions .button.secondary {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
  color: var(--wine);
}

body:not(.admin-body) .blog-hero .hero-actions .button.secondary:hover,
body:not(.admin-body) .blog-hero .hero-actions .button.secondary:focus-visible {
  background: transparent;
  border-color: var(--wine);
  color: var(--wine);
}

.blog-hero-card {
  padding: 26px;
}

.blog-hero-card h2,
.blog-cta-panel h2 {
  color: var(--wine-dark);
  font-size: 30px;
  line-height: 1.05;
}

.blog-list-head {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 30px;
}

.blog-list-head h2 {
  margin-bottom: 0;
}

.blog-list-head p {
  margin: 0;
  max-width: 300px;
  text-align: right;
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-grid-featured {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-color: rgba(185, 139, 69, 0.44);
  border-radius: 6px;
}

.blog-card-image {
  display: block;
  overflow: hidden;
}

.blog-card-image img {
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 13px;
  padding: 22px;
}

.blog-card-meta,
.blog-post-meta {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 900;
  gap: 8px 14px;
  text-transform: uppercase;
}

.blog-card-meta span,
.blog-card-meta time {
  display: inline-flex;
}

.blog-card h3 {
  font-size: 28px;
  line-height: 1.05;
  margin: 0;
}

.blog-card h3 a {
  color: var(--wine-dark);
  text-decoration: none;
}

.blog-card h3 a:hover {
  color: var(--wine);
}

.blog-card p {
  color: #3f3230;
  margin: 0;
}

.blog-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.blog-post-hero {
  background:
    linear-gradient(90deg, rgba(15, 12, 14, 0.80), rgba(15, 12, 14, 0.40)),
    var(--blog-hero-image) center / cover;
  color: white;
  padding: 96px 0;
}

.blog-post-hero-grid {
  max-width: 980px;
}

.blog-post-hero h1 {
  font-size: clamp(44px, 6.4vw, 86px);
  max-width: 950px;
}

.blog-post-hero .blog-post-meta {
  color: rgba(255, 255, 255, 0.88);
}

.blog-article-layout {
  align-items: start;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1fr) 320px;
}

.blog-article {
  overflow: hidden;
}

.blog-article-hero {
  aspect-ratio: 16 / 8;
  object-fit: cover;
  width: 100%;
}

.blog-article-body {
  padding: clamp(24px, 4vw, 44px);
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.blog-inline-cta {
  background: #fff6ea;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 30px;
  padding: 18px 20px;
}

.blog-inline-cta-bottom {
  margin: 34px 0 0;
}

.blog-inline-cta .eyebrow {
  margin-bottom: 6px;
}

.blog-inline-cta p {
  color: #342724;
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

.blog-inline-cta a {
  color: var(--wine);
  font-weight: 900;
}

.blog-content {
  color: #241716;
  font-size: 18px;
  line-height: 1.75;
}

.blog-content h2,
.blog-content h3,
.blog-faq h2 {
  color: var(--wine-dark);
  line-height: 1.08;
  margin-top: 38px;
}

.blog-content h2 {
  font-size: clamp(30px, 3.6vw, 44px);
}

.blog-content h3 {
  font-size: 27px;
}

.blog-content p,
.blog-content li {
  color: #342724;
}

.blog-content a {
  color: var(--wine);
  font-weight: 800;
}

.blog-content ol,
.blog-content ul {
  padding-left: 26px;
}

.blog-content li + li {
  margin-top: 8px;
}

.blog-photo-gallery {
  border-top: 1px solid var(--line);
  margin-top: 38px;
  padding-top: 8px;
}

.blog-photo-gallery h2 {
  color: var(--wine-dark);
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.08;
  margin: 30px 0 20px;
}

.blog-photo-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-photo-grid figure {
  background: #fff8ef;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin: 0;
  overflow: hidden;
}

.blog-photo-grid img {
  aspect-ratio: 3 / 4;
  display: block;
  object-fit: cover;
  width: 100%;
}

.blog-photo-grid figcaption {
  color: #4b3934;
  font-size: 14px;
  line-height: 1.5;
  padding: 12px 14px 14px;
}

@media (max-width: 680px) {
  .blog-photo-grid {
    grid-template-columns: 1fr;
  }
}

.blog-faq {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding-top: 8px;
}

.blog-faq .faq-accordion {
  box-shadow: none;
  margin-top: 14px;
}

.blog-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 128px;
}

.blog-cta-panel {
  padding: 22px;
}

.blog-cta-panel p:not(.eyebrow) {
  color: #3f3230;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.winery-hero {
  background:
    linear-gradient(90deg, rgba(248, 240, 226, 0.34), rgba(248, 240, 226, 0.24)),
    url("images/old-world-vineyard-light.jpg") center top / cover no-repeat;
  background-attachment: scroll, fixed;
}

.winery-directory-controls {
  background: rgba(251, 243, 230, 0.86);
  border: 1px solid rgba(185, 139, 69, 0.46);
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(38, 28, 18, 0.12);
  display: grid;
  gap: 18px;
  margin: -8px 0 30px;
  padding: clamp(18px, 3vw, 26px);
  scroll-margin-top: 24px;
}

.winery-search-form {
  align-items: center;
  display: flex;
  gap: 12px;
}

.winery-search-field {
  display: block;
  flex: 1;
  margin: 0;
  position: relative;
}

.winery-search-icon {
  color: var(--wine);
  font-size: 25px;
  left: 17px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.winery-search-field input {
  background: rgba(255, 249, 239, 0.96);
  border: 1px solid rgba(185, 139, 69, 0.48);
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(38, 28, 18, 0.08);
  color: #241716;
  font-size: 17px;
  min-height: 56px;
  padding: 15px 18px 15px 52px;
  width: 100%;
}

.winery-search-field input:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(111, 27, 32, 0.14), 0 12px 28px rgba(38, 28, 18, 0.08);
  outline: none;
}

.winery-search-form .button {
  min-height: 56px;
}

.winery-region-filter {
  align-items: flex-start;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  column-gap: 7px;
  row-gap: 10px;
  padding-top: 16px;
}

.winery-region-filter-label {
  color: var(--muted);
  flex-basis: 100%;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.winery-region-pill {
  background: rgba(255, 249, 239, 0.96);
  border: 1px solid rgba(185, 139, 69, 0.55);
  border-radius: 999px;
  color: #5d4b45;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.05;
  padding: 9px 11px;
  text-decoration: none;
  white-space: nowrap;
}

.winery-region-pill:hover,
.winery-region-pill:focus-visible {
  border-color: var(--wine);
  color: var(--wine);
}

.winery-region-pill.is-active {
  background: linear-gradient(180deg, #7a2024, #561317);
  border-color: var(--wine);
  color: white;
}

.winery-card-quickfacts {
  color: #5d4b45;
  display: grid;
  font-size: 14px;
  gap: 9px;
  line-height: 1.45;
}

.winery-card-hours {
  align-items: flex-start;
  background: #fff8ef;
  border-left: 3px solid var(--gold);
  display: flex;
  gap: 9px;
  padding: 11px 12px;
}

.winery-card-hours > .material-symbols-outlined {
  color: var(--wine);
  flex: 0 0 auto;
  font-size: 20px;
  margin-top: 1px;
}

.winery-card-hours small,
.winery-card-hours strong {
  display: block;
}

.winery-card-hours small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.winery-card-hours strong {
  color: #2e201d;
  font-size: 14px;
  line-height: 1.4;
}

.winery-card-address {
  color: #5d4b45;
}

.winery-card-regions a {
  color: var(--muted);
  text-decoration: none;
}

.winery-card-regions a:hover,
.winery-card-regions a:focus-visible {
  color: var(--wine);
}

.winery-card-quickfacts > span:first-child {
  color: #3f3230;
}

.winery-post-hero {
  background:
    linear-gradient(90deg, rgba(15, 12, 14, 0.82), rgba(15, 12, 14, 0.38)),
    var(--winery-hero-image) center / cover;
}

.winery-article-body {
  display: grid;
  gap: 36px;
}

.winery-article-body .blog-tags {
  margin-bottom: 0;
}

.winery-public-hours {
  align-items: flex-start;
  background: linear-gradient(135deg, #fff8ef, #f8ecdc);
  border: 1px solid rgba(185, 139, 69, 0.52);
  border-left: 5px solid var(--gold);
  border-radius: 7px;
  display: grid;
  gap: 15px;
  grid-template-columns: auto minmax(0, 1fr);
  padding: 20px 22px;
}

.winery-public-hours-icon {
  color: var(--wine);
  font-size: 30px;
  margin-top: 1px;
}

.winery-public-hours .eyebrow {
  margin: 0 0 5px;
}

.winery-public-hours-value {
  color: var(--wine-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2.5vw, 29px);
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
}

.winery-public-hours-meta {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 800;
  gap: 6px 14px;
  margin-top: 9px;
}

.winery-public-hours-meta a {
  color: var(--wine);
  font-weight: 900;
}

.winery-content-block h2 {
  color: var(--wine-dark);
  font-size: clamp(30px, 3.3vw, 44px);
  line-height: 1.08;
  margin: 0 0 16px;
}

.winery-content-block p {
  color: #342724;
  font-size: 18px;
  line-height: 1.75;
  margin: 0;
}

.winery-content-block p + p {
  margin-top: 18px;
}

.winery-profile-content h2:first-child,
.winery-profile-content h3:first-child {
  margin-top: 0;
}

.winery-profile-content h3 {
  font-size: clamp(24px, 2.4vw, 31px);
}

.winery-profile-content ul,
.winery-profile-content ol {
  margin-bottom: 0;
}

.winery-gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.winery-gallery-image {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: block;
  overflow: hidden;
}

.winery-gallery-image img {
  aspect-ratio: 16 / 11;
  display: block;
  object-fit: cover;
  width: 100%;
}

.winery-video-frame {
  aspect-ratio: 16 / 9;
  background: #171111;
  border-radius: 8px;
  overflow: hidden;
}

.winery-video-frame iframe {
  border: 0;
  height: 100%;
  width: 100%;
}

.winery-detail-list {
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.winery-detail-list > div {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 6px;
  padding: 16px 18px 16px 0;
}

.winery-detail-list span,
.winery-note span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.winery-detail-list strong {
  color: #241716;
  font-size: 16px;
  line-height: 1.35;
}

.winery-detail-list a,
.winery-content-block a {
  color: var(--wine);
  font-weight: 900;
}

.winery-note {
  background: #fff8ef;
  border-left: 4px solid var(--gold);
  margin-top: 18px;
  padding: 16px 18px;
}

.winery-note p {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 6px;
}

.winery-fee-list {
  border-top: 1px solid var(--line);
  display: grid;
}

.winery-fee-list > div {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 14px 0;
}

.winery-fee-list span {
  color: #342724;
  font-weight: 800;
}

.winery-fee-list strong {
  color: var(--wine-dark);
  white-space: nowrap;
}

.winery-quick-panel h2 {
  margin-bottom: 14px;
}

.winery-snapshot-list {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
}

.winery-snapshot-list div {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 4px;
  padding-top: 12px;
}

.winery-snapshot-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.winery-snapshot-list dd {
  color: #342724;
  font-weight: 800;
  line-height: 1.4;
  margin: 0;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.tag {
  border: 1px solid #e0c7ad;
  color: var(--wine);
  border-radius: 6px;
  display: inline-flex;
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.tag:hover,
.tag:focus-visible {
  border-color: var(--wine);
}

.tour-tier-badge {
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  padding: 6px 10px;
  text-transform: uppercase;
}

.tour-tier-signature {
  background: #e6f1e7;
  border: 1px solid #2b7044;
  color: #2b7044;
}

.tour-tier-premium {
  background: #f0b429;
  border: 1px solid #c37f00;
  color: #3d2500;
}

.tour-tier-extended {
  background: #6f072a;
  border: 1px solid #4c061e;
  color: #ffffff;
}

.tour-tier-custom {
  background: #171717;
  border: 1px solid #171717;
  color: #ffffff;
}

.tier-accent-platinum .tour-tier-custom {
  background: #f1eee8;
  border-color: #c9c0b3;
  color: #4d463f;
}

.tier-meta {
  border-radius: 999px;
  font-weight: 800;
  padding: 4px 8px;
}

.tier-meta-signature {
  background: #edf6ee;
  color: #2b7044;
}

.tier-meta-premium {
  background: #fff1bf;
  color: #805100;
}

.tier-meta-extended {
  background: #f7e8ed;
  color: #6f072a;
}

.tier-meta-custom {
  background: #171717;
  color: #ffffff;
}

.tier-accent-platinum .tier-meta-custom {
  background: #f1eee8;
  color: #4d463f;
}

.price-row {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 17px;
}

.tour-card .price-row .button {
  flex: 0 0 auto;
  min-width: 142px;
  white-space: nowrap;
}

.tour-card .price-row .button.secondary::after {
  content: "\2192";
  font-size: 17px;
  line-height: 1;
  transition: transform 0.18s ease;
}

.tour-card .price-row .button.secondary:hover,
.tour-card .price-row .button.secondary:focus-visible {
  background: var(--wine);
  border-color: var(--wine);
  box-shadow: 0 12px 24px rgba(47, 21, 18, 0.24);
  color: white;
  transform: translateY(-2px);
}

.tour-card .price-row .button.secondary:hover::after,
.tour-card .price-row .button.secondary:focus-visible::after {
  transform: translateX(3px);
}

.site-header .button:hover,
.site-header .button:focus-visible {
  background: var(--wine-dark);
  box-shadow: 0 12px 24px rgba(47, 21, 18, 0.24);
  transform: translateY(-1px);
}

.nav-links a.button {
  background: linear-gradient(180deg, #7a2024, #561317);
  border: 1px solid rgba(185, 139, 69, 0.3);
  box-shadow: 0 10px 22px rgba(47, 21, 18, 0.18);
}

.nav-links a.button:hover,
.nav-links a.button:focus-visible {
  background: linear-gradient(180deg, #4b1714, #2f1512);
  box-shadow: 0 12px 24px rgba(47, 21, 18, 0.26);
}

.price {
  align-items: baseline;
  font-weight: 900;
  color: var(--wine-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 4px 7px;
}

.price-sale,
.price-current {
  color: var(--wine-dark);
}

.price-prefix,
.price-suffix {
  color: var(--muted);
  font-size: 0.84em;
  font-weight: 900;
}

.price-prefix {
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.price-sale {
  color: var(--wine);
  font-weight: 950;
}

.price-original {
  color: var(--muted);
  display: inline-block;
  font-weight: 900;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

.price-original::after {
  background: var(--wine);
  border-radius: 999px;
  content: "";
  height: 3px;
  left: -3px;
  position: absolute;
  right: -3px;
  top: 50%;
  transform: rotate(-7deg);
}

.price-tag {
  align-items: baseline;
  gap: 4px;
}

.price-tag .price-original {
  font-weight: 900;
}

.price-tag .price-prefix,
.price-tag .price-suffix {
  font-size: 11px;
}

.region-tour-cta {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0 auto 26px;
  max-width: 980px;
  padding: 20px 24px;
}

.region-tour-cta .eyebrow {
  margin-bottom: 6px;
}

.region-tour-cta h3 {
  color: var(--wine-dark);
  font-size: 28px;
  line-height: 1;
  margin: 0 0 6px;
}

.region-tour-cta p {
  margin: 0;
}

.region-tour-cta ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.region-tour-cta li {
  color: #463330;
  line-height: 1.55;
  margin-top: 6px;
}

.region-tour-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.region-hero-grid {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
}

.region-hero-sales-line {
  color: #fff7e8;
  font-weight: 900;
  margin-top: 10px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.32);
}

.region-price-card {
  align-self: center;
}

.region-price {
  align-items: baseline;
  color: var(--wine-dark);
  display: flex;
  flex-wrap: wrap;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  font-weight: 900;
  gap: 5px 12px;
  line-height: 1;
  margin: 0 0 14px;
}

.region-price .price-original {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
  margin-left: 0;
  vertical-align: baseline;
}

.region-price .price-original::after {
  height: 4px;
}

.region-price .price-sale {
  color: var(--wine);
}

.region-price .price-prefix {
  align-self: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
}

.region-price .price-unit {
  display: block;
  flex-basis: 100%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  margin-top: 0;
  text-transform: uppercase;
}

.region-tour-layout {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
}

.region-tour-main {
  display: grid;
  gap: 22px;
}

.region-tour-main h2 {
  margin-bottom: 0;
}

.region-facts {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.region-facts div {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.region-facts strong,
.region-facts span {
  display: block;
}

.region-facts strong {
  color: var(--wine);
  font-size: 12px;
  text-transform: uppercase;
}

.region-facts span {
  font-weight: 800;
  margin-top: 4px;
}

.region-detail-map iframe {
  height: 430px;
}

.region-detail-wineries {
  margin-top: -4px;
}

.region-included-card {
  position: sticky;
  top: 118px;
}

.banner {
  background: var(--wine);
  color: white;
  text-align: center;
  padding: 42px 20px;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  text-transform: uppercase;
}

.experience-cta {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
}

.experience-cta .eyebrow {
  margin-bottom: 14px;
}

.experience-cta h2 {
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 1.02;
  margin: 0;
  max-width: 860px;
  text-wrap: balance;
}

.cta-copy {
  display: grid;
  gap: 22px;
}

.cta-copy p {
  color: #3f3230;
  font-size: 17px;
  margin: 0;
}

.seo-content-section {
  border-top: 1px solid rgba(185, 139, 69, 0.32);
  border-bottom: 1px solid rgba(185, 139, 69, 0.32);
}

.seo-content-grid {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
}

.seo-content-grid h2 {
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1;
}

.seo-content-grid p {
  color: #3f3230;
  font-size: 17px;
  line-height: 1.7;
}

.seo-link-panel {
  background: rgba(247, 239, 223, 0.92);
  border: 1px solid rgba(185, 139, 69, 0.42);
  border-radius: 6px;
  padding: 24px;
}

.seo-link-panel h3 {
  color: var(--wine-dark);
  margin-bottom: 16px;
}

.seo-link-grid {
  display: grid;
  gap: 10px;
}

.seo-link-grid a {
  align-items: center;
  background: rgba(255, 249, 239, 0.92);
  border: 1px solid rgba(185, 139, 69, 0.36);
  border-radius: 4px;
  color: var(--wine);
  display: flex;
  font-weight: 900;
  justify-content: space-between;
  min-height: 46px;
  padding: 10px 12px;
  text-decoration: none;
}

.seo-link-grid a::after {
  color: var(--muted);
  content: "View";
  font-size: 12px;
  text-transform: uppercase;
}

.seo-link-grid a:hover {
  border-color: var(--wine);
}

.seo-landing-hero {
  min-height: 600px;
}

.seo-landing-hero-grid {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 420px);
}

.seo-landing-hero h1 {
  max-width: 860px;
}

.seo-landing-hero p:not(.eyebrow) {
  font-size: 19px;
  line-height: 1.65;
  max-width: 780px;
}

.seo-landing-summary ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.seo-landing-summary li {
  color: #3f3230;
  font-weight: 800;
}

.company-story-section {
  background:
    linear-gradient(120deg, rgba(31, 30, 26, 0.78), rgba(58, 23, 21, 0.78)),
    url("images/old-world-vineyard-dark.jpg") center 78% / cover;
  border-bottom: 2px solid rgba(185, 139, 69, 0.46);
  border-top: 2px solid rgba(185, 139, 69, 0.46);
  color: white;
}

.company-story-layout {
  align-items: stretch;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
}

.company-story-copy {
  display: grid;
  gap: 18px;
}

.company-story-copy .eyebrow,
.company-story-copy h2,
.company-story-copy p {
  margin: 0;
}

.company-story-copy h2 {
  color: white;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.98;
  max-width: 940px;
}

.company-story-copy p:not(.eyebrow) {
  color: rgba(255, 250, 242, 0.9);
  font-size: 18px;
  line-height: 1.72;
  max-width: 920px;
}

.company-story-panel {
  background: rgba(251, 243, 230, 0.94);
  border: 1px solid rgba(185, 139, 69, 0.48);
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  color: #2b1b18;
  display: grid;
  gap: 14px;
  min-width: 0;
  overflow: hidden;
  padding: 28px;
}

.company-story-panel > span {
  color: var(--wine);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-story-panel > strong {
  color: var(--wine-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 5.2vw, 76px);
  line-height: 0.92;
  max-width: 100%;
}

.company-story-panel > p {
  color: #3f3230;
  font-size: 17px;
  line-height: 1.58;
  margin: 0;
}

.company-story-points {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  margin-top: 8px;
  min-width: 0;
  padding-top: 18px;
}

.company-story-points div {
  display: grid;
  gap: 10px;
  grid-template-columns: auto minmax(0, 1fr);
  min-width: 0;
}

.company-story-points span {
  color: var(--gold);
  font-weight: 950;
}

.company-story-points p {
  color: #463330;
  line-height: 1.5;
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}

.landing-facts-section {
  padding: 34px 0 44px;
}

.landing-facts-grid {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.landing-fact {
  align-items: center;
  background: rgba(255, 249, 239, 0.92);
  border: 1px solid rgba(185, 139, 69, 0.45);
  border-radius: 999px;
  display: inline-flex;
  flex: 0 1 auto;
  max-width: 100%;
  min-height: 0;
  padding: 9px 12px;
}

.landing-fact span {
  color: #3a2b27;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.trust-section .section-head p:not(.eyebrow),
.buyer-pathway-section .section-head p,
.tour-comparison-section .section-head p {
  color: #3f3230;
  font-size: 17px;
  line-height: 1.65;
}

.trust-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-card {
  background: linear-gradient(180deg, rgba(255, 249, 239, 0.97), rgba(247, 237, 221, 0.96));
  border: 1px solid rgba(185, 139, 69, 0.42);
  border-radius: 6px;
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 22px;
}

.trust-card h3 {
  color: var(--wine-dark);
  font-size: 25px;
  line-height: 1.08;
  margin: 0;
}

.trust-card p {
  color: #3f3230;
  margin: 0;
}

.buyer-pathway-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.buyer-pathway-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 22px;
  text-decoration: none;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.buyer-pathway-card:hover,
.buyer-pathway-card:focus-visible {
  border-color: var(--wine);
  transform: translateY(-2px);
}

.buyer-pathway-card span {
  color: var(--wine-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.05;
}

.buyer-pathway-card p {
  color: #3f3230;
  margin: 0;
}

.tour-comparison-wrap {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow-x: auto;
}

.tour-comparison-table {
  min-width: 840px;
}

.tour-comparison-table th {
  background: rgba(255, 250, 242, 0.82);
}

.tour-comparison-table td {
  background: white;
}

.tour-comparison-table a:not(.button) {
  color: var(--wine);
  font-weight: 900;
  text-decoration: none;
}

.tour-comparison-table a:not(.button):hover {
  color: var(--wine-dark);
}

.comparison-price {
  align-items: baseline;
  color: var(--wine-dark);
  display: flex;
  flex-wrap: wrap;
  font-weight: 900;
  gap: 4px 7px;
  min-width: 170px;
}

.seo-landing-content-section {
  border-top: 1px solid rgba(185, 139, 69, 0.32);
}

.seo-landing-copy {
  display: grid;
  gap: 34px;
}

.seo-landing-copy section {
  display: grid;
  gap: 12px;
}

.seo-landing-copy h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  margin-bottom: 0;
}

.seo-landing-copy p {
  color: #3f3230;
  font-size: 17px;
  line-height: 1.72;
  margin: 0;
}

.seo-landing-links {
  position: sticky;
  top: 110px;
}

.region-seo-copy {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  margin-top: 10px;
  padding-top: 30px;
}

.region-seo-copy p {
  color: #3f3230;
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

.faq-compact-list {
  border-top: 1px solid var(--line);
  display: grid;
}

.faq-compact-list details {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.faq-compact-list summary {
  color: var(--wine-dark);
  cursor: pointer;
  font-weight: 900;
}

.faq-compact-list p {
  color: var(--muted);
  margin-top: 10px;
}

.timeline {
  display: grid;
  gap: 18px;
  border-left: 2px solid var(--line);
  margin-left: 12px;
}

.timeline-item {
  padding-left: 24px;
  position: relative;
}

.timeline-item:before {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--wine);
  border-radius: 50%;
  position: absolute;
  left: -7px;
  top: 8px;
}

.map {
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 320px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.map iframe {
  width: 100%;
  height: 340px;
  border: 0;
}

.route-map-card {
  background: #fffaf3;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  isolation: isolate;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.route-preview-block {
  margin-top: 44px;
}

.route-preview-block h2 {
  margin-bottom: 24px;
}

.route-map {
  border: 0;
  border-radius: 0;
  height: 100%;
  min-height: 520px;
}

.map-loading {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-weight: 800;
  height: 100%;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.route-map-panel {
  border-left: 1px solid var(--line);
  display: grid;
  gap: 14px;
  padding: 24px;
}

.route-map-panel h3 {
  margin: 0;
}

.route-map-status {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.route-stop-list {
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.route-stop-list li {
  align-items: start;
  display: grid;
  gap: 11px;
  grid-template-columns: 32px 1fr;
}

.route-stop-index,
.route-marker span {
  align-items: center;
  background: var(--wine);
  border: 2px solid white;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(67, 5, 16, 0.22);
  color: white;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  justify-content: center;
  line-height: 1;
  min-height: 32px;
  min-width: 32px;
  padding: 0 7px;
}

.route-stop-list li.is-unmapped .route-stop-index {
  background: #fffaf4;
  border-color: var(--line);
  box-shadow: none;
  color: var(--muted);
}

.route-stop-list strong,
.route-stop-list small {
  display: block;
}

.route-stop-list small {
  color: var(--muted);
  line-height: 1.45;
  margin-top: 3px;
}

.route-marker {
  background: transparent;
  border: 0;
}

.leaflet-popup-content hr {
  border: 0;
  border-top: 1px solid #eadccb;
  margin: 9px 0;
}

.route-popup-thumb {
  border-radius: 6px;
  display: block;
  height: 86px;
  margin: 0 0 8px;
  object-fit: cover;
  width: 160px;
}

.notice {
  padding: 14px 16px;
  border-radius: 8px;
  background: #fff3cd;
  border: 1px solid #f0d98c;
  color: #4a3510;
  margin-bottom: 18px;
}

.error {
  padding: 14px 16px;
  border-radius: 8px;
  background: #fde7e7;
  border: 1px solid #f4b6b6;
  color: #681414;
  margin-bottom: 18px;
}

.success {
  padding: 14px 16px;
  border-radius: 8px;
  background: #e8f7ee;
  border: 1px solid #a5dfbc;
  color: #124b28;
  margin-bottom: 18px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

th,
td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--muted);
}

.sort-link {
  color: inherit;
  text-decoration: none;
}

.sort-link.active,
.sort-link:hover {
  color: var(--wine);
}

.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 5px 9px;
  background: #f1e5d7;
  color: var(--wine);
  font-weight: 900;
  font-size: 12px;
}

.winery-status {
  min-width: 36px;
  padding: 6px 10px;
}

.winery-status .status-icon {
  font-size: 18px;
}

.winery-status.is-active {
  background: #eaf7ed;
  color: #146b2d;
}

.winery-status.is-inactive {
  background: #eee9e2;
  color: #81766e;
}

.library-source-pill {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  margin-left: 8px;
  padding: 5px 8px;
  text-transform: uppercase;
}

.library-source-pill.is-shared-source {
  background: #efe1b8;
  color: #765614;
}

.library-source-pill.is-library-copy {
  background: #e7f4f6;
  color: #145b66;
}

.library-source-pill.is-custom-record {
  background: #f3eee7;
  color: #6d6259;
}

.material-symbols-outlined {
  direction: ltr;
  display: inline-block;
  font-family: 'Material Symbols Outlined';
  font-feature-settings: 'liga';
  font-size: 20px;
  font-style: normal;
  font-weight: normal;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

.booking-method-pill {
  align-items: center;
  background: #f1e5d7;
  border-radius: 999px;
  color: var(--wine);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  gap: 6px;
  padding: 6px 10px;
  text-transform: uppercase;
  white-space: nowrap;
}

.booking-method-link {
  text-decoration: none;
}

.booking-method-link:hover,
.booking-method-link:focus-visible {
  box-shadow: 0 8px 18px rgba(63, 23, 16, 0.14);
  transform: translateY(-1px);
}

.booking-method-icon {
  font-size: 18px;
}

.booking-method-pill.is-website {
  background: #e8f1fb;
  color: #1f5781;
}

.booking-method-pill.is-email {
  background: #f1eaf7;
  color: #65378b;
}

.booking-method-pill.is-phone {
  background: #eaf7ed;
  color: #146b2d;
}

.booking-method-pill.is-text {
  background: #e9f5f3;
  color: #0b6b62;
}

.booking-method-pill.is-walkin {
  background: #fff1dd;
  color: #7b4a0b;
}

.booking-method-pill.is-other {
  background: #f0ebe4;
  color: #665b52;
}

.booking-method-pill.is-unset {
  background: #eee9e2;
  color: #81766e;
}

.winery-booking-cell {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 126px;
}

.booking-note-indicator {
  align-items: center;
  background: #fff2bf;
  border: 1px solid #c58b16;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(122, 76, 0, 0.12);
  color: #7a4c00;
  display: inline-flex;
  height: 32px;
  justify-content: center;
  text-decoration: none;
  transition: background 150ms ease, box-shadow 150ms ease, transform 150ms ease;
  width: 32px;
}

.booking-note-indicator .material-symbols-outlined {
  font-size: 19px;
}

.winery-dog-friendly-indicator {
  align-items: center;
  background: #edf7ea;
  border: 1px solid #8dc99c;
  border-radius: 999px;
  color: #2d6f43;
  display: inline-flex;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.winery-dog-friendly-indicator .material-symbols-outlined {
  font-size: 19px;
  font-style: normal;
}

.booking-note-indicator:hover,
.booking-note-indicator:focus-visible {
  background: #ffe28a;
  box-shadow: 0 7px 16px rgba(122, 76, 0, 0.2);
  color: #5f3900;
  transform: translateY(-1px);
}

#booking-notes {
  scroll-margin-top: 24px;
}

.admin-table tr.is-inactive-winery td {
  background: #f4f1ed;
  color: #81766e;
}

.admin-table tr.is-inactive-winery:hover td,
.admin-table tr.is-inactive-winery:focus-visible td {
  background: #eee9e2;
}

.admin-table tr.is-inactive-winery .table-link {
  color: #81766e;
}

.admin-table tr.is-inactive-winery .booking-method-pill {
  opacity: 0.72;
}

.admin-table tr.is-inactive-winery .inline-tasting-fee-form input,
.admin-table tr.is-inactive-winery .inline-tasting-fee-form button {
  opacity: 0.88;
}

.status-tour {
  background: #eef3e9;
  color: #415f2a;
}

.status-tour.is-completed,
.status-tour.is-archived {
  background: #e2dbd2;
  color: #756b64;
}

.status-tour.is-today,
.status-tour.is-in-progress {
  background: #fff2c7;
  color: #6b4e00;
}

.status-tour.is-cancelled,
.status-tour.is-expired {
  background: #f1dedc;
  color: #8c1d1d;
}

.status-tour.is-review {
  background: #f3e3c8;
  color: #7a4a00;
}

.status-muted {
  background: #e2dbd2;
  color: #756b64;
}

.app-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 80vh;
}

.app-shell > * {
  min-width: 0;
}

.admin-body {
  --admin-page-bg: #f2eadf;
  --admin-nav-active-bg: #6f072a;
  background: var(--admin-page-bg);
}

.admin-section-dashboard {
  --admin-page-bg: #f4eee6;
  --admin-nav-active-bg: #8f0730;
}

.admin-section-bookings {
  --admin-page-bg: #eaf5e4;
  --admin-nav-active-bg: #163d24;
}

.admin-section-packages {
  --admin-page-bg: #f0edf4;
  --admin-nav-active-bg: #25226c;
}

.admin-section-wineries {
  --admin-page-bg: #eaf3f5;
  --admin-nav-active-bg: #104d5a;
}

.admin-section-regions {
  --admin-page-bg: #f5f0df;
  --admin-nav-active-bg: #6a4c13;
}

.admin-section-vehicles {
  --admin-page-bg: #edf1f7;
  --admin-nav-active-bg: #243f5f;
}

.admin-section-coupons {
  --admin-page-bg: #f6edf2;
  --admin-nav-active-bg: #79163f;
}

.admin-section-expenses {
  --admin-page-bg: #f5efe4;
  --admin-nav-active-bg: #67420e;
}

.admin-section-banner {
  --admin-page-bg: #f7eee9;
  --admin-nav-active-bg: #8f0730;
}

.admin-section-itineraries {
  --admin-page-bg: #f1f3e5;
  --admin-nav-active-bg: #4d5a18;
}

.admin-section-driver {
  --admin-page-bg: #eaf2ef;
  --admin-nav-active-bg: #254635;
}

.admin-section-drivers {
  --admin-page-bg: #eaf2ef;
  --admin-nav-active-bg: #254635;
}

.admin-section-handbook {
  --admin-page-bg: #f4efe7;
  --admin-nav-active-bg: #5b3426;
}

.admin-section-settings {
  --admin-page-bg: #f2eee9;
  --admin-nav-active-bg: #4a4038;
}

.admin-shell {
  min-height: 100vh;
}

.sidebar {
  background: var(--charcoal);
  color: white;
  padding: 28px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.sidebar h3 {
  font-size: 24px;
  line-height: 1.02;
}

.sidebar .sidebar-brand {
  display: block;
  margin: -6px -6px 22px;
  padding: 0 0 12px;
}

.sidebar .sidebar-brand img {
  display: block;
  height: auto;
  max-width: 210px;
  object-fit: contain;
  width: 100%;
}

.sidebar .sidebar-brand:hover,
.sidebar .sidebar-brand:focus-visible {
  background: transparent;
  transform: none;
}

.sidebar a {
  align-items: center;
  color: var(--sidebar-item-color, #f8f1e7);
  display: flex;
  gap: 10px;
  text-decoration: none;
  margin: 2px -10px;
  padding: 10px;
  font-weight: 800;
  transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.sidebar a:not(.sidebar-brand):hover,
.sidebar a:not(.sidebar-brand):focus-visible {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(2px);
}

.sidebar a span:last-child {
  min-width: 0;
}

.sidebar-icon {
  color: currentColor;
  flex: 0 0 22px;
  font-size: 20px;
}

.sidebar a.active {
  background: var(--sidebar-item-bg, var(--admin-nav-active-bg));
  color: #fff8ed;
}

.sidebar a.active .sidebar-icon {
  color: currentColor;
}

.admin-mobile-menu-button,
.admin-nav-backdrop {
  display: none;
}

.content {
  padding: 34px;
}

.admin-content {
  padding: 34px;
  background: var(--admin-page-bg);
  min-height: 100vh;
}

.admin-page-head,
.admin-section-head,
.admin-actions {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 22px;
}

.admin-page-head h1 {
  color: var(--admin-nav-active-bg);
  font-size: clamp(40px, 5vw, 68px);
}

.button-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.admin-page-title {
  align-items: center;
  display: flex;
  gap: 16px;
  line-height: 1;
}

.admin-title-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid #dfcbb6;
  border-radius: 8px;
  color: currentColor;
  display: inline-flex;
  flex: 0 0 58px;
  font-size: 36px;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.admin-section-head h2,
.detail-panel h2,
.package-form h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.admin-stats {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 30px;
}

.admin-stats .panel,
.detail-panel {
  padding: 22px;
}

.settings-onboarding-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 18px;
}

.settings-onboarding-card {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid #dfcbb6;
  border-radius: 8px;
  padding: 16px;
}

.settings-onboarding-card h3 {
  color: #2d0702;
  font-family: var(--font-serif);
  font-size: 22px;
  margin: 0 0 12px;
}

.tenant-logo-preview {
  align-items: center;
  background: rgba(26, 29, 24, 0.08);
  border: 1px solid #dfcbb6;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  max-width: 260px;
  min-height: 94px;
  padding: 12px;
}

.tenant-logo-preview img {
  display: block;
  height: auto;
  max-height: 90px;
  max-width: 100%;
  object-fit: contain;
}

.settings-checklist {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.settings-checklist li {
  align-items: center;
  color: #5f5750;
  display: flex;
  font-weight: 900;
  gap: 9px;
}

.settings-checklist li.complete {
  color: #0f6b3f;
}

.settings-checklist .material-symbols-outlined {
  color: currentColor;
  font-size: 21px;
}

.dashboard-date-pill,
.dashboard-scope-form {
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #dfcbb6;
  border-radius: 8px;
  color: #403936;
  display: inline-flex;
  font-weight: 900;
  gap: 8px;
  min-height: 44px;
  padding: 10px 14px;
  white-space: nowrap;
}

.dashboard-date-pill .material-symbols-outlined,
.dashboard-scope-form .material-symbols-outlined {
  color: #8f0730;
  font-size: 21px;
}

.dashboard-scope-select {
  appearance: none;
  background: transparent;
  border: 0;
  color: #403936;
  cursor: pointer;
  font-weight: 900;
  min-height: 24px;
  padding: 0 20px 0 0;
}

.dashboard-scope-select:focus-visible {
  outline-offset: 4px;
}

.dashboard-scope-submit {
  min-height: 32px;
  padding: 6px 10px;
}

.dashboard-kpi-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  margin-bottom: 22px;
}

.dashboard-kpi-card {
  align-items: center;
  background: rgba(255, 252, 246, 0.92);
  border: 1px solid #dfcbb6;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(55, 38, 26, 0.08);
  display: grid;
  gap: 12px;
  grid-template-columns: 52px minmax(0, 1fr);
  min-height: 112px;
  padding: 16px;
}

.dashboard-kpi-icon {
  align-items: center;
  background: #f6ead8;
  border: 1px solid #ead6bb;
  border-radius: 8px;
  color: #b98224;
  display: inline-flex;
  font-size: 30px;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.dashboard-kpi-card span:not(.material-symbols-outlined) {
  color: #403936;
  display: block;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.dashboard-kpi-card strong {
  color: #76082d;
  display: block;
  font-family: Georgia, serif;
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1;
  margin-top: 5px;
  overflow-wrap: anywhere;
}

.dashboard-kpi-card small {
  color: #62554f;
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-top: 8px;
}

.dashboard-kpi-card small.is-up {
  color: #1d6a2d;
}

.dashboard-kpi-card small.is-down {
  color: #9f1e1e;
}

.dashboard-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.dashboard-panel {
  grid-column: span 3;
  padding: 18px;
}

.dashboard-panel-wide {
  grid-column: span 4;
}

.dashboard-panel-large {
  grid-column: span 6;
}

.dashboard-panel-head {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 14px;
}

.dashboard-panel-head h2 {
  color: #210b08;
  font-size: 20px;
  margin: 0;
}

.dashboard-panel-head span,
.dashboard-panel-head a {
  color: #6f625b;
  font-size: 12px;
  font-weight: 900;
}

.dashboard-line-chart {
  min-height: 250px;
}

.dashboard-line-chart svg {
  display: block;
  height: 222px;
  overflow: visible;
  width: 100%;
}

.dashboard-line-chart line {
  stroke: #e7d9ca;
  stroke-width: 1;
}

.dashboard-line-chart polyline {
  fill: none;
  stroke: #8f0730;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.dashboard-line-chart circle {
  fill: #8f0730;
  stroke: #fff9f0;
  stroke-width: 4;
}

.dashboard-chart-labels {
  font-size: 10px;
  height: 18px;
  margin-top: 5px;
  position: relative;
}

.dashboard-chart-labels span {
  color: #6f625b;
  left: 0;
  max-width: 62px;
  overflow: hidden;
  position: absolute;
  text-align: center;
  text-overflow: ellipsis;
  top: 0;
  transform: translateX(-50%);
  white-space: nowrap;
}

.dashboard-bar-chart {
  align-items: end;
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(var(--dashboard-chart-points, 12), minmax(0, 1fr));
  height: 250px;
  padding-top: 12px;
}

.dashboard-bar-item {
  align-items: stretch;
  display: grid;
  gap: 8px;
  grid-template-rows: minmax(0, 1fr) auto;
  height: 100%;
}

.dashboard-bar-item span {
  align-self: end;
  background: linear-gradient(180deg, #9c0a39, #5b0018);
  border-radius: 4px 4px 0 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  display: block;
  min-height: 0;
}

.dashboard-bar-item small {
  color: #6f625b;
  font-size: 10px;
  text-align: center;
  white-space: nowrap;
}

.dashboard-source-layout {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 150px minmax(0, 1fr);
}

.dashboard-donut {
  align-items: center;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.dashboard-donut::after {
  background: #fffaf2;
  border-radius: 50%;
  content: "";
  inset: 30px;
  position: absolute;
}

.dashboard-donut strong,
.dashboard-donut span {
  position: relative;
  z-index: 1;
}

.dashboard-donut strong {
  color: #210b08;
  font-family: Georgia, serif;
  font-size: 30px;
  line-height: 1;
}

.dashboard-donut span {
  color: #6f625b;
  font-size: 12px;
  font-weight: 900;
}

.dashboard-legend {
  display: grid;
  gap: 10px;
}

.dashboard-legend div {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-columns: 10px minmax(0, 1fr) auto;
}

.dashboard-legend i {
  border-radius: 50%;
  height: 10px;
  width: 10px;
}

.dashboard-legend span,
.dashboard-legend strong,
.dashboard-driver-row span,
.dashboard-driver-row strong,
.dashboard-region-row span,
.dashboard-region-row strong,
.dashboard-region-row em,
.dashboard-total-row {
  color: #403936;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.dashboard-driver-bars,
.dashboard-region-list,
.dashboard-upcoming-list,
.dashboard-action-list {
  display: grid;
  gap: 10px;
}

.dashboard-driver-row {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(90px, 130px) minmax(0, 1fr) 26px;
}

.dashboard-driver-row div,
.dashboard-region-row i {
  background: #eee4d7;
  border-radius: 999px;
  display: block;
  height: 12px;
  overflow: hidden;
}

.dashboard-driver-row i,
.dashboard-region-row b {
  background: linear-gradient(90deg, #8f0730, #5b0018);
  border-radius: inherit;
  display: block;
  height: 100%;
}

.dashboard-region-row {
  display: grid;
  gap: 8px;
}

.dashboard-region-row div,
.dashboard-total-row {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) 48px 36px;
}

.dashboard-region-row b {
  background: linear-gradient(90deg, #d4b46a, #b98224);
}

.dashboard-total-row {
  border-top: 1px solid #e4d4c2;
  margin-top: 14px;
  padding-top: 14px;
}

.dashboard-table-scroll {
  overflow-x: auto;
}

.dashboard-booking-table {
  min-width: 780px;
}

.dashboard-upcoming-list a {
  align-items: center;
  border: 1px solid #ead9c5;
  border-radius: 8px;
  color: #2b211d;
  display: grid;
  gap: 12px;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  padding: 10px;
  text-decoration: none;
}

.dashboard-upcoming-list a:hover,
.dashboard-upcoming-list a:focus-visible {
  border-color: #8f0730;
}

.dashboard-date-badge {
  align-items: center;
  border: 1px solid #ead9c5;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 54px;
  justify-content: center;
}

.dashboard-date-badge small,
.dashboard-upcoming-list b small {
  color: #8f0730;
  display: block;
  font-size: 10px;
  font-weight: 900;
}

.dashboard-date-badge strong,
.dashboard-upcoming-list b {
  color: #210b08;
  font-family: Georgia, serif;
  font-size: 22px;
  line-height: 1;
  text-align: center;
}

.dashboard-upcoming-list span strong,
.dashboard-upcoming-list span em {
  display: block;
}

.dashboard-upcoming-list span strong {
  font-size: 13px;
  font-weight: 900;
}

.dashboard-upcoming-list span em {
  color: #6f625b;
  font-size: 12px;
  font-style: normal;
  margin-top: 4px;
}

.dashboard-action-list .button {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  min-height: 44px;
  width: 100%;
}

.dashboard-action-list .material-symbols-outlined {
  font-size: 20px;
}

.dashboard-archive-action {
  justify-content: flex-start;
  margin-top: 24px;
}

.handbook-layout {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
}

.handbook-chapter-nav {
  display: grid;
  gap: 8px;
  padding: 18px;
  position: sticky;
  top: 24px;
}

.handbook-nav-title {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.handbook-chapter-nav a {
  align-items: flex-start;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #403936;
  display: grid;
  font-weight: 900;
  gap: 3px;
  line-height: 1.2;
  padding: 11px 12px;
  text-decoration: none;
}

.handbook-chapter-nav a:hover,
.handbook-chapter-nav a:focus-visible {
  background: #f8f1e7;
  border-color: #e1d0bd;
  color: var(--admin-nav-active-bg);
}

.handbook-chapter-nav a span {
  color: var(--muted);
  font-size: 12px;
}

.handbook-document {
  display: grid;
  gap: 22px;
}

.handbook-intro h2,
.handbook-chapter h2 {
  color: var(--admin-nav-active-bg);
}

.handbook-intro p,
.handbook-summary,
.handbook-block p,
.handbook-block li,
.handbook-review-card p {
  color: #554945;
  line-height: 1.65;
}

.handbook-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.handbook-principles strong {
  background: #f8f1e7;
  border: 1px solid #e1d0bd;
  border-radius: 999px;
  color: #403936;
  display: inline-flex;
  font-size: 13px;
  padding: 8px 12px;
}

.handbook-chapter {
  padding: 28px;
  scroll-margin-top: 24px;
}

.handbook-chapter h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  margin-bottom: 12px;
}

.handbook-summary {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 22px;
  max-width: 850px;
}

.handbook-block {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.handbook-block + .handbook-block {
  margin-top: 20px;
}

.handbook-block h3 {
  color: #403936;
  font-size: 22px;
  margin: 0 0 10px;
}

.handbook-block p {
  margin: 0 0 12px;
}

.handbook-block ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
}

.handbook-uniform-gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.handbook-uniform-gallery figure {
  background: #f8f1e7;
  border: 1px solid #e1d0bd;
  border-radius: 8px;
  display: grid;
  margin: 0;
  overflow: hidden;
}

.handbook-uniform-gallery img {
  aspect-ratio: 4 / 5;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.handbook-uniform-gallery figcaption {
  color: #403936;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
  padding: 12px 14px 14px;
}

.handbook-review-card {
  align-items: center;
  background: #f8f1e7;
  border: 1px solid #e1d0bd;
  border-radius: 8px;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) 132px;
  margin-top: 22px;
  padding: 18px;
}

.handbook-review-card strong {
  color: #403936;
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.handbook-review-card p {
  margin: 0 0 10px;
}

.handbook-review-card a {
  color: var(--admin-nav-active-bg);
  font-weight: 900;
}

.handbook-review-card img {
  background: white;
  border: 1px solid #e1d0bd;
  border-radius: 8px;
  display: block;
  height: 132px;
  object-fit: contain;
  padding: 8px;
  width: 132px;
}

.fleet-section-head {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.fleet-section-head h2 {
  margin: 0;
}

.fleet-table th,
.fleet-table td {
  vertical-align: middle;
}

.fleet-table td:nth-child(6) {
  color: var(--muted);
  font-weight: 800;
}

.danger-panel {
  border-color: #d9a5a5;
  background: #fff8f8;
}

.danger-panel p {
  color: #6f1515;
  font-weight: 800;
  margin-bottom: 16px;
}

.account-password-panel {
  max-width: 760px;
}

.password-guidance {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
  margin: 0 0 18px;
}

.admin-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  max-width: 100%;
  overflow: hidden;
}

.empty-table-cell {
  color: var(--muted);
  font-weight: 900;
  padding: 24px;
  text-align: center;
}

.admin-table tr:hover td {
  background: #fffaf2;
}

.admin-table tr.is-past-booking td {
  background: #f5f1eb;
  color: #756b64;
}

.admin-table tr.is-past-booking:hover td,
.admin-table tr.is-past-booking:focus-visible td {
  background: #eee8df;
}

.admin-table tr.is-past-booking .table-link,
.admin-table tr.is-past-booking .status {
  color: #756b64;
}

.admin-table tr.is-past-booking .status {
  background: #e2dbd2;
}

.admin-table tr.is-muted-row td {
  background: #f7f1e9;
  color: #756b64;
}

.admin-table tr.is-muted-row:hover td,
.admin-table tr.is-muted-row:focus-visible td {
  background: #eee8df;
}

.clickable-row {
  cursor: pointer;
}

.clickable-row:focus {
  outline: 0;
}

.clickable-row:focus-visible td {
  background: #fffaf2;
}

.inline-tasting-fee-form {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 250px;
}

.inline-tasting-fee-form .inline-currency {
  color: var(--muted);
  font-weight: 900;
}

.inline-tasting-fee-form input[type="number"] {
  max-width: 96px;
  min-height: 38px;
  padding: 8px 10px;
}

.inline-fee-count {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.winery-phone-cell {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.winery-region-cell {
  width: 74px;
}

.winery-region-code {
  cursor: help;
  display: inline-block;
  font-weight: 800;
  margin-right: 4px;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.winery-hours-cell {
  min-width: 220px;
  width: 240px;
}

.winery-hours-value {
  color: var(--ink);
  display: inline;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.winery-hours-source {
  color: var(--wine);
  display: inline-flex;
  margin-left: 4px;
  text-decoration: none;
  vertical-align: text-bottom;
}

.winery-hours-source .material-symbols-outlined {
  font-size: 16px;
}

.winery-hours-cell small {
  color: var(--muted);
  display: block;
  font-size: 10px;
  font-weight: 800;
  margin-top: 4px;
  text-transform: uppercase;
}

.table-link {
  color: var(--wine);
  font-weight: 900;
  text-decoration: none;
}

.form-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.table-actions {
  justify-content: flex-start;
  margin-bottom: 0;
  margin-top: 20px;
}

.expense-stats .panel span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
  margin-top: 8px;
}

.expense-stats {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.expense-positive {
  color: var(--vine-dark);
}

.expense-negative {
  color: #8c1d1d;
}

.expense-paid-status {
  background: #e8f7ee;
  color: #124b28;
}

.expense-unpaid-status {
  background: #ebe4dc;
  color: #6d625c;
}

.expense-report-form {
  display: grid;
  gap: 22px;
}

.expense-estimate-banner {
  align-items: center;
  background: linear-gradient(135deg, #edf7e9, #fffaf1);
  border: 1px solid rgba(47, 107, 63, 0.4);
  border-radius: 10px;
  display: grid;
  gap: 14px;
  grid-template-columns: auto 1fr auto;
  padding: 15px 18px;
}

.expense-estimate-banner > .material-symbols-outlined {
  color: var(--vine-dark);
  font-size: 30px;
}

.expense-estimate-banner strong,
.expense-estimate-banner span {
  display: block;
}

.expense-estimate-banner span {
  color: var(--muted);
  margin-top: 3px;
}

.expense-calculation-block {
  background: #fffaf2;
  border: 1px solid var(--line);
  border-radius: 9px;
  margin-top: 14px;
  padding: 16px;
}

.expense-calculation-block > div:first-child {
  margin-bottom: 14px;
}

.expense-calculation-block > div:first-child strong,
.expense-calculation-block > div:first-child span {
  display: block;
}

.expense-calculation-block > div:first-child strong {
  color: var(--wine);
  font-size: 17px;
}

.expense-calculation-block > div:first-child span,
.expense-estimate-source {
  color: var(--muted);
  font-size: 11px;
}

.expense-other-costs {
  margin-top: 16px;
}

.incidental-expense-panel {
  margin-top: 22px;
}

.incidental-expense-form {
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
  padding-bottom: 18px;
}

.incidental-expense-table td {
  vertical-align: middle;
}

.incidental-expense-table td:nth-child(3) {
  min-width: 280px;
}

.incidental-expense-table form {
  margin: 0;
}

.expense-destination-head {
  align-items: flex-start;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 22px 0 14px;
}

.expense-destination-head h3 {
  font-size: 24px;
  margin-bottom: 6px;
}

.expense-destination-table td {
  vertical-align: middle;
}

.expense-destination-table th:first-child,
.expense-destination-table td:first-child {
  min-width: 250px;
}

.expense-destination-table th:nth-child(2),
.expense-destination-table td:nth-child(2),
.expense-destination-table th:nth-child(4),
.expense-destination-table td:nth-child(4) {
  width: 145px;
}

.expense-destination-table th:nth-child(3),
.expense-destination-table td:nth-child(3) {
  width: 90px;
}

.expense-estimate-source {
  display: block;
  margin-top: 4px;
}

.expense-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.expense-row-actions .button {
  min-height: 36px;
}

.itinerary-action-profit,
.itinerary-profit-button {
  background: #fff2bf;
  border-color: #c58a16;
  color: #6f4100;
}

.itinerary-action-profit:hover,
.itinerary-action-profit:focus-visible,
.itinerary-profit-button:hover,
.itinerary-profit-button:focus-visible {
  background: #ffe89a;
  border-color: #a56b06;
  color: #5b3300;
}

.expense-notes-field {
  margin-top: 18px;
}

.expense-totals-panel {
  border-color: rgba(47, 107, 63, 0.35);
}

.expense-total-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
}

.expense-total-grid div {
  background: #fffaf2;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.expense-total-grid span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.expense-total-grid strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.1;
  margin-top: 6px;
}

@media (max-width: 760px) {
  .expense-estimate-banner {
    grid-template-columns: auto 1fr;
  }

  .expense-estimate-banner .button {
    grid-column: 1 / -1;
  }

  .expense-destination-table {
    min-width: 860px;
  }
}

.hidden-form {
  display: none;
}

.button.danger-fill {
  background: #8c1d1d;
  color: white;
}

.admin-body .button,
.admin-body button,
.admin-body input[type="submit"],
.admin-body input[type="button"] {
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.admin-body .button:hover,
.admin-body button:hover,
.admin-body input[type="submit"]:hover,
.admin-body input[type="button"]:hover,
.admin-body .button:focus-visible,
.admin-body button:focus-visible,
.admin-body input[type="submit"]:focus-visible,
.admin-body input[type="button"]:focus-visible {
  box-shadow: 0 10px 24px rgba(63, 23, 16, 0.16);
  transform: translateY(-1px);
}

.admin-body .button.secondary:hover,
.admin-body .button.secondary:focus-visible {
  background: rgba(143, 7, 48, 0.08);
}

.admin-body .button.danger-fill:hover,
.admin-body .button.danger-fill:focus-visible {
  background: #6f1515;
}

.admin-body .button:disabled,
.admin-body button:disabled,
.admin-body input[type="submit"]:disabled,
.admin-body input[type="button"]:disabled,
.admin-body .button.disabled,
.admin-body button.disabled {
  box-shadow: none;
  transform: none;
}

.confirm-overlay {
  align-items: stretch;
  background: rgba(25, 30, 29, 0.5);
  display: flex;
  inset: 0;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 180ms ease;
  z-index: 50;
}

.confirm-overlay[hidden] {
  display: none;
}

.confirm-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.confirm-drawer {
  background: #fffaf4;
  border-left: 1px solid var(--line);
  box-shadow: -20px 0 50px rgba(33, 24, 18, 0.24);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: calc(100% - 24px);
  padding: 34px;
  transform: translateX(28px);
  transition: transform 180ms ease;
  width: 430px;
}

.confirm-overlay.is-open .confirm-drawer {
  transform: translateX(0);
}

.confirm-icon {
  align-items: center;
  background: #f1e5d7;
  border-radius: 999px;
  color: #8c1d1d;
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  margin-bottom: 18px;
  width: 44px;
}

.confirm-drawer h2 {
  color: var(--wine);
  font-size: 38px;
  margin: 0 0 12px;
}

.confirm-drawer p:not(.eyebrow) {
  color: #554945;
  line-height: 1.6;
  margin: 0;
}

.confirm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.admin-detail-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 24px;
}

.detail-panel-head {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-bottom: 16px;
}

.detail-panel-head h2 {
  margin: 0;
}

.booking-detail-edit-form .booking-edit-field,
.booking-detail-edit-form .booking-edit-only {
  display: none;
}

.booking-detail-edit-form.is-editing .booking-view-value {
  display: none;
}

.booking-detail-edit-form.is-editing .booking-edit-field,
.booking-detail-edit-form.is-editing .booking-edit-only {
  display: block;
}

.booking-detail-edit-form.is-editing button.booking-edit-only {
  display: inline-flex;
}

.booking-detail-edit-form.is-editing .booking-edit-pair,
.booking-detail-edit-form.is-editing .coordinate-input-row.booking-edit-field {
  display: grid;
}

.booking-edit-pair {
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-detail-edit-form .detail-list input,
.booking-detail-edit-form .detail-list select,
.booking-detail-edit-form .detail-list textarea {
  padding: 10px 11px;
}

.booking-detail-edit-form .detail-list textarea {
  min-height: 90px;
}

.booking-admin-edit-panel {
  margin-bottom: 24px;
}

.detail-list {
  display: grid;
  gap: 10px 18px;
  grid-template-columns: 150px minmax(0, 1fr);
  margin: 0;
}

.detail-list dt {
  color: var(--muted);
  font-weight: 900;
}

.detail-list dd {
  margin: 0;
}

.pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.pagination a,
.pagination .disabled {
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--wine);
  font-weight: 900;
  padding: 8px 12px;
  text-decoration: none;
}

.pagination .disabled {
  color: var(--muted);
  opacity: 0.55;
}

.pagination .ellipsis {
  color: var(--muted);
  font-weight: 900;
  padding: 8px 4px;
}

.pagination-summary {
  color: var(--muted);
  font-weight: 900;
  margin-right: 8px;
}

.pagination a.active {
  background: var(--wine);
  color: white;
}

.admin-booking-calendar {
  margin-bottom: 24px;
  padding: 22px;
}

.admin-calendar-head {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  margin-bottom: 14px;
}

.admin-calendar-head h2 {
  font-size: 34px;
  margin: 0;
  text-align: center;
}

.admin-calendar-head p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  margin: 5px 0 0;
  text-align: center;
}

.admin-calendar-nav {
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--wine);
  display: inline-flex;
  font-size: 30px;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  width: 44px;
}

.admin-calendar-legend,
.admin-calendar-selected {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.admin-calendar-legend {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 14px;
}

.admin-calendar-selected {
  background: #fff8ef;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #3f3230;
  font-weight: 900;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 12px 14px;
}

.admin-calendar-selected a {
  color: var(--wine);
}

.legend-dot {
  border: 2px solid var(--line);
  border-radius: 999px;
  display: inline-block;
  height: 12px;
  margin-right: 6px;
  vertical-align: -1px;
  width: 12px;
}

.legend-dot.is-pending {
  border-color: #d6a700;
}

.legend-dot.is-confirmed {
  border-color: #2e9f4d;
}

.legend-dot.is-mixed {
  background: linear-gradient(135deg, #d6a700 0 50%, #2e9f4d 50% 100%);
  border-color: #2e9f4d;
}

.legend-dot.is-past {
  background: #cbc2b7;
  border-color: #cbc2b7;
}

.legend-dot.is-today {
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(143, 7, 48, 0.14);
}

.admin-calendar-weekdays,
.admin-calendar-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.admin-calendar-weekdays {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  text-align: center;
  text-transform: uppercase;
}

.admin-calendar-day {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #2b211f;
  display: grid;
  gap: 8px;
  min-height: 96px;
  padding: 10px;
  text-decoration: none;
}

.admin-calendar-day.is-empty {
  background: transparent;
  border-color: transparent;
}

.admin-calendar-day.is-pending {
  border-color: #d6a700;
  box-shadow: inset 0 0 0 1px rgba(214, 167, 0, 0.22);
}

.admin-calendar-day.is-confirmed {
  border-color: #2e9f4d;
  box-shadow: inset 0 0 0 1px rgba(46, 159, 77, 0.18);
}

.admin-calendar-day.is-mixed {
  border-color: #2e9f4d;
  box-shadow: inset 4px 0 0 #d6a700, inset 0 0 0 1px rgba(46, 159, 77, 0.18);
}

.admin-calendar-day.is-past {
  background: #f1eee9;
  border-color: #d5cdc2;
  box-shadow: none;
  color: #756b64;
}

.admin-calendar-day.is-past .admin-calendar-date strong,
.admin-calendar-day.is-past .admin-calendar-date small,
.admin-calendar-day.is-past .admin-calendar-metrics {
  color: #756b64;
}

.admin-calendar-day.is-empty.is-past {
  background: transparent;
  border-color: transparent;
  opacity: 0.58;
}

.admin-calendar-day.is-today {
  background: #fffaf2;
  outline: 3px solid rgba(143, 7, 48, 0.18);
  outline-offset: 2px;
}

.admin-calendar-day.is-empty.is-today {
  border-color: rgba(143, 7, 48, 0.28);
}

.admin-calendar-day.is-selected {
  outline: 3px solid rgba(143, 7, 48, 0.18);
  outline-offset: 2px;
}

.admin-calendar-day:not(.is-empty):hover,
.admin-calendar-day:not(.is-empty):focus-visible {
  border-color: var(--wine);
}

.admin-calendar-date {
  align-items: start;
  display: flex;
  justify-content: space-between;
}

.admin-calendar-date small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-calendar-date strong {
  color: var(--wine-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1;
}

.admin-calendar-badge {
  align-self: start;
  background: rgba(143, 7, 48, 0.08);
  border: 1px solid rgba(143, 7, 48, 0.18);
  border-radius: 999px;
  color: var(--wine);
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  justify-self: start;
  line-height: 1;
  padding: 5px 8px;
  text-transform: uppercase;
}

.admin-calendar-day.is-past .admin-calendar-badge {
  background: #e3ddd5;
  border-color: #d2c8bc;
  color: #6e625b;
}

.admin-calendar-metrics {
  color: #4d403b;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
}

.admin-package-image {
  border: 1px solid var(--line);
  border-radius: 8px;
  height: 180px;
  margin-bottom: 16px;
  object-fit: cover;
  width: 100%;
}

.package-form {
  display: grid;
  gap: 24px;
}

.winery-fees-panel {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.winery-media-panel {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 16px;
  padding-top: 18px;
}

.winery-youtube-field,
.winery-main-image-field {
  max-width: 760px;
}

.winery-file-input {
  height: 1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.winery-remove-input {
  display: none;
}

.winery-main-image-wrap {
  max-width: 620px;
  position: relative;
}

.winery-image-dropzone,
.winery-gallery-upload-tile {
  align-items: center;
  background: #fffdf8;
  border: 2px dashed #9da2ad;
  border-radius: 8px;
  color: #4b4644;
  cursor: pointer;
  display: grid;
  justify-items: center;
  min-height: 168px;
  overflow: hidden;
  padding: 18px;
  position: relative;
  text-align: center;
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.winery-image-dropzone:hover,
.winery-image-dropzone:focus-within,
.winery-gallery-upload-tile:hover,
.winery-gallery-upload-tile:focus-within,
.winery-image-dropzone.is-dragover,
.winery-gallery-upload-tile.is-dragover {
  background: #fff7ea;
  border-color: var(--wine);
  box-shadow: 0 12px 28px rgba(67, 1, 15, 0.12);
  color: var(--wine);
}

.winery-main-dropzone {
  aspect-ratio: 16 / 9;
  padding: 0;
}

.winery-upload-preview {
  display: block;
  inset: 0;
  position: absolute;
}

.winery-upload-preview img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.winery-upload-copy {
  align-items: center;
  background: rgba(255, 253, 248, 0.88);
  border-radius: 8px;
  display: grid;
  gap: 5px;
  justify-items: center;
  line-height: 1.25;
  padding: 13px 16px;
  position: relative;
  z-index: 1;
}

.winery-image-dropzone:not(.has-image) .winery-upload-copy {
  background: transparent;
}

.winery-upload-copy .material-symbols-outlined,
.winery-gallery-upload-tile .material-symbols-outlined {
  background: #e8f3ef;
  border-radius: 8px;
  color: var(--vine);
  font-size: 30px;
  padding: 8px;
}

.winery-upload-copy strong,
.winery-gallery-upload-tile strong {
  color: inherit;
  font-size: 15px;
  font-weight: 900;
}

.winery-upload-copy small,
.winery-gallery-upload-tile small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.winery-image-delete-button {
  align-items: center;
  background: #a50d2f;
  border: 2px solid white;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(67, 1, 15, 0.24);
  color: white;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  min-height: 34px;
  padding: 0;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 34px;
  z-index: 4;
}

.winery-image-delete-button:hover,
.winery-image-delete-button:focus-visible {
  background: var(--wine-dark);
}

.winery-image-delete-button .material-symbols-outlined {
  font-size: 22px;
}

.winery-gallery-preview img {
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.winery-gallery-preview-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.winery-gallery-preview {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  overflow: hidden;
  padding: 8px;
  position: relative;
}

.winery-gallery-upload-tile {
  min-height: 150px;
}

.winery-gallery-preview img {
  aspect-ratio: 4 / 3;
}

.winery-gallery-preview span {
  align-items: center;
  display: flex;
  font-size: 13px;
  font-weight: 900;
  gap: 6px;
  line-height: 1.2;
  min-width: 0;
}

.winery-gallery-preview span strong {
  color: #403936;
  display: block;
  flex: 1 1 auto;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.winery-gallery-preview.is-pending {
  border-color: rgba(47, 107, 63, 0.45);
}

.winery-gallery-preview.is-marked-delete {
  display: none;
}

.winery-fee-row {
  align-items: end;
}

.package-card-grid {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-filter-form {
  margin-bottom: 20px;
}

.winery-filter-grid {
  grid-template-columns: minmax(190px, 1.8fr) minmax(145px, 1fr) minmax(120px, 0.8fr) minmax(160px, 1fr) minmax(100px, 0.6fr);
}

.region-manager-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.region-card {
  display: grid;
  gap: 18px;
}

.region-map iframe {
  height: 320px;
}

.region-winery-list,
.region-checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.region-winery-list a,
.region-winery-list span {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--wine);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  min-height: 40px;
  padding: 7px 9px;
  text-decoration: none;
}

.region-select-panel {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  padding-top: 18px;
}

.region-select-panel h2 {
  font-size: 32px;
  margin-bottom: 0;
}

.region-select-panel p {
  color: var(--muted);
  margin: 0;
}

.coordinate-input-row {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.availability-widget {
  background: #fff8ef;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  margin: 4px 0 18px;
  min-width: 0;
  padding: 14px;
}

.availability-widget p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

.availability-calendar-head {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
}

.availability-calendar-head > div {
  text-align: center;
}

.availability-status {
  color: var(--wine-dark);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.availability-season {
  color: var(--gold);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-top: 6px;
  text-transform: uppercase;
}

.availability-nav {
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--wine);
  display: inline-flex;
  font-size: 28px;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  text-transform: none;
  width: 42px;
}

.availability-nav:disabled {
  color: #bbb0a7;
  cursor: not-allowed;
  opacity: 0.5;
}

.availability-selected-status {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 900;
  padding: 10px 12px;
}

.availability-selected-status.is-available {
  background: #eef8f0;
  border-color: #9ac9a2;
  color: #146b2d;
}

.availability-selected-status.is-sold-out {
  background: #fff1f1;
  border-color: #e2a6a6;
  color: #8c1d1d;
}

.availability-calendar-scroll {
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  padding-bottom: 2px;
}

.availability-weekdays {
  color: var(--muted);
  display: grid;
  font-size: 10px;
  font-weight: 900;
  gap: 6px;
  grid-template-columns: repeat(7, minmax(72px, 1fr));
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  min-width: 100%;
  text-align: center;
  text-transform: uppercase;
  width: max-content;
}

.availability-days {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(7, minmax(72px, 1fr));
  min-width: 100%;
  width: max-content;
}

.availability-day {
  align-content: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #261919;
  display: grid;
  gap: 5px;
  justify-items: center;
  min-height: 82px;
  min-width: 72px;
  padding: 9px 4px;
  text-align: center;
  text-transform: none;
}

.availability-day:disabled {
  cursor: not-allowed;
}

.availability-day.is-empty {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  pointer-events: none;
}

.availability-date,
.availability-label {
  display: block;
  min-width: 0;
}

.availability-date {
  display: grid;
  gap: 4px;
  justify-items: center;
}

.availability-weekday {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.availability-date-line {
  color: var(--wine-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.availability-label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
}

.availability-day.is-available {
  border-color: #9ac9a2;
}

.availability-day.is-available .availability-label {
  color: #146b2d;
}

.availability-day.is-sold-out,
.availability-day.is-unavailable {
  background: #fbf7f1;
  border-color: #eadccb;
}

.availability-day.is-sold-out .availability-weekday,
.availability-day.is-sold-out .availability-date-line,
.availability-day.is-sold-out .availability-label,
.availability-day.is-unavailable .availability-weekday,
.availability-day.is-unavailable .availability-date-line,
.availability-day.is-unavailable .availability-label {
  color: #9b918b;
}

.availability-day.is-past {
  background: #f2ece5;
  border-color: #ded3c7;
  opacity: 0.82;
}

.availability-day.is-past .availability-date-line,
.availability-day.is-past .availability-weekday {
  color: #9b918b;
}

.availability-day.is-selected {
  border-color: var(--wine);
  box-shadow: 0 0 0 2px rgba(143, 7, 48, 0.12);
}

.availability-day:not(:disabled):hover,
.availability-day:not(:disabled):focus-visible {
  border-color: var(--wine);
  transform: translateY(-1px);
}

.vehicle-manager-grid,
.vehicle-card-grid,
.driver-card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 24px;
}

.vehicle-form-card,
.vehicle-card,
.driver-form-card,
.driver-card {
  padding: 24px;
}

.vehicle-card,
.driver-card {
  background: #fffaf4;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.driver-card.is-inactive {
  background: #f4eee7;
  border-style: dashed;
}

.driver-card-head {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 14px;
}

.driver-card-head strong {
  display: block;
  color: var(--wine-dark);
  font-size: 20px;
}

.driver-card-head span:not(.status) {
  color: var(--muted);
  display: block;
  font-weight: 800;
  margin-top: 4px;
}

.driver-dashboard-actions {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 24px;
}

.driver-action-card {
  background: #fffaf4;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 22px;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.driver-action-card:hover,
.driver-action-card:focus-visible {
  border-color: rgba(143, 7, 48, 0.35);
  box-shadow: 0 14px 32px rgba(63, 23, 16, 0.14);
  transform: translateY(-1px);
}

.driver-action-card strong {
  color: var(--wine-dark);
  font-size: 24px;
  line-height: 1.05;
}

.driver-action-card span {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.driver-table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.driver-table-actions form {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.driver-table-actions select {
  min-height: 38px;
  min-width: 160px;
  padding: 8px 10px;
}

.driver-table th,
.driver-table td {
  vertical-align: middle;
}

.driver-table .status + .status {
  margin-left: 6px;
}

.trip-inspection-report-table small {
  color: var(--muted);
  display: block;
  font-weight: 800;
  margin-top: 4px;
}

.trip-inspection-form .detail-panel {
  margin-bottom: 18px;
}

.inspection-mode-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.inspection-mode-grid fieldset {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 16px;
}

.inspection-mode-grid legend {
  color: var(--wine-dark);
  font-weight: 900;
  padding: 0 8px;
}

.tap-radio,
.trip-check-row label,
.trip-check-row span {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  gap: 8px;
  justify-content: center;
  min-height: 46px;
  padding: 10px 12px;
}

.tap-radio:has(input:checked),
.trip-check-row label:has(input:checked) {
  background: #eaf7ed;
  border-color: #85c494;
  color: #146b2d;
}

.trip-check-row label:has(input[value="FAIL"]:checked) {
  background: #f7e6ed;
  border-color: #d79aac;
  color: var(--wine);
}

.trip-inspection-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trip-inspection-checklist {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.trip-check-row {
  align-items: center;
  background: white;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) 96px 96px;
  padding: 10px;
}

.trip-check-row:last-child {
  border-bottom: 0;
}

.trip-check-row strong {
  color: #2f2625;
  font-size: 16px;
}

.trip-inspection-grid.readonly .trip-check-row span {
  background: #f7f1e9;
  cursor: default;
}

.trip-inspection-grid.readonly .trip-check-row span.is-checked {
  background: #eaf7ed;
  border-color: #85c494;
  color: #146b2d;
}

.trip-inspection-grid.readonly .trip-check-row span.is-fail {
  background: #f7e6ed;
  border-color: #d79aac;
  color: var(--wine);
}

.signature-pad {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.signature-pad label {
  font-weight: 900;
}

.signature-pad canvas {
  background: white;
  border: 2px solid var(--line);
  border-radius: 8px;
  height: 220px;
  max-width: 100%;
  touch-action: none;
  width: 100%;
}

.inspection-signature-review {
  display: grid;
  gap: 16px;
}

.inspection-signature-review img {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  max-height: 160px;
  max-width: 420px;
  padding: 12px;
}

.vehicle-block-list {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
}

.vehicle-calendar-wrap {
  overflow-x: auto;
}

.vehicle-calendar th span {
  color: var(--muted);
  font-size: 11px;
}

.vehicle-calendar td small {
  color: var(--muted);
  display: block;
  font-size: 12px;
  line-height: 1.35;
  margin-top: 5px;
}

.vehicle-status-pill {
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  padding: 7px 10px;
  text-transform: uppercase;
}

.vehicle-status-pill.is-available {
  background: #eaf7ed;
  color: #146b2d;
}

.vehicle-status-pill.is-booked {
  background: #f7e6ed;
  color: var(--wine);
}

.vehicle-status-pill.is-in-use,
.vehicle-status-pill.is-maintenance {
  background: #fff2cc;
  color: #7a4c00;
}

.vehicle-status-pill.is-blocked,
.vehicle-status-pill.is-offline {
  background: #efe8dd;
  color: #5d514b;
}

.coupon-list {
  display: grid;
  gap: 16px;
}

.coupon-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.coupon-card-head {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-bottom: 14px;
}

.coupon-card-head > div {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.coupon-card-head strong {
  color: var(--wine);
  font-size: 20px;
}

.coupon-card-head small {
  color: var(--muted);
  font-weight: 800;
}

input[type="color"] {
  min-height: 44px;
  padding: 4px;
}

.banner-preview-wrap {
  display: grid;
  gap: 8px;
  margin: 10px 0 18px;
}

.banner-preview-wrap > label {
  font-weight: 900;
}

.banner-preview {
  border-radius: 8px;
  margin: 0;
  position: static;
  z-index: 1;
}

.banner-preview [data-banner-preview-message] {
  white-space: pre-line;
}

.package-manager-grid {
  align-items: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.package-manager-grid [data-inclusion-manager] {
  grid-column: 1;
  grid-row: 1;
}

.package-manager-grid [data-addon-manager] {
  grid-column: 2;
  grid-row: 1;
}

.package-manager h2 {
  margin-bottom: 18px;
}

.manager-entry {
  align-items: end;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 18px;
}

.manager-entry .field,
.manager-item .field {
  margin-bottom: 0;
}

.manager-entry-inline {
  grid-template-columns: minmax(0, 1fr) auto;
}

.itinerary-entry {
  grid-template-columns: minmax(170px, 1fr) 150px;
}

.addon-entry,
.addon-edit-grid {
  grid-template-columns: minmax(170px, 1fr) 150px auto auto;
}

.itinerary-entry .manager-description-field,
.manager-edit-grid .manager-description-field {
  grid-column: 1 / -1;
}

.manager-map-fields {
  align-items: end;
  display: grid;
  gap: 14px;
  grid-column: 1 / -1;
  grid-template-columns: 140px minmax(220px, 1.1fr) minmax(170px, 1fr) auto;
}

.manager-checkbox-field {
  align-self: center;
}

.checkbox-label {
  align-items: center;
  display: flex;
  gap: 8px;
  line-height: 1.25;
}

.checkbox-label input {
  width: auto;
}

.manager-find-link {
  justify-self: start;
  white-space: nowrap;
}

.manager-list {
  display: grid;
  gap: 10px;
}

.manager-item {
  align-items: center;
  background: #fffaf4;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 12px;
}

.manager-item.is-editing {
  align-items: stretch;
  grid-template-columns: 1fr;
}

.manager-item.is-inactive {
  background: #f4eee7;
  border-style: dashed;
}

.manager-item.is-inactive .manager-view strong,
.manager-item.is-inactive .manager-view span {
  color: #867a72;
}

.addon-toggle {
  color: var(--wine);
  font-weight: 800;
  text-transform: uppercase;
}

.booking-addon-option {
  align-items: center;
  display: flex;
  gap: 10px;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 8px;
}

.booking-addon-option input {
  flex: 0 0 auto;
  height: 18px;
  margin: 0;
  width: 18px;
}

.booking-addon-option span {
  display: grid;
  gap: 3px;
}

.booking-addon-option span strong {
  font-weight: 800;
}

.booking-addon-option span small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.booking-required-fee,
.south-okanagan-pickup-notice {
  background: #ffedb3;
  border: 2px solid #a56d08;
  border-radius: 8px;
  color: var(--wine-dark);
  padding: 15px 16px;
}

.booking-required-fee {
  box-shadow: 0 8px 18px rgba(121, 75, 0, 0.13);
  font-size: 16px;
}

.booking-required-fee span strong {
  color: #6e120f;
  font-size: 18px;
}

.booking-required-fee > .material-symbols-outlined {
  color: #9b6810;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 24px;
}

.south-okanagan-pickup-notice {
  margin: 14px 0 18px;
}

.south-okanagan-pickup-notice > strong {
  color: var(--wine);
  display: block;
  font-family: Georgia, serif;
  font-size: 19px;
  margin-bottom: 5px;
}

.south-okanagan-pickup-notice p {
  margin: 5px 0 10px;
}

.south-okanagan-pickup-notice .terms-check {
  margin: 10px 0 0;
}

.required-fee-summary {
  background: #ffedb3;
  border: 2px solid #a56d08;
  border-left: 8px solid #7b1614;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(121, 75, 0, 0.13);
  color: #5c160f;
  display: block;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.4;
  margin-top: 10px;
  padding: 11px 13px;
}

.tour-card .price-row > div:first-child {
  flex: 1 1 auto;
  min-width: 0;
}

.tour-card .price-row .price {
  font-size: 21px;
  line-height: 1.2;
}

.tour-card .required-fee-summary {
  background: #fff8df;
  border: 1px solid #d6a52d;
  border-left: 4px solid #7b1614;
  border-radius: 5px;
  box-shadow: none;
  color: #6e3f08;
  font-size: 13px;
  line-height: 1.3;
  margin-top: 7px;
  padding: 6px 8px;
}

.detail-required-fee {
  border-width: 3px 3px 3px 9px;
  font-size: 19px;
  margin: 14px 0 18px;
  padding: 15px 17px;
}

.booking-fee-alert {
  font-size: 20px;
  margin: 14px 0 20px;
  padding: 17px 19px;
}

.booking-fee-alert span {
  color: #4f2e26;
  display: inline-block;
  font-size: 15px;
  font-weight: 800;
  margin-top: 5px;
}

.admin-price-cell .required-fee-summary {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #8a5b08;
  font-size: 11px;
  margin-top: 4px;
  padding: 0;
}

@media (max-width: 860px) {
  .section.dog-friendly-tour-section {
    padding: 0;
  }

  .dog-friendly-tour-layout {
    grid-template-columns: 1fr;
  }

  .dog-friendly-tour-media {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .dog-friendly-tour-media img {
    object-position: 61% 65%;
  }

  .dog-friendly-tour-copy {
    padding: clamp(38px, 8vw, 64px);
    width: 100%;
  }

  .dog-friendly-tour-copy h2 {
    font-size: clamp(38px, 9vw, 52px);
  }
}

@media (max-width: 560px) {
  .section.dog-friendly-tour-section {
    padding: 0;
  }

  .dog-friendly-tour-copy {
    padding: 36px 22px 42px;
  }

  .dog-friendly-tour-copy::before {
    border-width: 3px;
    font-size: 22px;
    height: 48px;
    right: 16px;
    top: 16px;
    width: 48px;
  }

  .dog-friendly-tour-actions .button {
    width: 100%;
  }
}

.terms-agreement-panel {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.terms-agreement-panel > label:first-child {
  font-weight: 900;
}

.terms-scroll-block {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  max-height: 300px;
  overflow-y: auto;
  padding: 16px;
  scroll-behavior: smooth;
}

.terms-scroll-block:focus-visible {
  outline: 3px solid rgba(143, 7, 48, 0.22);
  outline-offset: 2px;
}

.terms-scroll-block section + section {
  border-top: 1px solid var(--line);
  margin-top: 16px;
  padding-top: 16px;
}

.terms-scroll-block h3 {
  color: var(--wine-dark);
  font-size: 18px;
  line-height: 1.15;
  margin: 0 0 8px;
}

.terms-scroll-block p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 10px;
}

.terms-scroll-block p:last-child {
  margin-bottom: 0;
}

.booking-terms-scroll {
  max-height: 260px;
}

.terms-check {
  align-items: flex-start;
  display: flex;
  gap: 10px;
  font-weight: 800;
  line-height: 1.35;
}

.terms-check input {
  flex: 0 0 auto;
  height: 18px;
  margin-top: 2px;
  width: 18px;
}

.terms-check a {
  color: var(--wine);
  font-weight: 900;
}

.full-span {
  grid-column: 1 / -1;
}

.table-button-group {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.table-button-group form {
  margin: 0;
}

.itinerary-admin-form {
  display: grid;
  gap: 24px;
}

.itinerary-create-button {
  align-self: flex-start;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset;
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.itinerary-create-button span {
  font-size: 30px;
  line-height: 0.7;
}

.itinerary-create-button:hover,
.itinerary-create-button:focus-visible {
  background: #7c082d;
  box-shadow: 0 8px 18px rgba(90, 10, 35, 0.22);
  transform: translateY(-1px);
}

.itinerary-list-panel {
  box-shadow: 0 18px 44px rgba(40, 30, 20, 0.08);
}

.itinerary-list-panel h2 {
  margin-bottom: 14px;
}

.itinerary-list-table td {
  vertical-align: middle;
}

.itinerary-list-table tbody tr {
  transition: background-color 140ms ease;
}

.itinerary-list-table tbody tr:hover td {
  background: #fff7e9;
}

.itinerary-actions {
  justify-content: flex-end;
  min-width: 430px;
}

.itinerary-action {
  border: 1px solid var(--wine);
  min-width: 58px;
  transition: background-color 140ms ease, border-color 140ms ease, box-shadow 140ms ease, color 140ms ease, transform 140ms ease;
}

.itinerary-action-icon {
  min-width: 42px;
  padding-left: 8px;
  padding-right: 8px;
}

.itinerary-action:hover,
.itinerary-action:focus-visible {
  box-shadow: 0 6px 14px rgba(80, 22, 32, 0.16);
  transform: translateY(-1px);
}

.itinerary-action-edit {
  border-color: #2b7044;
  background: #b9d3bd;
  color: #2b7044;
}

.itinerary-action-edit:hover,
.itinerary-action-edit:focus-visible {
  background: #9fc5a6;
  border-color: #2b7044;
  color: #2b7044;
}

.itinerary-action-print {
  border-color: #26b0d8;
  background: white;
  color: #26b0d8;
}

.itinerary-action-print:hover,
.itinerary-action-print:focus-visible {
  background: #eaf8fc;
  border-color: #26b0d8;
  color: #26b0d8;
}

.itinerary-action-email,
.itinerary-detail-email-button,
.itinerary-detail-text-button {
  background: #2d6f43;
  border-color: #2d6f43;
  color: white;
}

.itinerary-action-email:hover,
.itinerary-action-email:focus-visible,
.itinerary-detail-email-button:hover,
.itinerary-detail-email-button:focus-visible,
.itinerary-detail-text-button:hover,
.itinerary-detail-text-button:focus-visible {
  background: #245737;
  border-color: #245737;
  color: white;
}

.itinerary-action-route {
  background: #2d6f43;
  border-color: #2d6f43;
  color: white;
}

.itinerary-action-route:hover,
.itinerary-action-route:focus-visible {
  background: #245737;
  border-color: #245737;
  color: white;
}

.itinerary-action-delete {
  background: #7b1d1d;
  border-color: #7b1d1d;
  color: white;
}

.itinerary-action-delete:hover,
.itinerary-action-delete:focus-visible {
  background: #5f1111;
  border-color: #5f1111;
}

.itinerary-detail-actions {
  align-items: center;
  justify-content: flex-end;
}

.itinerary-detail-actions form {
  margin: 0;
}

.itinerary-email-compose-panel form {
  display: grid;
  gap: 18px;
}

.itinerary-email-send-actions {
  justify-content: flex-start;
}

.itinerary-text-compose-panel {
  display: grid;
  gap: 18px;
}

.itinerary-text-message {
  min-height: 150px;
}

.itinerary-text-send-actions {
  align-items: center;
  justify-content: flex-start;
}

.itinerary-text-copy-status {
  color: #2d6f43;
  font-size: 13px;
  font-weight: 900;
}

.itinerary-email-expiry {
  color: #655b53;
  font-weight: 800;
  margin: 14px 0 0;
}

.itinerary-email-preview-panel h2 {
  margin-bottom: 14px;
}

.itinerary-email-preview-frame {
  background: #f7efe6;
  border: 1px solid #e0cdb9;
  border-radius: 8px;
  display: block;
  min-height: 620px;
  overflow: hidden;
  width: 100%;
}

.itinerary-wizard-form {
  display: grid;
  gap: 18px;
}

.itinerary-wizard-steps {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.itinerary-wizard-steps li {
  align-items: center;
  background: #fffaf4;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #6a625c;
  display: flex;
  font-size: 12px;
  font-weight: 900;
  gap: 8px;
  letter-spacing: 0.04em;
  min-height: 44px;
  padding: 8px 10px;
  text-transform: uppercase;
}

.itinerary-wizard-steps span {
  align-items: center;
  background: #efe6dd;
  border-radius: 999px;
  color: var(--wine);
  display: inline-flex;
  flex: 0 0 auto;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.itinerary-wizard-steps li.is-active {
  background: #f4faf0;
  border-color: #93b895;
  color: #245737;
}

.itinerary-wizard-steps li.is-active span,
.itinerary-wizard-steps li.is-complete span {
  background: #245737;
  color: white;
}

.itinerary-wizard-message {
  background: #edf7ea;
  border: 1px solid #9fc5a6;
  border-radius: 8px;
  color: #245737;
  font-weight: 800;
  padding: 12px 14px;
}

.itinerary-wizard-message.is-error {
  background: #fff0f0;
  border-color: #d996a1;
  color: var(--wine);
}

.itinerary-wizard-panel {
  display: grid;
  gap: 18px;
}

.itinerary-wizard-panel[hidden] {
  display: none;
}

.itinerary-wizard-choice-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.itinerary-wizard-choice {
  background: #fffaf4;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  cursor: pointer;
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 24px;
  text-align: left;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.itinerary-wizard-choice strong {
  color: var(--wine-dark);
  font-family: Georgia, serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
}

.itinerary-wizard-choice span {
  color: #5e564f;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.itinerary-wizard-choice:hover,
.itinerary-wizard-choice:focus-visible,
.itinerary-wizard-choice.is-selected {
  background: #f4faf0;
  border-color: #2d6f43;
  box-shadow: 0 16px 34px rgba(36, 87, 55, 0.16);
  outline: none;
  transform: translateY(-1px);
}

.itinerary-compatible-bookings {
  background: #fbf8ef;
  border: 1px solid #d8c39e;
  border-radius: 9px;
  margin-top: 18px;
  padding: 18px;
}

.itinerary-compatible-bookings[hidden] {
  display: none;
}

.itinerary-compatible-booking-list,
.itinerary-booking-participant-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.itinerary-compatible-booking {
  align-items: flex-start;
  background: white;
  border: 1px solid #dfcfbb;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  gap: 10px;
  padding: 13px;
}

.itinerary-compatible-booking input {
  margin-top: 4px;
}

.itinerary-compatible-booking span,
.itinerary-booking-participant-list article > div {
  display: grid;
  gap: 3px;
}

.itinerary-compatible-booking small,
.itinerary-booking-participant-list article span {
  color: #665b52;
  line-height: 1.35;
}

.itinerary-booking-group-summary {
  color: #245737;
  font-weight: 900;
  margin: 14px 0 0;
}

.itinerary-booking-group-summary.is-error {
  color: var(--wine);
}

.itinerary-booking-participant-list {
  margin-bottom: 18px;
}

.itinerary-booking-participant-list[hidden] {
  display: none;
}

.itinerary-booking-participant-list article {
  background: #fffaf4;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.itinerary-booking-participant-list dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 10px;
  margin: 12px 0 0;
}

.itinerary-booking-participant-list dt {
  color: #75685e;
  font-weight: 800;
}

.itinerary-booking-participant-list dd {
  margin: 0;
}

.itinerary-shared-count {
  color: #245737;
  display: block;
  font-size: 11px;
  font-weight: 900;
  margin-top: 3px;
}

.itinerary-recipient-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.itinerary-recipient-tabs .button {
  align-items: flex-start;
  display: inline-flex;
  flex-direction: column;
}

.itinerary-recipient-tabs small {
  opacity: 0.8;
}

.route-manifest-section {
  margin: 18px 0;
}

.route-manifest-table td:last-child {
  max-width: 300px;
}

.itinerary-wizard-stop-layout {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) 320px;
}

.itinerary-wizard-current-stop {
  min-width: 0;
}

.itinerary-wizard-summary {
  background: #fffaf4;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  position: sticky;
  top: 20px;
}

.itinerary-wizard-summary h3 {
  color: var(--wine-dark);
  font-family: Georgia, serif;
  font-size: 24px;
  margin: 0 0 12px;
}

.itinerary-wizard-summary ol {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.itinerary-wizard-summary li {
  background: white;
  border: 1px solid #ead8c6;
  border-radius: 8px;
  display: grid;
  gap: 3px;
  padding: 10px 12px;
}

.itinerary-wizard-summary li strong {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.itinerary-wizard-summary li span {
  color: var(--wine);
  font-weight: 900;
}

.itinerary-wizard-summary li small,
.itinerary-wizard-note {
  color: #655b53;
  font-weight: 800;
}

.itinerary-wizard-note {
  margin: 6px 0 0;
}

.itinerary-planning-profit {
  background: linear-gradient(135deg, #fffaf4 0%, #f5f7ea 100%);
  border: 1px solid #c8ae7b;
  border-left: 5px solid var(--gold);
  border-radius: 10px;
  display: grid;
  gap: 16px;
  padding: 20px;
}

.itinerary-planning-profit-head {
  align-items: flex-start;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.itinerary-planning-profit-head h3 {
  color: var(--wine-dark);
  font-family: Georgia, serif;
  font-size: 28px;
  margin: 2px 0 5px;
}

.itinerary-planning-profit-head p:last-child {
  color: #61564e;
  margin: 0;
}

.itinerary-planning-profit-status {
  background: #e4f2e3;
  border: 1px solid #87ad8c;
  border-radius: 999px;
  color: #245737;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 7px 11px;
  text-transform: uppercase;
}

.itinerary-planning-profit-status.is-incomplete {
  background: #fff2df;
  border-color: #d8a54a;
  color: #79500c;
}

.itinerary-planning-profit-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.itinerary-planning-profit-grid > div {
  background: white;
  border: 1px solid #e4d4bd;
  border-radius: 8px;
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 12px;
}

.itinerary-planning-profit-grid span {
  color: #725f4e;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.itinerary-planning-profit-grid strong {
  color: var(--wine-dark);
  font-size: 21px;
  line-height: 1.1;
}

.itinerary-planning-profit-grid small {
  color: #6d6258;
  font-weight: 700;
  line-height: 1.3;
}

.itinerary-planning-profit-result.is-positive {
  background: #edf7ea;
  border-color: #86b28c;
}

.itinerary-planning-profit-result.is-negative {
  background: #fff0f0;
  border-color: #d996a1;
}

.itinerary-planning-profit-result.is-mixed,
.itinerary-planning-profit-result.is-incomplete {
  background: #fff8e9;
  border-color: #d9b76d;
}

.itinerary-planning-fees {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #e4d4bd;
  border-radius: 8px;
  padding: 13px 15px;
}

.itinerary-planning-fees h4 {
  color: var(--wine-dark);
  margin: 0 0 8px;
}

.itinerary-planning-fees ul {
  display: grid;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.itinerary-planning-fees li {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 12px;
  justify-content: space-between;
}

.itinerary-planning-fees li span {
  font-weight: 800;
}

.itinerary-planning-fees li strong {
  color: var(--wine);
}

.itinerary-planning-warning {
  background: #fff2df;
  border: 1px solid #d8a54a;
  border-radius: 8px;
  color: #79500c;
  font-weight: 800;
  margin: 0;
  padding: 10px 12px;
}

.itinerary-planning-warning[hidden] {
  display: none;
}

.itinerary-planning-caveat {
  color: #645a51;
  font-size: 13px;
  font-weight: 700;
  margin: 0;
}

.itinerary-wizard-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.itinerary-section-head {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.itinerary-section-head h2 {
  margin-bottom: 0;
}

.itinerary-stop-list {
  display: grid;
  gap: 14px;
}

.itinerary-stop-card {
  background: #fffaf4;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.itinerary-stop-head {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
}

.itinerary-stop-head span {
  color: var(--gold);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.itinerary-stop-head strong {
  color: var(--wine-dark);
  font-size: 20px;
}

.itinerary-stop-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.itinerary-stop-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.itinerary-wizard-current-stop .itinerary-stop-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.itinerary-wizard-type-field,
.itinerary-wizard-time-field {
  grid-column: span 1;
}

.itinerary-wizard-title-field {
  grid-column: span 3;
}

.itinerary-wizard-travel-field {
  grid-column: span 2;
}

.itinerary-wizard-travel-field[hidden] {
  display: none;
}

.itinerary-wizard-field-head {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.itinerary-wizard-field-head label {
  margin: 0;
}

.itinerary-wizard-estimate-button {
  font-size: 12px;
  min-height: 34px;
  padding: 8px 12px;
}

.itinerary-wizard-travel-selects {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.itinerary-wizard-travel-select {
  display: grid;
  gap: 6px;
}

.itinerary-wizard-travel-select span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.itinerary-typeahead {
  position: relative;
}

.itinerary-typeahead-results {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(33, 24, 18, 0.16);
  left: 0;
  max-height: 260px;
  overflow-y: auto;
  padding: 6px;
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  z-index: 30;
}

.itinerary-typeahead-option {
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: var(--text);
  cursor: pointer;
  display: block;
  font: inherit;
  padding: 10px 12px;
  text-align: left;
  width: 100%;
}

.itinerary-typeahead-option:hover,
.itinerary-typeahead-option:focus {
  background: #f4eadf;
  outline: none;
}

.itinerary-typeahead-option span {
  color: var(--wine);
  display: block;
  font-weight: 900;
}

.itinerary-typeahead-option small {
  color: var(--muted);
  display: block;
  font-size: 12px;
  line-height: 1.35;
  margin-top: 3px;
}

.itinerary-travel-controls {
  display: grid;
  gap: 14px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.itinerary-print-body {
  background:
    linear-gradient(rgba(239, 231, 220, 0.72), rgba(239, 231, 220, 0.88)),
    url("images/old-world-vineyard-light.jpg") center top / 100% auto no-repeat,
    #efe7dc;
  color: #221617;
  padding: 28px;
}

.itinerary-print-toolbar {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 0 auto 18px;
  max-width: 1080px;
}

.itinerary-print-toolbar .button,
.itinerary-print-toolbar button {
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.itinerary-print-toolbar .button:hover,
.itinerary-print-toolbar button:hover,
.itinerary-print-toolbar .button:focus-visible,
.itinerary-print-toolbar button:focus-visible {
  box-shadow: 0 10px 24px rgba(63, 23, 16, 0.16);
  transform: translateY(-1px);
}

.itinerary-print-toolbar .button.secondary:hover,
.itinerary-print-toolbar .button.secondary:focus-visible {
  background: rgba(143, 7, 48, 0.08);
}

.print-close-button {
  font-size: 15px;
  min-height: 50px;
  padding-left: 24px;
  padding-right: 24px;
}

.print-close-button:hover,
.print-close-button:focus-visible {
  background: #111516;
}

.print-close-help {
  background: #fff4cf;
  border: 1px solid #e4c35f;
  border-radius: 8px;
  color: #4f3810;
  display: none;
  font-weight: 700;
  margin: -6px auto 18px;
  max-width: 1080px;
  padding: 10px 14px;
  text-align: center;
}

.print-close-failed .print-close-help {
  display: block;
}

.print-sheet {
  background: #fffaf2;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(33, 24, 18, 0.18);
  margin: 0 auto;
  max-width: 1080px;
  padding: 36px;
}

.print-header {
  align-items: center;
  border-bottom: 3px solid var(--wine);
  display: grid;
  gap: 20px;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  margin-bottom: 24px;
  padding-bottom: 18px;
}

.print-logo {
  max-height: 112px;
  object-fit: contain;
  width: 170px;
}

.print-header h1 {
  color: var(--wine-dark);
  font-size: 48px;
  line-height: 0.95;
  margin: 0 0 8px;
}

.print-header p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  font-weight: 900;
  margin: 0;
}

.print-header-contact {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 170px;
  padding: 12px 14px;
  text-align: right;
}

.print-header-contact span,
.print-summary-card span,
.print-summary-meta span,
.print-booking-ref span {
  color: var(--gold);
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.print-header-contact strong {
  color: var(--wine-dark);
  display: block;
  font-size: 18px;
  line-height: 1.2;
}

.print-header-contact small {
  color: var(--muted);
  display: block;
  font-weight: 900;
  margin-top: 4px;
}

.print-header-contact a,
.print-footer a,
.print-gratuity a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.print-summary-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  margin-bottom: 22px;
}

.print-summary-card,
.print-client-card,
.print-gratuity,
.print-review {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.print-summary-card {
  padding: 14px 16px;
}

.print-tour-summary {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.print-summary-card strong,
.print-summary-meta strong,
.print-booking-ref strong {
  color: var(--wine-dark);
  display: block;
  line-height: 1.25;
}

.print-tour-summary > div:first-child strong {
  font-size: 20px;
}

.print-summary-meta,
.print-booking-ref {
  min-width: 150px;
  text-align: right;
}

.print-payment-status {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 8px;
}

.print-payment-status strong {
  border-radius: 999px;
  display: inline-flex;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 5px 10px;
  text-transform: uppercase;
}

.print-payment-status small {
  color: var(--muted);
  display: block;
  font-size: 11px;
  font-weight: 900;
}

.print-payment-status.is-paid strong {
  background: #e4f3e9;
  border: 1px solid #2b7044;
  color: #2b7044;
}

.print-payment-status.is-partial strong {
  background: #fff4cf;
  border: 1px solid #d89b2b;
  color: #8b5b00;
}

.print-payment-status.is-unpaid strong {
  background: #eee9e0;
  border: 1px solid #9b9287;
  color: #686056;
}

.print-summary-meta strong,
.print-booking-ref strong {
  font-size: 18px;
}

.print-driver-summary {
  align-items: center;
  display: grid;
  gap: 12px 22px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.print-driver-summary > span {
  grid-column: 1 / -1;
}

.print-driver-summary strong {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.print-driver-summary .print-driver-label {
  color: var(--muted);
  display: inline;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}

.print-driver-summary .print-driver-name {
  color: var(--wine-dark);
  display: inline;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.print-driver-summary p {
  color: var(--muted);
  font-weight: 900;
  margin: 0;
  text-align: right;
}

.print-driver-summary b {
  color: var(--wine-dark);
  font-size: 22px;
}

.print-client-card {
  margin-bottom: 22px;
  padding: 18px;
}

.print-client-card-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 22px;
}

.print-client-card-grid .print-client-card {
  margin-bottom: 0;
  min-width: 0;
}

.print-client-card-grid .print-client-card h2 {
  font-size: 24px;
}

.print-client-card-grid .detail-list {
  grid-template-columns: 74px minmax(0, 1fr);
}

.print-client-card-head,
.route-client-card-head {
  align-items: start;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 12px;
}

.print-client-card-head h2 {
  margin: 0;
}

.print-client-card h2,
.print-route h2,
.print-review h2 {
  color: var(--wine-dark);
  font-size: 28px;
  margin: 0 0 12px;
}

.print-route-table {
  border-collapse: collapse;
  margin-bottom: 22px;
  width: 100%;
}

.print-route-table th,
.print-route-table td {
  border-bottom: 1px solid var(--line);
  padding: 11px 8px;
  text-align: left;
  vertical-align: top;
}

.print-route-table th {
  color: var(--wine);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.print-route-table td:first-child {
  color: var(--wine);
  width: 90px;
}

.print-route-table .print-route-phone {
  width: 112px;
  white-space: nowrap;
}

.print-route-table .print-route-confirmation {
  width: 96px;
}

.print-route-table th:nth-child(5),
.print-route-table th:nth-child(6),
.print-route-table th:nth-child(7),
.print-route-table td:nth-child(5),
.print-route-table td:nth-child(6),
.print-route-table td:nth-child(7) {
  white-space: nowrap;
}

.print-route-table .print-route-confirmation {
  white-space: normal;
}

.print-route-table span {
  color: var(--muted);
}

.print-gratuity {
  margin-bottom: 22px;
  padding: 20px;
  text-align: center;
}

.print-gratuity p {
  color: var(--wine-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0;
}

.print-review {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) 170px;
  margin-bottom: 22px;
  padding: 18px;
}

.print-review p {
  color: var(--muted);
  margin: 0 0 8px;
}

.print-review a {
  color: var(--wine);
  overflow-wrap: anywhere;
}

.print-review img {
  justify-self: end;
  width: 160px;
}

.print-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--wine-dark);
  display: flex;
  flex-wrap: wrap;
  font-weight: 900;
  gap: 12px 24px;
  justify-content: center;
  padding-top: 16px;
}

.route-print-sheet {
  max-width: 1040px;
}

.trip-inspection-print-sheet {
  max-width: 980px;
}

.trip-inspection-print-sheet .print-header h1 {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 0;
}

.inspection-print-meta {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
}

.inspection-print-meta div,
.inspection-print-declaration div,
.inspection-print-notes,
.inspection-print-signature > div {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
}

.inspection-print-meta .wide {
  grid-column: span 3;
}

.inspection-print-meta span,
.inspection-print-declaration span,
.inspection-print-signature span {
  color: var(--gold);
  display: block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.inspection-print-meta strong,
.inspection-print-declaration strong,
.inspection-print-signature strong {
  color: var(--wine-dark);
  display: block;
  font-size: 15px;
  line-height: 1.2;
}

.inspection-print-checks {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 18px;
}

.inspection-print-checks table {
  border: 1px solid #2a2423;
  background: white;
}

.inspection-print-checks th,
.inspection-print-checks td {
  border: 1px solid #2a2423;
  padding: 5px 7px;
}

.inspection-print-checks th {
  background: #eee9df;
  color: #1f1717;
  text-align: center;
}

.inspection-print-checks th:first-child,
.inspection-print-checks td:first-child {
  text-align: left;
}

.inspection-print-checks th:nth-child(2),
.inspection-print-checks th:nth-child(3),
.inspection-print-checks td:nth-child(2),
.inspection-print-checks td:nth-child(3) {
  text-align: center;
  width: 52px;
}

.inspection-print-declaration {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
}

.inspection-print-declaration strong {
  font-size: 20px;
  text-align: center;
}

.inspection-print-notes {
  margin-bottom: 18px;
  min-height: 100px;
}

.inspection-print-notes h2 {
  color: var(--wine-dark);
  font-size: 22px;
  margin: 0 0 8px;
}

.inspection-print-notes p {
  margin: 0;
}

.inspection-print-signature {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
}

.inspection-print-signature img {
  display: block;
  max-height: 90px;
  max-width: 100%;
}

.route-top-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.05fr) 260px;
  margin-bottom: 24px;
}

.route-top-grid.route-top-grid-shared {
  grid-template-columns: minmax(0, 1fr) 260px;
}

.route-client-card-grid {
  margin-top: -4px;
}

.route-top-grid dl,
.route-identity-card dl,
.route-client-card dl {
  display: grid;
  gap: 6px 12px;
  grid-template-columns: 74px minmax(0, 1fr);
  margin: 12px 0 0;
}

.route-top-grid dt {
  color: var(--muted);
  font-weight: 900;
}

.route-top-grid dd {
  margin: 0;
}

.route-identity-card strong,
.route-client-card strong {
  color: var(--wine-dark);
  display: block;
  font-size: 22px;
  line-height: 1.15;
}

.route-client-card-head {
  margin-bottom: 0;
}

.route-qr-card {
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  padding: 16px;
  text-align: center;
}

.route-qr-card span,
.route-leg-section h2 {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.route-qr-card img {
  display: block;
  height: 210px;
  width: 210px;
}

.route-qr-card strong {
  color: var(--wine-dark);
  line-height: 1.2;
}

.route-qr-card a,
.route-leg-list a {
  color: var(--wine);
  font-weight: 900;
}

.route-schedule-table th:nth-child(7),
.route-schedule-table td:nth-child(7) {
  white-space: normal;
}

.route-leg-section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 22px;
  padding: 18px;
}

.route-leg-section h2 {
  margin: 0 0 6px;
}

.route-leg-section p {
  color: var(--muted);
  margin: 0 0 12px;
}

.route-leg-list {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.route-leg-list li {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 4px 12px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding-top: 8px;
}

.route-leg-list small {
  color: var(--muted);
  display: block;
  grid-column: 1;
}

.route-leg-list a {
  grid-column: 2;
  grid-row: 1 / span 2;
  white-space: nowrap;
}

.manager-view {
  background: transparent;
  border: 0;
  color: inherit;
  display: grid;
  gap: 4px;
  justify-items: start;
  padding: 0;
  text-align: left;
  text-transform: none;
}

.manager-view:hover strong,
.manager-view:focus-visible strong {
  color: var(--wine);
}

.manager-view span {
  color: #554945;
  line-height: 1.4;
}

.itinerary-view {
  grid-template-columns: 92px minmax(0, 1fr);
}

.addon-view {
  grid-template-columns: minmax(0, 1fr) auto;
  width: 100%;
}

.itinerary-view span:not(.manager-time) {
  grid-column: 2;
}

.manager-time {
  color: var(--wine);
  font-weight: 900;
}

.manager-map-status {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.manager-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.manager-edit-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(170px, 1fr) 150px;
}

.manager-empty {
  color: var(--muted);
  margin: 0;
}

.footer {
  background:
    linear-gradient(180deg, rgba(31, 30, 26, 0.82), rgba(31, 30, 26, 0.90)),
    url("images/old-world-vineyard-dark.jpg") center 82% / cover;
  border-top: 3px solid rgba(185, 139, 69, 0.64);
  color: #fff6e7;
  padding: 54px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 1.25fr;
  gap: 32px;
}

.footer img {
  height: auto;
  width: min(300px, 100%);
  filter: brightness(0) invert(1);
}

.footer a {
  align-items: center;
  color: #fff6e7;
  display: inline-flex;
  justify-content: flex-start;
  min-height: 40px;
  min-width: 44px;
}

.footer-link-grid {
  display: grid;
  gap: 10px 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-link-grid > div {
  display: grid;
  gap: 8px;
}

.footer-link-grid a {
  width: fit-content;
}

.policy-page a {
  align-items: center;
  display: inline-flex;
  min-height: 40px;
}

.policy-page h1 {
  color: var(--wine-dark);
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.95;
  margin: 10px 0 18px;
}

.policy-page .lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  max-width: 760px;
}

.policy-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.policy-card {
  padding: 24px;
}

.policy-full-card {
  margin-top: 34px;
}

.policy-terms-scroll {
  max-height: 620px;
}

.policy-card h2 {
  color: var(--wine-dark);
  font-size: 28px;
  line-height: 1.05;
  margin: 0 0 12px;
}

.policy-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 14px;
}

.policy-card p:last-child {
  margin-bottom: 0;
}

.square-card-container {
  min-height: 90px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 12px;
  margin: 16px 0 12px;
}

.payment-brand-row {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin: 18px 0 14px;
}

.tip-section {
  align-items: center;
  display: grid;
  min-height: 70vh;
}

.tip-payment-container {
  max-width: 1040px;
}

.tip-payment-panel {
  padding: clamp(24px, 4.6vw, 56px);
}

.tip-payment-panel h1 {
  margin-bottom: 14px;
  max-width: 760px;
}

.tip-payment-panel > p {
  max-width: 760px;
}

.tip-payment-form {
  margin-top: 18px;
  max-width: 820px;
}

.tip-payment-form .square-card-container {
  margin-top: 18px;
}

.tip-payment-form .payment-brand-row {
  max-width: 820px;
}

.subscription-billing-form {
  margin-top: 14px;
}

.checkbox-line {
  align-items: flex-start;
  color: var(--muted);
  display: flex;
  gap: 10px;
  line-height: 1.45;
  margin: 12px 0;
}

.checkbox-line input {
  margin-top: 3px;
}

.manual-phone-card-note {
  background: #f8efe7;
  border: 1px solid var(--line);
  border-left: 4px solid var(--wine);
  border-radius: 8px;
  color: #211917;
  margin: 10px 0 18px;
  padding: 12px 14px;
}

.manual-booking-payment-summary,
.manual-square-card {
  background: #fff8ef;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 14px 0;
  padding: 14px;
}

.manual-booking-payment-summary {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.manual-booking-payment-summary strong {
  color: var(--wine);
}

.manual-booking-payment-summary span {
  color: var(--muted);
  font-weight: 800;
}

.manual-booking-payment-summary small {
  color: var(--muted);
  flex-basis: 100%;
  font-weight: 800;
}

.manual-booking-payment-summary[hidden],
[data-manual-package-pricing][hidden],
[data-manual-custom-pricing][hidden],
[data-manual-addons-field][hidden],
.manual-square-card[hidden] {
  display: none !important;
}

.manual-square-card .payment-brand-row {
  margin-top: 0;
}

.payment-promo-form {
  align-items: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 18px 0;
  padding: 14px;
}

.payment-promo-form .field {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
}

.payment-promo-form button {
  grid-column: 2;
  grid-row: 1;
  min-height: 46px;
}

.square-lockup {
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(67, 44, 32, 0.08);
  color: #1f2324;
  display: inline-flex;
  gap: 10px;
  min-height: 50px;
  padding: 10px 13px;
}

.square-lockup strong,
.square-lockup small {
  display: block;
}

.square-lockup strong {
  font-size: 13px;
  line-height: 1.2;
}

.square-lockup small {
  color: var(--muted);
  font-size: 11px;
  margin-top: 2px;
}

.square-mark {
  background: #1f2324;
  border-radius: 5px;
  display: inline-block;
  height: 24px;
  position: relative;
  width: 24px;
}

.square-mark::after {
  border: 3px solid white;
  border-radius: 2px;
  content: "";
  height: 9px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
}

.card-brand-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-brand {
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 5px 14px rgba(67, 44, 32, 0.08);
  color: #111;
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  letter-spacing: 0.02em;
  min-width: 64px;
  overflow: hidden;
  padding: 0 10px;
  position: relative;
  text-transform: uppercase;
}

.card-brand.visa {
  color: #1a1f71;
  font-size: 15px;
  font-style: italic;
  letter-spacing: 0.04em;
}

.card-brand.mastercard {
  color: #1f2324;
  justify-content: flex-end;
  min-width: 92px;
  padding-left: 34px;
}

.card-brand.mastercard::before,
.card-brand.mastercard::after {
  border-radius: 999px;
  content: "";
  height: 20px;
  left: 9px;
  position: absolute;
  top: 6px;
  width: 20px;
}

.card-brand.mastercard::before {
  background: #eb001b;
}

.card-brand.mastercard::after {
  background: rgba(247, 158, 27, 0.86);
  left: 21px;
}

.card-brand.amex {
  background: #2e77bc;
  border-color: #2e77bc;
  color: white;
  font-size: 13px;
  letter-spacing: 0.05em;
}

.card-brand.discover {
  color: #222;
  min-width: 86px;
}

.card-brand.discover::after {
  background: linear-gradient(90deg, rgba(244, 139, 31, 0), rgba(244, 139, 31, 0.88), rgba(244, 139, 31, 0));
  bottom: -12px;
  content: "";
  height: 24px;
  left: 10px;
  position: absolute;
  right: 10px;
  transform: rotate(-4deg);
}

.payment-secure-copy {
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 10px;
}

.payment-helper {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  margin: -2px 0 16px;
}

.payment-assurance {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 16px 0 0;
  padding-left: 20px;
}

.faq-accordion {
  display: grid;
  gap: 0;
}

.faq-accordion details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding: 22px 0;
}

.faq-accordion summary {
  align-items: center;
  color: white;
  cursor: pointer;
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 900;
  gap: 18px;
  justify-content: space-between;
  line-height: 1.05;
  list-style: none;
}

.faq-accordion summary::-webkit-details-marker {
  display: none;
}

.faq-accordion summary::after {
  align-items: center;
  border: 2px solid var(--wine);
  border-radius: 999px;
  color: var(--wine);
  content: "+";
  display: inline-flex;
  flex: 0 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  line-height: 1;
  width: 34px;
}

.faq-accordion details[open] summary::after {
  content: "-";
}

.faq-accordion p {
  color: rgba(255, 255, 255, 0.84);
  margin: 16px 52px 0 0;
}

.blog-faq details.faq-accordion {
  background: #fffaf4;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
  margin-top: 14px;
  overflow: hidden;
  padding: 0;
}

.blog-faq .faq-accordion summary {
  color: var(--wine);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.15;
  padding: 18px 20px;
}

.blog-faq .faq-accordion p {
  color: #3f3230;
  line-height: 1.6;
  margin: 0;
  padding: 0 72px 20px 20px;
}

@media print {
  .no-print {
    display: none !important;
  }

  @page {
    margin: 0.25in;
  }

  @page trip-inspection-report {
    margin: 0.15in;
    size: Letter portrait;
  }

  body.laquinta-page {
    background: white;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  body.laquinta-page .promo,
  body.laquinta-page .site-header,
  body.laquinta-page .laquinta-campaign-section,
  body.laquinta-page .laquinta-offer-copy,
  body.laquinta-page .van-showcase-section,
  body.laquinta-page .banner,
  body.laquinta-page .footer {
    display: none !important;
  }

  body.laquinta-page .section,
  body.laquinta-page .laquinta-offer-section {
    background: white !important;
    border: 0 !important;
    padding: 0 !important;
  }

  body.laquinta-page .container,
  body.laquinta-page .laquinta-offer-grid {
    display: block !important;
    width: 100% !important;
  }

  body.laquinta-page .laquinta-voucher-card {
    background: white !important;
    border: 2px solid #004528;
    box-shadow: none;
    color: #111;
    margin: 0;
    min-height: 0;
    padding: 0.4in;
  }

  body.laquinta-page .laquinta-voucher-actions {
    display: none !important;
  }

  body.itinerary-print-body {
    background: white;
    padding: 0;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .itinerary-print-toolbar,
  .print-close-help {
    display: none;
  }

  .print-sheet {
    background: white;
    border: 0;
    box-shadow: none;
    font-size: 11.25px;
    max-width: none;
    padding: 0;
  }

  .print-header {
    gap: 14px;
    grid-template-columns: 112px minmax(0, 1fr) 145px;
    margin-bottom: 12px;
    padding-bottom: 11px;
  }

  .print-logo {
    max-height: 72px;
    width: 112px;
  }

  .print-header h1 {
    font-size: 38px;
    margin-bottom: 2px;
  }

  .print-header p:not(.eyebrow) {
    font-size: 13px;
  }

  .print-header .eyebrow {
    font-size: 9.5px;
    margin-bottom: 3px;
  }

  .print-header-contact {
    min-width: 0;
    padding: 8px 10px;
  }

  .print-header-contact span,
  .print-summary-card span,
  .print-summary-meta span,
  .print-booking-ref span {
    font-size: 9.25px;
  }

  .print-payment-status {
    gap: 2px;
    margin-top: 5px;
  }

  .print-payment-status strong {
    font-size: 8.75px;
    padding: 3px 6px;
  }

  .print-payment-status small {
    font-size: 8px;
  }

  .print-header-contact strong {
    font-size: 13.5px;
  }

  .print-header-contact small {
    font-size: 9.25px;
    margin-top: 3px;
  }

  .print-summary-grid {
    gap: 8px;
    margin-bottom: 10px;
  }

  .print-summary-card {
    padding: 9px 11px;
  }

  .print-tour-summary {
    gap: 16px;
  }

  .print-tour-summary > div:first-child strong,
  .print-summary-meta strong,
  .print-booking-ref strong {
    font-size: 13.5px;
  }

  .print-driver-summary {
    gap: 6px 16px;
  }

  .print-driver-summary .print-driver-label {
    font-size: 11.5px;
  }

  .print-driver-summary .print-driver-name,
  .print-driver-summary b {
    font-size: 16px;
  }

  .print-client-card {
    margin-bottom: 10px;
    padding: 10px 12px;
  }

  .print-client-card-head,
  .route-client-card-head {
    gap: 8px;
    margin-bottom: 7px;
  }

  .print-client-card h2,
  .print-route h2,
  .print-review h2 {
    font-size: 20px;
    margin-bottom: 7px;
  }

  .print-client-card .detail-list {
    gap: 4px 12px;
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .print-client-card .detail-list dt,
  .print-client-card .detail-list dd {
    font-size: 11px;
    line-height: 1.25;
  }

  .print-route-table {
    font-size: 10.25px;
    margin-bottom: 10px;
  }

  .print-route-table th,
  .print-route-table td {
    line-height: 1.22;
    padding: 5px 6px;
  }

  .print-route-table th {
    font-size: 8.5px;
  }

  .print-route-table td:first-child {
    width: 54px;
  }

  .print-route-table .print-route-confirmation {
    width: 54px;
  }

  .print-route-table .print-route-phone {
    width: 64px;
  }

  .print-route-table td:nth-child(5),
  .print-route-table td:nth-child(6) {
    width: 50px;
  }

  .print-route-table td:nth-child(7) {
    width: 42px;
  }

  .route-print-sheet {
    max-width: none;
  }

  .route-top-grid {
    gap: 8px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 124px;
    margin-bottom: 10px;
  }

  .route-top-grid.route-top-grid-shared {
    grid-template-columns: minmax(0, 1fr) 124px;
  }

  .route-top-grid dl,
  .route-identity-card dl,
  .route-client-card dl {
    gap: 3px 7px;
    grid-template-columns: 48px minmax(0, 1fr);
    margin-top: 7px;
  }

  .route-top-grid dt,
  .route-top-grid dd {
    font-size: 9.75px;
    line-height: 1.2;
  }

  .route-identity-card strong,
  .route-client-card strong {
    font-size: 13.5px;
  }

  .route-qr-card {
    gap: 4px;
    padding: 8px;
  }

  .route-qr-card span {
    font-size: 8.5px;
  }

  .route-qr-card img {
    height: 94px;
    width: 94px;
  }

  .route-qr-card strong,
  .route-qr-card a {
    font-size: 9.25px;
    line-height: 1.15;
  }

  .route-schedule-table {
    font-size: 9.25px;
  }

  .route-schedule-table th:nth-child(7),
  .route-schedule-table td:nth-child(7) {
    width: 150px;
  }

  .route-leg-section {
    margin-bottom: 10px;
    padding: 10px;
  }

  .route-leg-section h2 {
    font-size: 9px;
  }

  .route-leg-section p,
  .route-leg-list li,
  .route-leg-list small,
  .route-leg-list a {
    font-size: 8.75px;
    line-height: 1.18;
  }

  .route-leg-list {
    gap: 4px;
  }

  .route-leg-list li {
    gap: 2px 8px;
    padding-top: 5px;
  }

  .print-gratuity {
    margin-bottom: 10px;
    padding: 10px;
  }

  .print-gratuity p {
    font-size: 16px;
    line-height: 1.18;
  }

  .print-review {
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) 90px;
    margin-bottom: 10px;
    padding: 10px;
  }

  .print-review p,
  .print-review a {
    font-size: 9.75px;
    line-height: 1.25;
  }

  .print-review img {
    width: 86px;
  }

  .print-footer {
    font-size: 10px;
    gap: 5px 16px;
    padding-top: 8px;
  }

  .trip-inspection-print-sheet {
    font-size: 12px;
    page: trip-inspection-report;
  }

  .trip-inspection-print-sheet .print-header h1 {
    font-size: 34px;
  }

  .inspection-print-meta {
    gap: 7px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 10px;
  }

  .inspection-print-meta div,
  .inspection-print-declaration div,
  .inspection-print-notes,
  .inspection-print-signature > div {
    border-radius: 0;
    padding: 7px 8px;
  }

  .inspection-print-meta span,
  .inspection-print-declaration span,
  .inspection-print-signature span {
    font-size: 8.5px;
    margin-bottom: 2px;
  }

  .inspection-print-meta strong,
  .inspection-print-declaration strong,
  .inspection-print-signature strong {
    font-size: 11.25px;
  }

  .inspection-print-checks {
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 10px;
  }

  .inspection-print-checks th,
  .inspection-print-checks td {
    font-size: 10.5px;
    line-height: 1.25;
    padding: 4px 5px;
  }

  .inspection-print-checks th:nth-child(2),
  .inspection-print-checks th:nth-child(3),
  .inspection-print-checks td:nth-child(2),
  .inspection-print-checks td:nth-child(3) {
    width: 36px;
  }

  .inspection-print-declaration {
    gap: 7px;
    margin-bottom: 10px;
  }

  .inspection-print-declaration strong {
    font-size: 17px;
  }

  .inspection-print-notes {
    margin-bottom: 10px;
    min-height: 112px;
  }

  .inspection-print-notes h2 {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .inspection-print-signature {
    gap: 7px;
  }

  .inspection-print-signature > div {
    min-height: 54px;
  }

  .inspection-print-signature img {
    max-height: 68px;
  }

  .print-header,
  .print-header-contact,
  .print-summary-card,
  .inspection-print-meta div,
  .inspection-print-checks table,
  .inspection-print-declaration div,
  .inspection-print-notes,
  .inspection-print-signature > div,
  .print-client-card,
  .print-gratuity,
  .print-review {
    break-inside: avoid;
  }

  .print-route-table tr {
    break-inside: avoid;
  }
}

@media screen and (max-width: 900px) {
  .print-client-card-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 10px;
    justify-content: space-between;
    padding: 8px 12px;
  }

  .logo {
    height: auto;
    width: 98px;
  }

  .nav-actions {
    display: flex;
  }

  .nav-book-button {
    background: var(--vine);
    border: 1px solid var(--vine);
    box-shadow: 0 8px 18px rgba(47, 107, 63, 0.16);
    color: white;
    display: inline-flex;
    font-size: 12px;
    min-height: 44px;
    padding: 9px 11px;
    white-space: nowrap;
  }

  .nav-book-button:hover,
  .nav-book-button:focus-visible {
    background: var(--vine-dark);
    border-color: var(--vine-dark);
  }

  .nav-menu-toggle {
    background: #fffaf2;
    border: 1px solid var(--line);
    color: #464342;
    display: inline-flex;
    font-size: 14px;
    min-height: 44px;
    padding: 9px 11px;
    text-transform: none;
    white-space: nowrap;
  }

  .nav-links {
    align-items: stretch;
    background: #fffaf2;
    border-top: 1px solid rgba(67, 1, 15, 0.08);
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    font-size: 15px;
    gap: 0;
    margin-left: 0;
    padding-top: 4px;
    width: 100%;
  }

  .site-header.is-menu-open .nav-links {
    display: flex;
  }

  .nav-links a {
    border-bottom: 1px solid rgba(67, 1, 15, 0.08);
    justify-content: flex-start;
    min-height: 48px;
    padding: 12px 8px;
    width: 100%;
  }

  .nav-links a:not(.button) {
    padding: 12px 8px;
  }

  .nav-links .nav-book-link {
    display: none;
  }

  .hero-grid,
  .seo-landing-hero-grid,
  .blog-hero-grid,
  .blog-article-layout,
  .region-hero-grid,
  .seo-content-grid,
  .tour-host-layout,
  .region-tour-grid,
  .region-tour-cta,
  .experience-cta,
  .van-showcase,
  .route-map-card,
  .tour-highlights-layout,
  .booking-layout,
  .region-tour-layout,
  .region-facts,
  .package-card-grid,
  .region-manager-grid,
  .vehicle-manager-grid,
  .vehicle-card-grid,
  .driver-card-grid,
  .driver-dashboard-actions,
  .inspection-mode-grid,
  .trip-inspection-grid,
  .inspection-print-meta,
  .inspection-print-checks,
  .inspection-print-declaration,
  .inspection-print-signature,
  .winery-filter-grid,
  .admin-detail-grid,
  .admin-stats,
  .expense-total-grid,
  .route-top-grid,
  .policy-grid,
  .form-grid,
  .grid.three,
  .grid.four,
  .grid.two,
  .company-story-layout,
  .home-region-links-layout,
  .laquinta-offer-grid,
  .laquinta-rooms-layout,
  .landing-facts-grid,
  .trust-grid,
  .buyer-pathway-grid,
  .footer-grid,
  .app-shell {
    grid-template-columns: 1fr;
  }

  .blog-grid,
  .blog-grid-featured {
    grid-template-columns: 1fr;
  }

  .home-region-link-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .laquinta-campaign-section {
    padding: 18px 0 28px;
  }

  .laquinta-poster {
    width: min(100%, 760px);
  }

  .laquinta-offer-copy h1 {
    font-size: clamp(38px, 10vw, 58px);
  }

  .laquinta-voucher-card {
    background-position: right 18px top 18px;
    background-size: 34% auto;
  }

  .laquinta-rooms-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .laquinta-room-photo-featured {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 380px;
  }

  .laquinta-room-photo-small {
    min-height: 250px;
  }

  .blog-list-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-list-head p {
    max-width: none;
    text-align: left;
  }

  .winery-search-form {
    align-items: stretch;
    flex-direction: column;
  }

  .winery-search-form .button {
    justify-content: center;
    width: 100%;
  }

  .winery-region-filter {
    align-items: flex-start;
  }

  .winery-region-filter-label {
    flex-basis: 100%;
  }

  .blog-post-hero {
    padding: 58px 0;
  }

  .blog-article-hero {
    aspect-ratio: 16 / 10;
  }

  .blog-sidebar {
    position: static;
  }

  .winery-gallery-grid,
  .winery-detail-list {
    grid-template-columns: 1fr;
  }

  .winery-detail-list > div {
    padding-right: 0;
  }

  .seo-landing-links {
    position: static;
  }

  .company-story-copy h2 {
    font-size: clamp(38px, 10vw, 58px);
  }

  .company-story-panel {
    padding: 22px;
  }

  .tour-host-gallery {
    grid-template-columns: 1fr;
  }

  .tour-host-image-primary,
  .tour-host-image-small {
    grid-row: auto;
    min-height: auto;
  }

  .tour-host-image-primary img,
  .tour-host-image-small img {
    aspect-ratio: auto;
    display: block;
    height: auto;
    object-fit: contain;
  }

  .region-tour-cta-actions {
    justify-content: flex-start;
  }

  .booking-guests-row {
    max-width: none;
  }

  .payment-promo-form {
    grid-template-columns: 1fr;
  }

  .terms-scroll-block {
    max-height: 280px;
  }

  .policy-terms-scroll {
    max-height: 520px;
  }

  .admin-booking-calendar {
    overflow-x: hidden;
    padding: 14px;
  }

  .admin-calendar-head {
    gap: 8px;
    grid-template-columns: 40px minmax(0, 1fr) 40px;
  }

  .admin-calendar-head h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .admin-calendar-head p {
    font-size: 12px;
    line-height: 1.35;
  }

  .admin-calendar-nav {
    font-size: 28px;
    height: 40px;
    width: 40px;
  }

  .admin-calendar-legend {
    display: grid;
    font-size: 11px;
    gap: 8px 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-calendar-legend span {
    min-width: 0;
  }

  .admin-calendar-weekdays,
  .admin-calendar-grid {
    gap: 4px;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    min-width: 0;
  }

  .admin-calendar-weekdays {
    font-size: 9px;
    letter-spacing: 0;
  }

  .admin-calendar-day {
    border-radius: 7px;
    gap: 3px;
    min-height: 58px;
    padding: 5px 3px;
  }

  .admin-calendar-date {
    align-items: center;
    display: grid;
    justify-content: center;
    text-align: center;
  }

  .admin-calendar-date small {
    display: none;
  }

  .admin-calendar-date strong {
    font-size: 18px;
  }

  .admin-calendar-badge {
    display: none;
  }

  .admin-calendar-metrics {
    font-size: 9px;
    line-height: 1.08;
    text-align: center;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(15, 12, 14, 0.78), rgba(15, 12, 14, 0.35)),
      var(--hero-image-mobile, var(--hero-image, url("../images/hero-vineyard-mobile.jpg"))) center / cover;
    min-height: auto;
    padding: 42px 0;
  }

  .home-original-hero {
    background:
      linear-gradient(180deg, rgba(244, 235, 220, 0.72), rgba(244, 235, 220, 0.92)),
      url("images/old-world-vineyard-light.jpg") center center / cover no-repeat,
      #f2e4d0;
    padding: 14px 0 22px;
  }

  .home-original-hero .container {
    width: min(100% - 16px, 1180px);
  }

  .home-original-hero-art {
    background-color: #f8ecd9;
    background-size: 100% auto;
    padding: clamp(184px, 48vw, 232px) 18px 22px;
  }

  .home-original-hero-panel {
    gap: 10px;
  }

  .home-original-hero-panel p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.36;
  }

  .home-original-hero-actions .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(44px, 13vw, 64px);
  }

  h2 {
    font-size: clamp(34px, 10vw, 52px);
  }

  .section {
    padding: 58px 0;
  }

  .section.login-section {
    min-height: calc(100svh - 102px);
    padding: 44px 0;
  }

  .region-tour-index-section {
    padding-top: 34px;
  }

  .region-tour-index-section .section-head {
    margin-bottom: 18px;
  }

  .region-tour-groups {
    gap: 28px;
  }

  .region-title-row {
    min-height: 50px;
  }

  .region-title-art {
    width: min(320px, 100%);
  }

  .region-tour-cta {
    padding: 18px;
  }

  .region-tour-cta h3 {
    font-size: 25px;
  }

  .content {
    padding: 22px;
  }

  .admin-body {
    padding-top: 62px;
  }

  .admin-body.admin-nav-open {
    overflow: hidden;
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-mobile-menu-button {
    align-items: center;
    background: var(--admin-nav-active-bg);
    border: 1px solid rgba(255, 248, 237, 0.38);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(40, 24, 12, 0.24);
    color: #fff8ed;
    display: inline-flex;
    font-weight: 900;
    gap: 8px;
    left: 12px;
    min-height: 44px;
    padding: 9px 13px;
    position: fixed;
    text-transform: uppercase;
    top: 10px;
    z-index: 1120;
  }

  .admin-mobile-menu-button .material-symbols-outlined {
    color: currentColor;
    font-size: 22px;
  }

  .admin-mobile-menu-button:focus-visible {
    outline: 3px solid rgba(197, 168, 89, 0.55);
    outline-offset: 3px;
  }

  .admin-nav-backdrop {
    background: rgba(20, 18, 14, 0.56);
    display: block;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity 0.18s ease;
    z-index: 1080;
  }

  .admin-nav-open .admin-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .sidebar {
    box-shadow: 18px 0 34px rgba(20, 18, 14, 0.28);
    height: 100dvh;
    left: 0;
    max-width: 320px;
    padding: 22px;
    position: fixed;
    top: 0;
    transform: translateX(-104%);
    transition: transform 0.2s ease, visibility 0s linear 0.2s;
    visibility: hidden;
    width: min(84vw, 320px);
    z-index: 1100;
  }

  .admin-nav-open .sidebar {
    transform: translateX(0);
    transition: transform 0.2s ease;
    visibility: visible;
  }

  .sidebar .sidebar-brand {
    margin-bottom: 18px;
    margin-top: 40px;
  }

  .sidebar .sidebar-brand img {
    max-width: 190px;
  }

  .admin-content {
    overflow-x: hidden;
    padding: 22px 16px;
  }

  .admin-page-title {
    gap: 12px;
  }

  .admin-title-icon {
    flex-basis: 46px;
    font-size: 28px;
    height: 46px;
    width: 46px;
  }

  .handbook-layout {
    grid-template-columns: 1fr;
  }

  .handbook-chapter-nav {
    display: flex;
    margin: 0 -16px;
    overflow-x: auto;
    padding: 12px 16px;
    position: relative;
    top: auto;
  }

  .handbook-nav-title {
    align-items: center;
    display: inline-flex;
    flex: 0 0 auto;
  }

  .handbook-chapter-nav a {
    flex: 0 0 220px;
    min-height: 70px;
  }

  .handbook-chapter {
    padding: 22px;
  }

  .handbook-uniform-gallery {
    grid-template-columns: 1fr;
  }

  .handbook-uniform-gallery img {
    aspect-ratio: 16 / 11;
  }

  .handbook-review-card {
    grid-template-columns: 1fr;
  }

  .handbook-review-card img {
    height: 120px;
    width: 120px;
  }

  .admin-page-head,
  .admin-section-head,
  .admin-actions,
  .expense-destination-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .manager-entry-inline,
  .itinerary-entry,
  .itinerary-stop-grid,
  .itinerary-wizard-choice-grid,
  .itinerary-wizard-stop-layout,
  .itinerary-travel-controls,
  .print-header,
  .print-meta-grid,
  .print-review,
  .addon-entry,
  .manager-map-fields,
  .manager-item,
  .manager-edit-grid,
  .addon-edit-grid,
  .itinerary-view {
    grid-template-columns: 1fr;
  }

  .itinerary-section-head,
  .print-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .itinerary-stop-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .itinerary-stop-actions {
    justify-content: flex-start;
  }

  .itinerary-wizard-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .itinerary-wizard-choice {
    min-height: 120px;
    padding: 18px;
  }

  .itinerary-wizard-current-stop .itinerary-stop-grid {
    grid-template-columns: 1fr;
  }

  .itinerary-compatible-booking-list,
  .itinerary-booking-participant-list {
    grid-template-columns: 1fr;
  }

  .itinerary-wizard-type-field,
  .itinerary-wizard-title-field,
  .itinerary-wizard-time-field,
  .itinerary-wizard-travel-field {
    grid-column: 1 / -1;
  }

  .itinerary-wizard-field-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .itinerary-wizard-estimate-button {
    width: 100%;
  }

  .itinerary-wizard-summary {
    position: static;
  }

  .itinerary-planning-profit-head {
    flex-direction: column;
  }

  .itinerary-planning-profit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .itinerary-print-body {
    padding: 14px;
  }

  .print-sheet {
    padding: 22px;
  }

  .print-header,
  .print-summary-grid,
  .print-tour-summary,
  .print-driver-summary,
  .inspection-print-meta .wide {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .print-header-contact,
  .print-summary-meta,
  .print-booking-ref,
  .print-driver-summary p {
    text-align: left;
  }

  .print-payment-status {
    align-items: flex-start;
  }

  .print-client-card-head,
  .route-client-card-head {
    grid-template-columns: 1fr;
  }

  .print-review img {
    justify-self: start;
  }

  .client-itinerary-body .print-sheet {
    max-width: 680px;
    width: 100%;
  }

  .client-itinerary-body .print-header-copy,
  .client-itinerary-body .print-header-contact,
  .client-itinerary-body .print-summary-card,
  .client-itinerary-body .print-client-card,
  .client-itinerary-body .print-gratuity,
  .client-itinerary-body .print-review,
  .client-itinerary-body .print-footer {
    overflow-wrap: anywhere;
  }

  .client-itinerary-body .client-route-table,
  .client-itinerary-body .client-route-table tbody,
  .client-itinerary-body .client-route-table tr,
  .client-itinerary-body .client-route-table td {
    display: block;
  }

  .client-itinerary-body .client-route-table {
    border-collapse: separate;
    border-spacing: 0;
  }

  .client-itinerary-body .client-route-table thead {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }

  .client-itinerary-body .client-route-table tbody {
    display: grid;
    gap: 12px;
  }

  .client-itinerary-body .client-route-table tr {
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 26px rgba(33, 24, 18, 0.10);
    overflow: hidden;
  }

  .client-itinerary-body .client-route-table td,
  .client-itinerary-body .client-route-table td:first-child,
  .client-itinerary-body .client-route-table td:nth-child(5),
  .client-itinerary-body .client-route-table td:nth-child(6),
  .client-itinerary-body .client-route-table td:nth-child(7) {
    align-items: start;
    border-bottom: 1px solid rgba(208, 184, 143, 0.68);
    color: #221617;
    display: grid;
    gap: 10px;
    grid-template-columns: 78px minmax(0, 1fr);
    line-height: 1.35;
    padding: 10px 12px;
    white-space: normal;
    width: auto;
  }

  .client-itinerary-body .client-route-table td:last-child {
    border-bottom: 0;
  }

  .client-itinerary-body .client-route-table td::before {
    color: var(--gold);
    content: attr(data-label);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .client-itinerary-body .client-route-table td:first-child {
    background: #f7efdf;
    color: var(--wine);
    font-weight: 900;
  }

  .client-itinerary-body .client-route-table .print-route-location {
    grid-template-columns: 1fr;
  }

  .client-itinerary-body .client-route-table .print-route-location::before {
    margin-bottom: -3px;
  }

  .client-itinerary-body .client-route-table .print-route-location strong {
    color: var(--wine-dark);
    display: block;
    font-size: 16px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .client-itinerary-body .client-route-table span {
    display: block;
    margin-top: 3px;
    overflow-wrap: anywhere;
  }

  .package-manager-grid [data-inclusion-manager],
  .package-manager-grid [data-addon-manager] {
    grid-column: auto;
    grid-row: auto;
  }

  .itinerary-view span:not(.manager-time) {
    grid-column: 1;
  }

  .detail-list {
    grid-template-columns: 1fr;
  }

  .admin-table {
    display: block;
    overflow-x: auto;
  }

  .dashboard-kpi-grid,
  .dashboard-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .dashboard-kpi-card {
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: 96px;
    padding: 14px;
  }

  .dashboard-kpi-icon {
    font-size: 26px;
    height: 46px;
    width: 46px;
  }

  .dashboard-panel,
  .dashboard-panel-wide,
  .dashboard-panel-large {
    grid-column: auto;
    min-width: 0;
    overflow: hidden;
    padding: 16px;
  }

  .dashboard-panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .dashboard-panel-head h2 {
    font-size: 21px;
  }

  .dashboard-line-chart {
    min-height: 210px;
    min-width: 0;
    overflow: hidden;
  }

  .dashboard-line-chart svg {
    height: 176px;
    min-width: 0;
    overflow: hidden;
  }

  .dashboard-chart-labels {
    font-size: 9px;
  }

  .dashboard-chart-labels span {
    max-width: 50px;
  }

  .dashboard-bar-chart {
    gap: 7px;
    grid-template-columns: repeat(var(--dashboard-chart-points, 12), minmax(42px, 1fr));
    height: 210px;
    min-width: 0;
    overflow-x: auto;
  }

  .dashboard-bar-item small {
    white-space: normal;
  }

  .dashboard-driver-row {
    grid-template-columns: minmax(72px, 110px) minmax(0, 1fr) 24px;
  }

  .dashboard-region-row div,
  .dashboard-total-row {
    grid-template-columns: minmax(0, 1fr) 42px 28px;
  }

  .dashboard-table-scroll {
    overflow-x: visible;
  }

  .booking-list-table,
  .dashboard-booking-table,
  .itinerary-list-table {
    border-collapse: separate;
    border-spacing: 0;
    display: block;
    min-width: 0;
    overflow: visible;
    width: 100%;
  }

  .booking-list-table thead,
  .dashboard-booking-table thead,
  .itinerary-list-table thead {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }

  .booking-list-table tbody,
  .dashboard-booking-table tbody,
  .itinerary-list-table tbody {
    display: grid;
    gap: 12px;
  }

  .booking-list-table tr,
  .dashboard-booking-table tr,
  .itinerary-list-table tr {
    background: rgba(255, 252, 246, 0.94);
    border: 1px solid #dfcbb6;
    border-radius: 8px;
    display: grid;
    overflow: hidden;
  }

  .booking-list-table td,
  .dashboard-booking-table td,
  .itinerary-list-table td {
    align-items: start;
    border-bottom: 1px solid rgba(223, 203, 182, 0.86);
    display: grid;
    gap: 8px;
    grid-template-columns: 84px minmax(0, 1fr);
    line-height: 1.35;
    padding: 10px 12px;
    white-space: normal;
  }

  .booking-list-table td::before,
  .dashboard-booking-table td::before,
  .itinerary-list-table td::before {
    color: #9a7a35;
    content: attr(data-label);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .booking-list-table td:first-child,
  .dashboard-booking-table td:first-child,
  .itinerary-list-table td:first-child {
    background: #f7efdf;
    font-size: 16px;
    font-weight: 900;
  }

  .booking-list-table td:last-child,
  .dashboard-booking-table td:last-child,
  .itinerary-list-table td:last-child {
    border-bottom: 0;
    display: block;
  }

  .booking-list-table td[data-label=""]::before,
  .dashboard-booking-table td[data-label=""]::before,
  .itinerary-list-table td[data-label=""]::before {
    display: none;
  }

  .booking-list-table td:last-child .button,
  .dashboard-booking-table td:last-child .button,
  .itinerary-list-table td:last-child .button {
    justify-content: center;
    width: 100%;
  }

  .booking-list-table .empty-table-cell,
  .dashboard-booking-table .empty-table-cell,
  .itinerary-list-table .empty-table-cell {
    display: block;
  }

  .itinerary-list-table td.itinerary-actions {
    align-items: stretch;
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    min-width: 0;
  }

  .itinerary-list-table td.itinerary-actions form {
    display: contents;
  }

  .itinerary-list-table td.itinerary-actions .itinerary-action {
    min-height: 42px;
    min-width: 0;
    width: 100%;
  }

  .trip-check-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .trip-check-row label,
  .trip-check-row span {
    justify-content: flex-start;
  }

  .route-map {
    height: 360px;
    min-height: 360px;
  }

  .route-map-panel {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 20px;
  }

  .region-included-card {
    position: static;
  }

  .booking-section {
    scroll-margin-top: 280px;
  }

  body.tour-detail-page {
    padding-bottom: 82px;
  }

  body.tour-detail-page .booking-section {
    scroll-margin-top: 92px;
  }

  .tour-detail-hero,
  .region-tour-hero {
    min-height: auto;
    padding: 34px 0;
  }

  .region-tour-hero .hero-actions .button {
    justify-content: center;
    width: 100%;
  }

  .region-tour-hero .hero-trust-badges {
    display: none;
  }

  .region-hero-sales-line {
    font-size: 17px;
    line-height: 1.35;
  }

  .region-tour-hero .region-price-card {
    display: none;
  }

  .package-purchase-section {
    padding: 26px 0 44px;
  }

  .package-purchase-layout {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .package-booking-card {
    max-height: none;
    order: -1;
    overflow: visible;
    padding: 16px;
    position: static;
  }

  .package-detail-panel {
    gap: 14px;
  }

  .package-detail-panel h2 {
    font-size: clamp(31px, 9vw, 44px);
  }

  .package-detail-panel p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.55;
  }

  .package-included-card {
    padding: 16px;
  }

  .package-included-card ul,
  .region-booking-summary .package-included-card ul {
    columns: 1;
  }

  .package-route-reassurance {
    padding: 16px;
  }

  .package-route-reassurance strong {
    font-size: 22px;
  }

  .package-private-group-perk {
    padding: 16px;
  }

  .mobile-booking-bar {
    align-items: center;
    background: rgba(255, 250, 242, 0.97);
    border: 1px solid rgba(226, 210, 191, 0.98);
    border-radius: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    box-shadow: 0 14px 34px rgba(42, 23, 18, 0.22);
    display: flex;
    gap: 10px;
    justify-content: space-between;
    left: 10px;
    padding: 8px;
    position: fixed;
    right: 10px;
    z-index: 2800;
  }

  .mobile-booking-price {
    display: grid;
    flex: 1 1 auto;
    gap: 1px;
    min-width: 0;
  }

  .mobile-booking-label,
  .mobile-booking-unit {
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .mobile-required-fee {
    background: #ffedb3;
    border: 1px solid #a56d08;
    border-radius: 4px;
    color: #5c160f;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    margin-top: 3px;
    padding: 4px 5px;
  }

  .mobile-booking-price strong {
    align-items: baseline;
    color: var(--wine-dark);
    display: flex;
    flex-wrap: wrap;
    font-size: 18px;
    gap: 3px 6px;
    line-height: 1.05;
  }

  .mobile-booking-price .price-current,
  .mobile-booking-price .price-sale {
    color: var(--wine-dark);
    font-size: inherit;
    letter-spacing: 0;
    text-transform: none;
  }

  .mobile-booking-price .price-original {
    font-size: 13px;
    letter-spacing: 0;
    text-transform: none;
  }

  .mobile-booking-price .price-original::after {
    height: 2px;
  }

  .mobile-booking-bar .button {
    background: var(--vine);
    flex: 0 0 auto;
    min-height: 42px;
    padding: 8px 12px;
    white-space: nowrap;
  }

  .mobile-booking-bar .button:hover,
  .mobile-booking-bar .button:focus-visible {
    background: var(--vine-dark);
  }

  .dashboard-source-layout {
    grid-template-columns: 1fr;
  }

  .dashboard-donut {
    margin: 0 auto;
    max-width: 190px;
    width: 100%;
  }

  .dashboard-date-pill,
  .dashboard-scope-form {
    width: 100%;
  }

  .faq-accordion summary {
    align-items: flex-start;
    font-size: 24px;
  }

  .faq-accordion p {
    margin-right: 0;
  }
}

@media screen and (max-width: 520px) {
  .admin-content {
    padding-left: 10px;
    padding-right: 10px;
  }

  .itinerary-planning-profit {
    padding: 15px;
  }

  .itinerary-planning-profit-grid {
    grid-template-columns: 1fr;
  }

  .admin-page-head {
    gap: 14px;
  }

  .dashboard-kpi-grid,
  .dashboard-grid {
    gap: 12px;
  }

  .dashboard-panel,
  .dashboard-panel-wide,
  .dashboard-panel-large {
    padding: 14px;
  }

  .dashboard-line-chart {
    min-height: 192px;
  }

  .dashboard-line-chart svg {
    height: 160px;
  }

  .dashboard-bar-chart {
    height: 190px;
  }

  .booking-list-table td,
  .dashboard-booking-table td,
  .itinerary-list-table td {
    grid-template-columns: 72px minmax(0, 1fr);
    padding: 10px;
  }

  .dashboard-upcoming-list a {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .dashboard-upcoming-list b {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }

  .client-itinerary-body {
    background: #efe7dc;
    padding: 0;
  }

  .client-itinerary-body .client-itinerary-toolbar {
    background: rgba(239, 231, 220, 0.96);
    margin: 0;
    padding: 8px 10px;
  }

  .client-itinerary-body .client-itinerary-toolbar button {
    justify-content: center;
    min-height: 44px;
    width: 100%;
  }

  .client-itinerary-body .print-sheet {
    border-left: 0;
    border-right: 0;
    box-shadow: none;
    padding: 16px;
  }

  .client-itinerary-body .print-header {
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 14px;
  }

  .client-itinerary-body .print-logo {
    max-height: 74px;
    width: 112px;
  }

  .client-itinerary-body .print-header h1 {
    font-size: 36px;
  }

  .client-itinerary-body .print-tour-summary {
    gap: 10px;
  }

  .client-itinerary-body .print-summary-card,
  .client-itinerary-body .print-client-card,
  .client-itinerary-body .print-review,
  .client-itinerary-body .print-gratuity {
    padding: 14px;
  }

  .client-itinerary-body .print-client-card h2,
  .client-itinerary-body .print-route h2,
  .client-itinerary-body .print-review h2 {
    font-size: 24px;
  }

  .client-itinerary-body .client-route-table td,
  .client-itinerary-body .client-route-table td:first-child,
  .client-itinerary-body .client-route-table td:nth-child(5),
  .client-itinerary-body .client-route-table td:nth-child(6),
  .client-itinerary-body .client-route-table td:nth-child(7) {
    gap: 8px;
    grid-template-columns: 70px minmax(0, 1fr);
    padding: 9px 10px;
  }

  .client-itinerary-body .client-route-table .print-route-location {
    grid-template-columns: 1fr;
  }

  .client-itinerary-body .print-gratuity p {
    font-size: 20px;
  }

  .client-itinerary-body .print-review img {
    width: 132px;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .promo {
    font-size: 13px;
    gap: 5px 8px;
    padding: 6px 10px;
  }

  .promo.has-mobile-summary .promo-message {
    display: none;
  }

  .promo.has-mobile-summary .promo-mobile-message {
    display: block;
  }

  .promo strong {
    border-radius: 5px;
    font-size: 13px;
    padding: 4px 8px;
  }

  .nav-links {
    font-size: 15px;
  }

  .nav {
    padding: 7px 10px;
  }

  .logo {
    width: 88px;
  }

  .nav-actions {
    gap: 6px;
  }

  .home-region-link-list {
    grid-template-columns: 1fr;
  }

  .home-region-links-section {
    padding: 30px 0;
  }

  .home-region-links-layout {
    gap: 20px;
  }

  .home-region-links-copy h2 {
    font-size: clamp(36px, 10vw, 45px);
  }

  .home-region-link-list {
    gap: 9px;
  }

  .home-region-link-list a {
    box-shadow: 0 8px 20px rgba(55, 41, 28, 0.08);
    gap: 5px;
    min-height: 0;
    padding: 13px 15px;
  }

  .home-region-link-list small {
    font-size: 13px;
    line-height: 1.35;
  }

  .nav-book-button,
  .nav-menu-toggle {
    padding: 8px 10px;
  }

  .booking-card,
  .panel,
  .included-card,
  .contact-panel {
    padding: 18px;
  }

  .package-booking-card {
    padding: 14px;
  }

  .package-booking-card .grid.two,
  .booking-contact-grid {
    gap: 8px;
  }

  .package-booking-card .availability-weekdays,
  .package-booking-card .availability-days,
  .availability-weekdays,
  .availability-days {
    grid-template-columns: repeat(7, minmax(36px, 1fr));
    width: 100%;
  }

  .package-booking-card .availability-day,
  .availability-day {
    min-height: 48px;
    min-width: 36px;
    padding: 5px 2px;
  }

  .availability-day .availability-weekday {
    display: none;
  }

  .availability-date-line {
    font-size: 16px;
  }

  .availability-label {
    font-size: 8px;
    letter-spacing: 0;
    white-space: normal;
  }

  .mobile-booking-bar {
    left: 8px;
    padding: 7px;
    right: 8px;
  }

  .mobile-booking-price strong {
    font-size: 16px;
  }

  .mobile-booking-bar .button {
    font-size: 12px;
    min-height: 40px;
    padding: 8px 10px;
  }

  .quick-book-actions .button,
  .laquinta-action-row .button,
  .laquinta-rooms-actions .button,
  .laquinta-voucher-actions .button,
  .laquinta-voucher-actions button,
  .tour-host-actions .button,
  .region-tour-cta-actions .button {
    width: 100%;
  }

  .laquinta-campaign-section .container {
    width: min(100% - 14px, 1180px);
  }

  .laquinta-campaign-section {
    padding-bottom: 16px;
  }

  .laquinta-offer-section.section {
    padding-top: 34px;
  }

  .laquinta-bunk-preview-section {
    padding: 18px 0 22px;
  }

  .laquinta-bunk-preview {
    box-shadow: 0 14px 32px rgba(38, 28, 18, 0.15);
  }

  .laquinta-bunk-preview figcaption {
    font-size: 12px;
    padding: 46px 13px 12px;
  }

  .laquinta-offer-grid {
    gap: 18px;
  }

  .laquinta-offer-copy,
  .laquinta-voucher-card {
    padding: 22px 24px;
  }

  .laquinta-rooms-section.section {
    padding: 36px 0;
  }

  .laquinta-rooms-layout {
    gap: 22px;
  }

  .laquinta-rooms-copy h2 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .laquinta-rooms-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .laquinta-room-facts div {
    padding: 13px 14px;
  }

  .laquinta-rooms-gallery {
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .laquinta-room-photo-featured,
  .laquinta-room-photo-small {
    min-height: 230px;
  }

  .laquinta-room-photo figcaption {
    font-size: 12px;
    padding: 42px 13px 12px;
  }

  .laquinta-poster {
    box-shadow: 0 16px 34px rgba(38, 28, 18, 0.18);
  }

  .laquinta-poster-copy {
    font-size: clamp(8.5px, 2.55vw, 10px);
    left: 8%;
    line-height: 1.05;
    max-width: 45%;
    top: 34%;
  }

  .laquinta-benefit-row {
    bottom: 18%;
    gap: clamp(2px, 1vw, 6px);
    grid-template-columns: minmax(0, 1fr) 0.28fr minmax(0, 1fr);
    left: 6%;
    width: 42%;
  }

  .laquinta-benefit img {
    width: clamp(24px, 7.6vw, 34px);
  }

  .laquinta-benefit span {
    font-size: clamp(12px, 4.2vw, 17px);
    line-height: 0.95;
  }

  .laquinta-benefit small {
    font-size: clamp(7px, 2.25vw, 9px);
    line-height: 0.96;
  }

  .laquinta-heart {
    width: clamp(18px, 5vw, 24px);
  }

  .laquinta-offer-copy h1 {
    font-size: clamp(34px, 9vw, 46px);
  }

  .laquinta-voucher-card {
    background-image: linear-gradient(180deg, rgba(255, 250, 242, 0.94), rgba(251, 243, 230, 0.94));
  }

  .laquinta-voucher-card h2 {
    max-width: none;
  }

  .tour-card .price-row {
    align-items: stretch;
    flex-direction: column;
  }

  .tour-card .price-row .button {
    width: 100%;
  }

  .winery-article-body {
    gap: 28px;
  }

  .winery-fee-list > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .winery-gallery-image img {
    aspect-ratio: 4 / 3;
  }

  .winery-directory-controls {
    padding: 16px;
  }

  .winery-region-pill {
    padding: 9px 11px;
  }

  .landing-fact {
    min-height: 0;
    padding: 8px 10px;
  }

  .landing-fact span {
    font-size: 12px;
  }

  .trust-card,
  .buyer-pathway-card {
    min-height: auto;
    padding: 18px;
  }

  .trust-card h3,
  .buyer-pathway-card span {
    font-size: 22px;
  }

  .availability-status {
    font-size: 25px;
  }

  .availability-widget {
    padding: 12px;
  }
}
.tour-emergency-notice {
  align-items: start;
  background: #fff3eb;
  border: 2px solid #b94736;
  border-left: 7px solid #7b1614;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(91, 29, 20, 0.12);
  color: #481b16;
  display: grid;
  gap: 14px;
  grid-template-columns: auto minmax(0, 1fr);
  margin: 0 0 24px;
  padding: 18px 20px;
}

.tour-emergency-notice > .material-symbols-outlined {
  color: #9f271d;
  font-size: 30px;
  line-height: 1;
}

.tour-emergency-notice .eyebrow {
  color: #8e2018;
  margin: 0 0 4px;
}

.tour-emergency-notice strong {
  display: block;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 7px;
}

.tour-emergency-notice p {
  margin: 0 0 7px;
}

.tour-emergency-notice p:last-child {
  margin-bottom: 0;
}

.tour-emergency-notice a {
  color: #7b1614;
  font-weight: 900;
}

.tour-card.is-temporarily-unavailable {
  border-color: #bd5b4c;
}

.tour-card-emergency-status {
  align-items: center;
  background: #fff0e7;
  border: 1px solid #cf7569;
  border-radius: 999px;
  color: #851c15;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  margin: 4px 0 2px;
  padding: 6px 9px;
  width: fit-content;
}

.mobile-booking-bar.is-temporarily-unavailable {
  border-color: #bd5b4c;
}

.mobile-booking-bar.is-temporarily-unavailable .button {
  background: #7b1614;
}

@media (max-width: 640px) {
  .tour-emergency-notice {
    gap: 9px;
    grid-template-columns: 1fr;
    padding: 15px;
  }

  .tour-emergency-notice > .material-symbols-outlined {
    font-size: 26px;
  }
}

.charcuterie-upsell {
  background: #fff8ef;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin: 22px 0;
  padding: 18px;
}

.charcuterie-upsell-head h3,
.charcuterie-product-card h4 {
  color: var(--wine-dark);
  margin: 0;
}

.charcuterie-upsell-head > p:last-child {
  color: var(--muted);
  line-height: 1.5;
  margin: 8px 0 0;
}

.charcuterie-product-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.charcuterie-product-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(67, 44, 32, 0.08);
  overflow: hidden;
}

.charcuterie-product-card > img {
  aspect-ratio: 1;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.charcuterie-product-copy {
  display: grid;
  gap: 14px;
  padding: 14px;
}

.charcuterie-product-copy p {
  margin: 5px 0 0;
}

.charcuterie-quantity-row {
  align-items: end;
  display: grid;
  gap: 6px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.charcuterie-quantity-row > label {
  grid-column: 1 / -1;
}

.charcuterie-stepper {
  align-items: stretch;
  display: grid;
  grid-template-columns: 38px minmax(50px, 64px) 38px;
}

.charcuterie-stepper button,
.charcuterie-stepper input {
  border: 1px solid var(--line);
  border-radius: 0;
  min-height: 40px;
}

.charcuterie-stepper button {
  align-items: center;
  display: flex;
  font-size: 21px;
  justify-content: center;
  min-width: 38px;
  padding: 0;
}

.charcuterie-stepper button:first-child {
  border-radius: 7px 0 0 7px;
}

.charcuterie-stepper button:last-child {
  border-radius: 0 7px 7px 0;
}

.charcuterie-stepper input {
  border-left: 0;
  border-right: 0;
  padding: 6px;
  text-align: center;
  width: 100%;
}

.charcuterie-quantity-row > strong {
  color: var(--wine);
  font-size: 14px;
  text-align: right;
}

.charcuterie-notes-field {
  margin: 18px 0 0;
}

.charcuterie-notes-field textarea {
  min-height: 96px;
}

.charcuterie-save-status {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  margin: 10px 0 0;
}

.charcuterie-save-status.is-saved {
  color: #22653c;
}

.charcuterie-save-status.is-error {
  color: #a21f2b;
}

@media (max-width: 640px) {
  .charcuterie-upsell {
    padding: 14px;
  }

  .charcuterie-product-grid {
    grid-template-columns: 1fr;
  }

  .charcuterie-product-card {
    display: grid;
    grid-template-columns: minmax(112px, 38%) minmax(0, 1fr);
  }

  .charcuterie-product-card > img {
    height: 100%;
    min-height: 190px;
  }

  .charcuterie-quantity-row {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .charcuterie-quantity-row > strong {
    text-align: left;
  }

  .charcuterie-stepper {
    grid-template-columns: 40px minmax(48px, 1fr) 40px;
  }
}

@media (max-width: 430px) {
  .charcuterie-product-card {
    display: block;
  }

  .charcuterie-product-card > img {
    height: auto;
    min-height: 0;
  }
}

.winery-dog-outside-indicator {
  align-items: center;
  background: #fff3d6;
  border: 1px solid #d19b33;
  border-radius: 999px;
  color: #805400;
  display: inline-flex;
  height: 32px;
  justify-content: center;
  gap: 1px;
  width: 44px;
}
.winery-dog-outside-indicator .material-symbols-outlined { font-size: 18px; font-style: normal; }
.winery-dog-outside-indicator .outdoor-tree { font-size: 16px; }

.winery-note-dialog {
  background: #fffcf4;
  border: 1px solid #d6bd87;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(20, 36, 31, 0.3);
  color: #28251e;
  max-height: 85vh;
  max-height: 85dvh;
  overflow: auto;
  padding: 24px;
  width: min(680px, calc(100vw - 32px));
}
.winery-note-dialog::backdrop { background: rgba(15, 28, 28, 0.5); }
.winery-note-head { align-items: flex-start; display: flex; gap: 16px; justify-content: space-between; margin-bottom: 20px; }
.winery-note-head h2 { font-size: 26px; line-height: 1.25; margin: 0; overflow-wrap: anywhere; }
.winery-note-head button { flex-shrink: 0; }
.winery-note-text { background: #fff; border: 1px solid #e3dbc9; border-radius: 6px; font-size: 16px; font-weight: 400; line-height: 1.65; padding: 18px; white-space: pre-wrap; overflow-wrap: anywhere; user-select: text; -webkit-user-select: text; }
.winery-note-text a { color: #075a70; text-decoration: underline; }
.winery-note-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 16px; margin-top: 20px; }
.winery-note-status { font-size: 14px; }
@media (max-width: 520px) {
  .winery-note-dialog { padding: 16px; }
  .winery-note-head h2 { font-size: 22px; }
}
.winery-catalog-overview { margin: 0 0 20px; }
.winery-overview-caption { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px; margin-bottom: 10px; font-size: 13px; color: #556a6e; }
.winery-overview-caption strong { color: #174d56; font-size: 14px; }
.winery-stat-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 10px; }
.winery-stat-card { --stat-color: #174d56; position: relative; display: flex; flex-direction: column; gap: 3px; min-width: 0; padding: 13px 15px; border: 1px solid #d4dfe0; border-top: 3px solid var(--stat-color); border-radius: 8px; background: #fffdf7; color: #273d41; text-decoration: none; box-shadow: 0 3px 10px rgba(20, 60, 65, 0.04); }
.winery-stat-card strong { font-size: 29px; line-height: 1.15; color: var(--stat-color); padding-right: 23px; }
.winery-stat-card > .material-symbols-outlined { position: absolute; top: 14px; right: 12px; font-size: 22px; color: var(--stat-color); }
.winery-stat-label { font-size: 13px; font-weight: 650; line-height: 1.3; }
.winery-stat-card.tone-green { --stat-color: #287443; }
.winery-stat-card.tone-amber { --stat-color: #93650d; }
.winery-stat-card.tone-blue { --stat-color: #28649a; }
.winery-stat-card.tone-muted { --stat-color: #687477; }
.winery-region-stats { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 8px; margin-top: 10px; }
.winery-region-stat { display: flex; gap: 8px; align-items: center; justify-content: space-between; min-width: 0; border: 1px solid #d4dfe0; border-radius: 6px; padding: 10px 12px; background: rgba(255, 255, 255, 0.75); color: #174d56; text-decoration: none; }
.winery-region-stat span { font-size: 12px; line-height: 1.3; }
.winery-region-stat strong { font-size: 21px; flex-shrink: 0; }
.winery-stat-card:hover, .winery-region-stat:hover { background: #f2f8f7; border-color: #719a9e; }
.winery-stat-card.is-selected, .winery-region-stat.is-selected { outline: 2px solid #174d56; outline-offset: 1px; }
.winery-stat-card:focus-visible, .winery-region-stat:focus-visible { outline: 3px solid #b27912; outline-offset: 3px; }
.winery-stats-footnote, .winery-results-count { font-size: 12px; color: #556a6e; margin: 9px 0 0; }
.winery-results-count { margin: 0 0 10px; font-weight: 600; }
@media (max-width: 1450px) {
  .winery-stat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .winery-region-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .winery-filter-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .winery-stat-grid, .winery-region-stats, .winery-filter-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .winery-stat-card { padding: 11px 12px; }
}
@media (max-width: 400px) { .winery-filter-grid { grid-template-columns: minmax(0, 1fr); } }

.admin-winery-search-form { display: block; padding: 16px 20px; margin-bottom: 16px; }
.winery-search-row { display: flex; align-items: flex-end; gap: 12px; }
.winery-search-row .field { flex: 1; min-width: 0; margin: 0; }
.winery-search-row button, .winery-search-row .button { flex-shrink: 0; margin: 0; }
.winery-search-scope { margin: 8px 0 0; font-size: 12px; color: #556a6e; }
@media (max-width: 600px) {
  .winery-search-row { flex-wrap: wrap; }
  .winery-search-row .field { flex-basis: 100%; }
}
