/* GalilWine — galilwine.pro
   Cool modern editorial vineyard magazine */

@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500&family=Outfit:wght@300;400;500;600;700&family=Karla:wght@400;500;600&display=swap');

:root {
  --wine: #1A0F14;
  --wine-mid: #2A1820;
  --burgundy: #7A1F2B;
  --burgundy-soft: #9A3A45;
  --olive: #5B6B3A;
  --olive-soft: #7A8B55;
  --parchment: #F4EFE6;
  --parchment-dim: #E8E0D2;
  --ink: #1A0F14;
  --muted: rgba(26, 15, 20, 0.62);
  --muted-light: rgba(244, 239, 230, 0.68);
  --line: rgba(26, 15, 20, 0.12);
  --line-light: rgba(244, 239, 230, 0.14);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Satoshi", "Outfit", "Karla", system-ui, sans-serif;
  --radius: 2px;
  --shadow: 0 24px 60px rgba(26, 15, 20, 0.18);
  --max: 1180px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--parchment);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 0.85rem;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section--wine {
  background: var(--wine);
  color: var(--parchment);
}

.section--wine .eyebrow {
  color: var(--olive-soft);
}

.section--split {
  background: linear-gradient(180deg, var(--parchment) 0%, var(--parchment-dim) 100%);
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--muted);
  max-width: 38rem;
}

.section--wine .lead {
  color: var(--muted-light);
}

/* Grain overlay */
.grain::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.28;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.45rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--burgundy);
  color: var(--parchment);
}

.btn--primary:hover {
  background: var(--burgundy-soft);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(244, 239, 230, 0.45);
  color: var(--parchment);
}

.btn--ghost:hover {
  background: rgba(244, 239, 230, 0.08);
  border-color: var(--parchment);
}

.btn--outline {
  background: transparent;
  border-color: var(--wine);
  color: var(--wine);
}

.btn--outline:hover {
  background: var(--wine);
  color: var(--parchment);
}

.btn--olive {
  background: var(--olive);
  color: var(--parchment);
}

.btn--olive:hover {
  background: var(--olive-soft);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(26, 15, 20, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(26, 15, 20, 0.25);
}

.site-header__inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--parchment);
  letter-spacing: -0.01em;
}

.logo span {
  color: var(--olive-soft);
  font-weight: 400;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav a {
  color: rgba(244, 239, 230, 0.82);
  font-size: 0.9rem;
  font-weight: 450;
  position: relative;
  transition: color 0.25s ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--parchment);
}

.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 1px;
  background: var(--olive-soft);
}

.nav__cta {
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(244, 239, 230, 0.35);
  border-radius: var(--radius);
}

.nav__cta:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(244, 239, 230, 0.3);
  background: transparent;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: var(--parchment);
  transition: transform 0.3s var(--ease), opacity 0.3s ease, top 0.3s var(--ease);
}

.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }

.nav-toggle.is-open span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--parchment);
  overflow: hidden;
  background: var(--wine);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroKen 18s ease-out forwards;
}

@keyframes heroKen {
  to { transform: scale(1); }
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 15, 20, 0.35) 0%, rgba(26, 15, 20, 0.2) 35%, rgba(26, 15, 20, 0.78) 100%),
    linear-gradient(90deg, rgba(26, 15, 20, 0.45) 0%, transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: calc(var(--header-h) + 3rem) 0 4.5rem;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 1.25rem;
}

.hero__brand em {
  font-style: italic;
  font-weight: 400;
  color: var(--olive-soft);
}

.hero__title {
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 400;
  max-width: 22ch;
  margin-bottom: 0.85rem;
}

.hero__text {
  max-width: 34rem;
  color: var(--muted-light);
  font-size: 1.05rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(244, 239, 230, 0.18);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.7);
}

.page-hero {
  position: relative;
  min-height: 52vh;
  display: grid;
  align-items: end;
  color: var(--parchment);
  overflow: hidden;
  background: var(--wine);
  padding-top: var(--header-h);
}

.page-hero__media {
  position: absolute;
  inset: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 15, 20, 0.45), rgba(26, 15, 20, 0.82));
}

.page-hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 4rem 0 3.5rem;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  max-width: 14ch;
}

.page-hero p {
  margin-top: 1rem;
  max-width: 36rem;
  color: var(--muted-light);
}

/* Magazine grid */
.mag-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.mag-grid--reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.mag-grid--reverse .mag-copy {
  order: 2;
}

.mag-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.mag-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.95);
}

.mag-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.mag-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.mag-copy p + p {
  margin-top: 1rem;
}

.mag-copy .lead,
.mag-copy p {
  color: var(--muted);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--burgundy);
  font-weight: 500;
}

.stat span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Season filters */
.season-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.75rem 0 2.25rem;
}

.season-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.season-btn.is-active,
.season-btn:hover {
  background: var(--wine);
  color: var(--parchment);
  border-color: var(--wine);
}

.tour-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.tour-card {
  background: #fffdf8;
  border: 1px solid var(--line);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.tour-card[hidden] {
  display: none !important;
}

.tour-card__season {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.tour-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.65rem;
}

.tour-card p {
  color: var(--muted);
  flex-grow: 1;
}

.tour-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.tour-card__meta strong {
  color: var(--burgundy);
  font-weight: 600;
}

/* Expandable included */
.accordion {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.accordion__item {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.7);
}

.accordion__trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1.1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-weight: 500;
}

.accordion__trigger span {
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), background 0.3s ease;
}

