/* ===== Genesee Valley Lavender Farm — site styles ===== */

/* Fonts (local) */
@font-face {
  font-family: "Gloock";
  src: url("uploads/genesee-valley-lavender-farm-design/fonts/gloock-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("uploads/genesee-valley-lavender-farm-design/fonts/lora-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("uploads/genesee-valley-lavender-farm-design/fonts/lora-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("uploads/genesee-valley-lavender-farm-design/fonts/lora-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("uploads/genesee-valley-lavender-farm-design/fonts/lora-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

:root {
  --white: #ffffff;
  --neutral-lightest: #f2f2f2;
  --neutral-lighter: #dadada;
  --neutral-light: #b6b5b5;
  --neutral: #858584;
  --neutral-dark: #545453;
  --neutral-darker: #242322;
  --neutral-darkest: #0c0b0a;
  --neutral-darkest-15: rgba(12, 11, 10, 0.15);
  --neutral-darkest-50: rgba(12, 11, 10, 0.5);
  --white-20: rgba(255, 255, 255, 0.2);
  --white-15: rgba(255, 255, 255, 0.15);

  --wisteria-lightest: #f3f0f6;
  --wisteria-lighter: #e7e1ee;
  --wisteria-light: #ad97c3;
  --wisteria: #8a6baa;
  --wisteria-dark: #6e5588;
  --wisteria-darker: #372a44;
  --wisteria-darkest: #292033;
  --norway: #9fbf9a;
  --parchment: #ede2c9;

  --radius-button: 0.75rem;
  --radius-card: 0.5rem;
  --radius-image: 0.5rem;

  --container: 80rem;

  /* mobile type scale */
  --h1: 3rem;
  --h2: 2.75rem;
  --h3: 2rem;
  --h4: 1.5rem;
  --h5: 1.25rem;
  --h6: 1.125rem;
  --text-large: 1.125rem;
  --text-medium: 1rem;
  --text-regular: 0.875rem;
  --text-small: 0.75rem;
  --text-tiny: 0.625rem;
}

@media (min-width: 992px) {
  :root {
    --h1: 5.25rem;
    --h2: 3.75rem;
    --h3: 3rem;
    --h4: 2.5rem;
    --h5: 2rem;
    --h6: 1.625rem;
    --text-large: 1.625rem;
    --text-medium: 1.25rem;
    --text-regular: 1.125rem;
    --text-small: 1rem;
    --text-tiny: 0.75rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  color: var(--neutral-darkest);
  background: var(--white);
  font-size: var(--text-regular);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Gloock", Georgia, serif;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

p { margin: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 4rem 5%;
}
@media (min-width: 768px) { .section { padding: 6rem 5%; } }
@media (min-width: 992px) { .section { padding: 7rem 5%; } }

/* ===== Type helpers ===== */
.t-h1 { font-size: var(--h1); }
.t-h2 { font-size: var(--h2); }
.t-h3 { font-size: var(--h3); }
.t-h4 { font-size: var(--h4); }
.t-h5 { font-size: var(--h5); }
.t-h6 { font-size: var(--h6); }
.t-large { font-size: var(--text-large); line-height: 1.6; }
.t-medium { font-size: var(--text-medium); line-height: 1.6; }
.t-small { font-size: var(--text-small); line-height: 1.6; }
.t-tiny { font-size: var(--text-tiny); line-height: 1.6; }
.semibold { font-weight: 600; }
.eyebrow { font-weight: 600; margin-bottom: 0.75rem; }
.text-center { text-align: center; }
.max-lg { max-width: 48rem; }
.max-md { max-width: 35rem; }
.max-sm { max-width: 24rem; }
.mx-auto { margin-inline: auto; }

/* ===== Color schemes ===== */
.scheme-1 { --bg: var(--neutral-lighter); --fg: var(--neutral-darkest); --border: var(--neutral-darkest-15); background: var(--bg); color: var(--fg); }
.scheme-2 { --bg: var(--wisteria-darker); --fg: var(--white); --border: var(--white-20); background: var(--bg); color: var(--fg); }
.scheme-3 { --bg: var(--white); --fg: var(--neutral-darkest); --border: var(--neutral-darkest-15); background: var(--bg); color: var(--fg); }
.scheme-4 { --bg: var(--wisteria-darkest); --fg: var(--white); --border: var(--white-20); background: var(--bg); color: var(--fg); }

/* ===== Buttons (bubble) ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-radius: var(--radius-button);
  white-space: nowrap;
  font-family: "Lora", serif;
  font-weight: 500;
  font-size: var(--text-regular);
  padding: 0.65rem 1.5rem;
  margin-bottom: 4px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: center;
}
.btn-sm { padding: 0.45rem 1.25rem; }

.btn-default {
  border-color: var(--wisteria-dark);
  background: var(--wisteria);
  color: #fff;
  box-shadow: 0 3px 0 0 var(--wisteria-dark);
}
.btn-default:hover { transform: translateY(3px); box-shadow: none; }

.btn-alternate {
  border-color: var(--neutral-lighter);
  background: #fff;
  color: var(--neutral-darkest);
  box-shadow: 0 3px 0 0 var(--neutral-lighter);
}
.btn-alternate:hover { transform: translateY(3px); box-shadow: none; }

.btn-secondary {
  border-color: var(--border);
  background: transparent;
  color: var(--fg, var(--neutral-darkest));
  box-shadow: 0 3px 0 0 var(--border);
}
.btn-secondary:hover { transform: translateY(3px); box-shadow: none; }

.btn-secondary-alt {
  border-color: var(--white-20);
  background: transparent;
  color: #fff;
  box-shadow: 0 3px 0 0 var(--white-20);
}
.btn-secondary-alt:hover { transform: translateY(3px); box-shadow: none; }

.btn-link {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--fg, inherit);
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.btn-link svg { width: 1.1em; height: 1.1em; transition: transform 0.2s; }
.btn-link:hover svg { transform: translateX(3px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-top: 1.5rem; }
.btn-row.center { justify-content: center; }
@media (min-width: 768px) { .btn-row { margin-top: 2rem; } }

/* ===== Cards ===== */
.card {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: transparent;
  display: flex;
  flex-direction: column;
}
.card img { width: 100%; }

/* ===== Section header ===== */
.sec-head { margin-bottom: 3rem; }
@media (min-width: 992px) { .sec-head { margin-bottom: 5rem; } }
.sec-head h2, .sec-head h1 { margin-bottom: 1.25rem; }

/* ===== Grids ===== */
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 992px) { .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 3rem; align-items: center; } }
@media (min-width: 992px) { .grid-2 { gap: 5rem; } }

/* ===== Navbar ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 5%;
  min-height: 4.5rem;
  background: var(--wisteria-darkest);
  color: #fff;
  border-bottom: 1px solid var(--white-15);
}
.nav-left { display: flex; align-items: center; gap: 0.25rem; flex: 1; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 34px; width: auto; }
.nav-links { display: none; align-items: center; gap: 0.25rem; }
.nav-links a, .nav-dd > span {
  display: block;
  padding: 0.5rem 1rem;
  font-size: var(--text-regular);
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
}
.nav-links a:hover, .nav-dd > span:hover { color: var(--wisteria-light); }
.nav-links a.active { text-decoration: underline; text-underline-offset: 6px; }
.nav-right { display: flex; align-items: center; justify-content: flex-end; gap: 1rem; flex: 1; }

.nav-dd { position: relative; }
.nav-dd > span { display: inline-flex; align-items: center; gap: 0.4rem; }
.nav-dd > span svg { transition: transform 0.3s; width: 1em; height: 1em; }
.nav-dd.open > span svg { transform: rotate(180deg); }
.nav-dd-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 12rem;
  background: var(--wisteria-darkest);
  border: 1px solid var(--white-20);
  padding: 0.5rem;
  display: none;
}
.nav-dd.open .nav-dd-menu { display: block; }
.nav-dd-menu a { padding: 0.5rem 1rem; }

.nav-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-burger span { display: block; width: 1.5rem; height: 2px; background: #fff; margin: 3px 0; transition: 0.3s; }

@media (min-width: 992px) {
  .nav-links { display: flex; }
  .nav-burger { display: none; }
}

/* mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  width: 86%;
  max-width: 22rem;
  background: var(--wisteria-darkest);
  color: #fff;
  z-index: 1001;
  padding: 1.5rem 1.5rem 2rem;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
  border-right: 1px solid var(--white-15);
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer a, .nav-drawer .drawer-sub-title {
  display: block;
  padding: 0.85rem 0;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--white-15);
}
.nav-drawer .drawer-sub a { padding-left: 1rem; font-size: 1rem; }
.nav-drawer .btn { width: 100%; margin-top: 1.5rem; }
.nav-overlay {
  position: fixed; inset: 0; background: rgba(12,11,10,0.5);
  z-index: 1000; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.nav-overlay.open { opacity: 1; pointer-events: auto; }
.drawer-logo { margin: 0.5rem 0 1.5rem; }
.drawer-logo img { height: 40px; }

/* ===== Footer ===== */
.footer { padding: 3rem 5%; background: #fff; color: var(--neutral-darkest); }
.footer-top {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
  align-items: center; justify-items: center; padding-bottom: 3rem;
}
.footer-logo img { height: 40px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
.footer-nav a { font-weight: 600; }
.footer-nav a:hover { color: var(--wisteria); }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social svg { width: 1.5rem; height: 1.5rem; }
.footer-divider { height: 1px; width: 100%; background: var(--neutral-darkest-15); }
.footer-bottom {
  display: flex; flex-direction: column; gap: 1rem;
  padding-top: 1.5rem; font-size: var(--text-small);
}
.footer-bottom .legal { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; }
.footer-bottom a { text-decoration: underline; }
@media (min-width: 992px) {
  .footer-top { grid-template-columns: 0.25fr 1fr 0.25fr; padding-bottom: 5rem; }
  .footer-logo { justify-self: start; }
  .footer-social { justify-self: end; }
  .footer-bottom { flex-direction: row; justify-content: center; gap: 1.5rem; padding-top: 2rem; }
}

/* ===== Hero ===== */
.hero { position: relative; padding: 0 5%; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: var(--neutral-darkest-50); }
.hero-inner {
  position: relative; z-index: 1;
  max-width: 48rem; margin-inline: auto; text-align: center; color: #fff;
  min-height: 88vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 4rem 0;
}
.hero-inner.short { min-height: unset; padding: 5rem 0; }
.hero-inner h1 { color: #fff; margin-bottom: 1.5rem; }
.hero-inner p { color: #fff; }

/* image-band hero (with content + bg, like more/directions) */
.band { position: relative; padding: 4rem 5%; overflow: hidden; color: #fff; }
@media (min-width: 768px){ .band { padding: 6rem 5%; } }
.band-bg { position: absolute; inset: 0; z-index: 0; }
.band-bg img { width: 100%; height: 100%; object-fit: cover; }
.band-bg::after { content: ""; position: absolute; inset: 0; background: var(--neutral-darkest-50); }
.band .container { position: relative; z-index: 1; }

/* ===== Feature split (layout-19) ===== */
.feature-list { list-style: disc; padding-left: 1.25rem; margin: 1rem 0; }
.feature-list li { margin: 0.4rem 0; padding-left: 0.5rem; }
.rounded-img { border-radius: var(--radius-image); width: 100%; object-fit: cover; }

/* ===== Cards w/ image + body ===== */
.icard-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
@media (min-width: 768px){ .icard-body { padding: 2rem; } }
.icard-body h2, .icard-body h3 { margin-bottom: 0.75rem; }
.icard .ar { aspect-ratio: 1/1; width: 100%; }
.icard .ar img, .icard .ar-img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== Products ===== */
.products { display: grid; grid-template-columns: 1fr; gap: 3rem 2rem; }
@media (min-width: 768px){ .products { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 992px){ .products { grid-template-columns: repeat(3,1fr); } }
.product { text-align: center; }
.product .pimg { aspect-ratio: 5/6; margin-bottom: 1rem; overflow: hidden; border-radius: var(--radius-image); }
.product .pimg img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product:hover .pimg img { transform: scale(1.04); }
.product .pname { font-weight: 600; font-size: var(--text-medium); }
.product .ptype { font-size: var(--text-small); color: var(--neutral-dark); }
.product .pprice { font-size: var(--text-large); margin: 0.25rem 0 0.75rem; }

/* ===== Testimonials ===== */
.tcard { padding: 1.5rem; }
@media (min-width: 768px){ .tcard { padding: 2rem; } }
.stars { display: flex; gap: 0.25rem; margin-bottom: 1.25rem; }
.stars svg { width: 1.5rem; height: 1.5rem; }
.tauthor { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.tavatar { width: 3rem; height: 3rem; border-radius: 999px; background: var(--wisteria-lighter); display: flex; align-items: center; justify-content: center; color: var(--wisteria); font-weight: 600; flex: none; }

/* ===== Newsletter form ===== */
.newsletter-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: start;
}
@media (min-width: 992px){ .newsletter-grid { grid-template-columns: 1fr max-content; gap: 5rem; } }
.field-row { display: grid; grid-template-columns: 1fr; gap: 0.75rem; max-width: 24rem; }
@media (min-width: 480px){ .field-row { grid-template-columns: 1fr max-content; gap: 1rem; } }
.input {
  width: 100%;
  font-family: "Lora", serif;
  font-size: var(--text-regular);
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--white-20);
  border-radius: var(--radius-button);
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.input::placeholder { color: rgba(255,255,255,0.7); }
.input:focus { outline: none; border-color: #fff; }
.input.on-light { border-color: var(--neutral-darkest-15); background: #fff; color: var(--neutral-darkest); }
.input.on-light::placeholder { color: var(--neutral); }
.input.on-light:focus { border-color: var(--wisteria); }
.form-note { font-size: var(--text-tiny); margin-top: 1rem; opacity: 0.85; }
.form-success { display: none; font-weight: 600; margin-top: 0.5rem; }
.form-success.show { display: block; }
.field-error { border-color: #c0392b !important; }

/* ===== Tabs (vertical locations / horizontal) ===== */
.tabs-v { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 768px){ .tabs-v { grid-template-columns: 0.5fr 1fr; gap: 4rem; } }
.tabs-v-list { display: grid; gap: 0; }
.tab-trigger-v {
  text-align: left; background: none; border: none; border-left: 1px solid var(--border);
  padding: 1.25rem 0 1.25rem 2rem; cursor: pointer; color: inherit; font-family: "Lora", serif;
}
.tab-trigger-v.active { border-left-color: var(--fg); }
.tab-trigger-v h3 { margin-bottom: 0.75rem; }
.tab-trigger-v .link-text { margin-top: 1.25rem; font-weight: 600; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fade 0.5s ease; }
.tab-panel img { aspect-ratio: 3/2; width: 100%; object-fit: cover; border-radius: var(--radius-image); }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

.tabs-h-list { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; margin-bottom: 3rem; }
.tab-trigger-h {
  background: none; border: none; border-bottom: 1px solid transparent;
  padding: 0.5rem 0; cursor: pointer; color: inherit; font-family: "Lora", serif; font-size: var(--text-regular);
}
.tab-trigger-h.active { border-bottom-color: var(--fg); font-weight: 600; }

/* pill tabs (hours) */
.tabs-pill-list { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 3rem; }
.tab-pill { background: none; border: 1px solid transparent; border-radius: var(--radius-button); padding: 0.5rem 1rem; cursor: pointer; color: inherit; font-family: "Lora", serif; }
.tab-pill.active { font-weight: 600; border-color: var(--border); }

/* ===== Accordion (FAQ) ===== */
.acc { display: grid; gap: 1rem; }
.acc-item { border: 1px solid var(--border); border-radius: var(--radius-card); padding: 0 1.5rem; }
.acc-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: none; border: none; cursor: pointer; color: inherit; font-family: "Lora", serif;
  font-size: var(--text-medium); text-align: left; padding: 1.25rem 0;
}
.acc-trigger svg { width: 1.75rem; height: 1.75rem; flex: none; transition: transform 0.3s; }
.acc-item.open .acc-trigger svg { transform: rotate(45deg); }
.acc-content { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease; }
.acc-item.open .acc-content { grid-template-rows: 1fr; }
.acc-content > div { overflow: hidden; }
.acc-content p { padding-bottom: 1.5rem; }

/* ===== Carousel ===== */
.carousel { position: relative; }
.carousel-viewport { overflow: hidden; }
.carousel-track { display: flex; transition: transform 0.45s cubic-bezier(0.4,0,0.2,1); }
.carousel-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 2rem; gap: 1rem; }
.carousel-dots { display: flex; gap: 6px; }
.carousel-dots button { width: 8px; height: 8px; border-radius: 999px; border: none; background: color-mix(in srgb, currentColor 20%, transparent); cursor: pointer; padding: 0; }
.carousel-dots button.active { background: currentColor; }
.carousel-arrows { display: flex; gap: 0.75rem; }
.c-arrow {
  width: 3rem; height: 3rem; border-radius: 999px; border: 1px solid var(--border);
  background: transparent; color: inherit; cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
}
.c-arrow:hover { background: color-mix(in srgb, currentColor 10%, transparent); }
.c-arrow svg { width: 1.4rem; height: 1.4rem; }

/* event/gallery slides */
.ev-slide { flex: 0 0 100%; padding-right: 1.5rem; box-sizing: border-box; }
@media (min-width: 768px){ .ev-slide { flex-basis: 50%; padding-right: 2rem; } }
@media (min-width: 992px){ .ev-slide { flex-basis: 33.333%; } }
.gal-slide { flex: 0 0 100%; padding-right: 1.5rem; box-sizing: border-box; }
@media (min-width: 768px){ .gal-slide { flex-basis: 50%; padding-right: 2rem; } }
.gal-slide img { aspect-ratio: 1/1; width: 100%; object-fit: cover; border-radius: var(--radius-image); }

.ev-card .ev-img { position: relative; aspect-ratio: 3/2; }
.ev-card .ev-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ev-body { padding: 1.5rem; }
.ev-meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; font-size: var(--text-small); margin-bottom: 1rem; }
.ev-meta span.mi { display: inline-flex; align-items: center; gap: 0.4rem; }
.ev-meta svg { width: 1.25rem; height: 1.25rem; }
.badge {
  display: inline-block; border: 1px solid var(--border); border-radius: var(--radius-button);
  padding: 0.15rem 0.7rem; font-size: var(--text-small);
}
.badge.float { position: absolute; top: 1rem; right: 1rem; background: var(--bg); }

/* ===== Event schedule rows ===== */
.sched-row {
  display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center;
  border-top: 1px solid var(--border); padding: 1.5rem 0;
}
.sched-row:last-child { border-bottom: 1px solid var(--border); }
@media (min-width: 768px){ .sched-row { grid-template-columns: max-content 1fr max-content; padding: 2rem 0; } }
.sched-img { position: relative; aspect-ratio: 3/2; width: 100%; }
@media (min-width: 768px){ .sched-img { width: 9rem; aspect-ratio: 1/1; } }
.sched-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sched-title { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.sched-meta { font-size: var(--text-small); margin-bottom: 0.75rem; }

/* ===== Timeline ===== */
.timeline { display: grid; gap: 3rem; max-width: 60rem; margin-inline: auto; }
.tl-item { display: grid; grid-template-columns: max-content 1fr; gap: 1.5rem; align-items: start; }
.tl-dot { position: relative; width: 1rem; display: flex; justify-content: center; }
.tl-dot::before { content: ""; position: absolute; top: 1.6rem; bottom: -3.5rem; width: 3px; background: var(--neutral-darkest-15); }
.tl-item:last-child .tl-dot::before { display: none; }
.tl-dot span { width: 0.95rem; height: 0.95rem; border-radius: 999px; background: var(--fg); margin-top: 1.5rem; box-shadow: 0 0 0 8px var(--bg); z-index: 1; }
.tl-card .tl-card-body { padding: 1.5rem; }
@media (min-width: 768px){ .tl-card .tl-card-body { padding: 2rem; } }
.tl-card h3 { margin-bottom: 1.25rem; }
.tl-card h4 { margin-bottom: 0.75rem; }
.tl-card img { width: 100%; }

/* ===== Team ===== */
.team-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 768px){ .team-grid { grid-template-columns: repeat(2,1fr); gap: 4rem; } }
.team-member { text-align: center; }
.team-member .avatar { aspect-ratio: 1/1; width: 100%; border-radius: var(--radius-image); object-fit: cover; margin-bottom: 1.5rem; }
.team-photo {
  aspect-ratio: 1/1; width: 100%; border-radius: var(--radius-image);
  background: linear-gradient(150deg, var(--wisteria-light), var(--wisteria));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: "Gloock", serif; font-size: 4rem; margin-bottom: 1.5rem;
}
.team-social { display: flex; gap: 0.85rem; justify-content: center; margin-top: 1.25rem; }
.team-social svg { width: 1.5rem; height: 1.5rem; }

/* directions facts */
.dir-facts { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 480px) { .dir-facts { grid-template-columns: repeat(2, 1fr); } }

/* info callouts (hours page) */
.info-callouts { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem; }
@media (min-width: 768px) { .info-callouts { grid-template-columns: repeat(3, 1fr); } }
.callout { border: 1px solid var(--border); border-radius: var(--radius-card); padding: 1.5rem; }
.callout h4 { margin-bottom: 0.5rem; }

/* ===== Our Story editorial ===== */
.story-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 70rem;
  margin-inline: auto;
}
@media (min-width: 992px) {
  .story-wrap { grid-template-columns: 0.85fr 1.15fr; gap: 5rem; align-items: start; }
  .story-lead { position: sticky; top: 6rem; }
}
.story-lead .t-large { line-height: 1.4; }
.story-figure { margin: 2rem 0; }
.story-figure img { margin-bottom: 0.75rem; }
.story-figure figcaption { color: var(--neutral-dark); }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1.5rem;
}
@media (min-width: 992px) { .stat-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.stat { text-align: center; }
.stat-num {
  font-family: "Gloock", serif;
  font-size: var(--h2);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* ===== Dialog (video) ===== */
.dialog-overlay {
  position: fixed; inset: 0; background: rgba(12,11,10,0.8); z-index: 2000;
  display: none; align-items: center; justify-content: center; padding: 5%;
}
.dialog-overlay.open { display: flex; }
.dialog-box { width: 100%; max-width: 60rem; aspect-ratio: 16/9; background: #000; position: relative; }
.dialog-box iframe { width: 100%; height: 100%; border: 0; }
.dialog-close {
  position: absolute; top: -2.75rem; right: 0; background: none; border: none; color: #fff;
  font-size: 2rem; cursor: pointer; line-height: 1;
}
.play-trigger { position: relative; width: 100%; border: none; padding: 0; cursor: pointer; border-radius: var(--radius-image); overflow: hidden; display: block; }
.play-trigger img { width: 100%; object-fit: cover; }
.play-trigger::after { content: ""; position: absolute; inset: 0; background: var(--neutral-darkest-50); }
.play-trigger .play-icon { position: absolute; inset: 0; margin: auto; width: 5rem; height: 5rem; color: #fff; z-index: 1; }

/* ===== Cart ===== */
.cart-btn { position: relative; background: none; border: none; cursor: pointer; color: #fff; display: inline-flex; align-items: center; }
.cart-btn svg { width: 1.5rem; height: 1.5rem; }
.cart-count {
  position: absolute; top: -6px; right: -8px; min-width: 1.1rem; height: 1.1rem; padding: 0 0.3rem;
  background: var(--wisteria); color: #fff; border-radius: 999px; font-size: 0.65rem;
  display: flex; align-items: center; justify-content: center; font-family: "Lora", serif;
}
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 92%; max-width: 26rem;
  background: #fff; color: var(--neutral-darkest); z-index: 1001; transform: translateX(100%);
  transition: transform 0.35s ease; display: flex; flex-direction: column; box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid var(--neutral-darkest-15); }
.cart-head h3 { font-size: var(--h5); }
.cart-close { background: none; border: none; font-size: 1.75rem; cursor: pointer; line-height: 1; }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-item { display: grid; grid-template-columns: 4rem 1fr max-content; gap: 1rem; align-items: center; padding: 1rem 0; border-bottom: 1px solid var(--neutral-darkest-15); }
.cart-item img { width: 4rem; height: 4rem; object-fit: cover; border-radius: 0.4rem; }
.cart-item .ci-name { font-weight: 600; }
.cart-item .ci-controls { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.35rem; }
.qty-btn { width: 1.5rem; height: 1.5rem; border: 1px solid var(--neutral-darkest-15); background: #fff; border-radius: 0.3rem; cursor: pointer; line-height: 1; }
.ci-remove { background: none; border: none; color: var(--neutral); cursor: pointer; font-size: var(--text-small); text-decoration: underline; }
.cart-empty { color: var(--neutral); padding: 2rem 0; text-align: center; }
.cart-foot { padding: 1.5rem; border-top: 1px solid var(--neutral-darkest-15); }
.cart-total { display: flex; justify-content: space-between; font-weight: 600; font-size: var(--text-large); margin-bottom: 1rem; }
.cart-foot .btn { width: 100%; }

/* ===== Toast ===== */
.toast {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%) translateY(2rem);
  background: var(--wisteria-darkest); color: #fff; padding: 0.85rem 1.5rem; border-radius: var(--radius-button);
  z-index: 3000; opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s; font-size: var(--text-regular);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== Page hero small for legal/contact ===== */
.page-intro { max-width: 48rem; }
.page-intro h1 { margin-bottom: 1.25rem; }

/* contact layout */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 992px){ .contact-grid { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; } }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.form-field label { font-weight: 600; font-size: var(--text-regular); }
.form-field textarea { min-height: 9rem; resize: vertical; }
.info-block { margin-bottom: 1.75rem; }
.info-block h4 { margin-bottom: 0.5rem; font-size: var(--h6); }
.info-block a { color: var(--wisteria); text-decoration: underline; }

.prose p { margin-bottom: 1.25rem; }
.prose h2 { margin: 2rem 0 1rem; font-size: var(--h4); }

/* ===== feature-list / how-it-works bento grids ===== */
.when-row, .how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .when-row, .how-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .when-row .wide, .how-grid .wide { grid-column: span 2; }
}
@media (min-width: 992px) {
  .when-row { grid-template-columns: repeat(2, 1fr); }
}
/* wide card: image + text side by side on larger screens */
.icard.wide.row, .when-row .icard.wide, .how-grid .icard.wide {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .icard.wide { grid-template-columns: 1fr 1fr; align-items: center; }
  .icard.wide .ar { height: 100%; aspect-ratio: auto; min-height: 16rem; }
}