.accordion__item.is-open .accordion__trigger span {
  background: var(--burgundy);
  color: var(--parchment);
  border-color: var(--burgundy);
  transform: rotate(45deg);
}

.accordion__panel {
  display: none;
  padding: 0 1.25rem 1.25rem;
  color: var(--muted);
}

.accordion__item.is-open .accordion__panel {
  display: block;
}

.accordion__panel ul {
  display: grid;
  gap: 0.45rem;
}

.accordion__panel li {
  padding-left: 1rem;
  position: relative;
}

.accordion__panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--olive);
}

/* Winery strip */
.strip-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.strip-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 320px);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
}

.strip::-webkit-scrollbar {
  height: 4px;
}

.strip::-webkit-scrollbar-thumb {
  background: var(--burgundy);
}

.winery-card {
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background: var(--wine);
  color: var(--parchment);
}

.winery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 0.7s var(--ease), opacity 0.4s ease;
}

.winery-card:hover img {
  transform: scale(1.06);
  opacity: 0.55;
}

.winery-card__body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  background: linear-gradient(180deg, transparent 30%, rgba(26, 15, 20, 0.9) 100%);
}

.winery-card__region {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-soft);
  margin-bottom: 0.4rem;
}

.winery-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.winery-card p {
  font-size: 0.92rem;
  color: var(--muted-light);
}

/* Feature tiles */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature {
  padding: 1.75rem 1.4rem;
  border-top: 2px solid var(--burgundy);
  background: rgba(255, 253, 248, 0.55);
}

.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 0.65rem;
}

.feature p {
  color: var(--muted);
}

/* Quote / editorial */
.quote-block {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.quote-block blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
}

.quote-block cite {
  display: block;
  margin-top: 1.25rem;
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-soft);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.contact-card {
  background: var(--wine);
  color: var(--parchment);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}

.contact-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.contact-list {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.75rem;
}

.contact-list dt {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-soft);
  margin-bottom: 0.25rem;
}

.contact-list dd {
  margin: 0;
}

.contact-list a:hover {
  color: var(--olive-soft);
}

.form {
  display: grid;
  gap: 1rem;
  background: #fffdf8;
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.form input,
.form textarea,
.form select {
  border: 1px solid var(--line);
  background: var(--parchment);
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(122, 31, 43, 0.12);
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form__note {
  font-size: 0.85rem;
  color: var(--muted);
}

.form__success {
  display: none;
  padding: 1rem;
  background: rgba(91, 107, 58, 0.12);
  border: 1px solid rgba(91, 107, 58, 0.35);
  color: var(--olive);
}

.form.is-sent .form__success {
  display: block;
}

.form.is-sent .form__fields {
  display: none;
}

/* Legal */
.legal {
  padding: calc(var(--header-h) + 3.5rem) 0 5rem;
}

.legal h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 0.75rem;
}

.legal .updated {
  color: var(--muted);
  margin-bottom: 2rem;
}

.legal h2 {
  font-size: 1.4rem;
  margin: 2rem 0 0.75rem;
}

.legal p,
.legal li {
  color: var(--muted);
  max-width: 48rem;
}

.legal p + p {
  margin-top: 0.85rem;
}

.legal ul {
  margin: 0.75rem 0 0;
  display: grid;
  gap: 0.45rem;
}

.legal li {
  padding-left: 1rem;
  position: relative;
}

.legal li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--burgundy);
}

/* Footer */
.site-footer {
  background: var(--wine);
  color: var(--parchment);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-light);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.footer-brand span {
  color: var(--olive-soft);
}

.site-footer p {
  color: var(--muted-light);
  max-width: 26rem;
}

.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--olive-soft);
}

.site-footer a {
  color: rgba(244, 239, 230, 0.78);
  display: inline-block;
  margin-bottom: 0.45rem;
  transition: color 0.25s ease;
}

.site-footer a:hover {
  color: var(--parchment);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  font-size: 0.85rem;
  color: rgba(244, 239, 230, 0.55);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 520px;
  margin-left: auto;
  background: var(--wine);
  color: var(--parchment);
  border: 1px solid rgba(244, 239, 230, 0.15);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner p {
  font-size: 0.9rem;
  color: var(--muted-light);
  margin-bottom: 1rem;
}

.cookie-banner a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Utility */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.muted { color: var(--muted); }

.map-note {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--olive);
  background: rgba(91, 107, 58, 0.08);
  color: var(--muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.team-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: #fffdf8;
}

.team-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.team-card .role {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 0.75rem;
}

.team-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.winery-list {
  display: grid;
  gap: 2.5rem;
}

.winery-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.winery-row:nth-child(even) .winery-row__media {
  order: 2;
}

.winery-row__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
}

.winery-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.winery-row__media::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0;
}

.tag {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--line);
  color: var(--muted);
}

/* Responsive */
@media (max-width: 980px) {
  .mag-grid,
  .mag-grid--reverse,
  .contact-grid,
  .winery-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mag-grid--reverse .mag-copy,
  .winery-row:nth-child(even) .winery-row__media {
    order: 0;
  }

  .tour-cards,
  .feature-grid,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(26, 15, 20, 0.97);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.5rem 1.75rem;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(244, 239, 230, 0.1);
  }

  .nav__cta {
    margin-top: 1rem;
    text-align: center;
  }

  .tour-cards,
  .feature-grid,
  .team-grid,
  .stat-row,
  .form__row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero__brand {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .strip-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .hero__media img,
  .btn,
  .winery-card img {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
