/* ============================================
   Masseria Bel Cortile — stylesheet
   ============================================ */

:root {
  --cream: #f8f5ee;
  --cream-deep: #efe9dc;
  --ink: #23221c;
  --charcoal: #16150f;
  --charcoal-2: #1f1d15;
  --gold: #b8934f;
  --gold-light: #d9bd85;
  --olive: #5f6b45;
  --olive-dark: #414a30;
  --line: rgba(35, 34, 28, 0.12);
  --line-light: rgba(248, 245, 238, 0.18);

  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Jost", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1240px;
  --gap: clamp(1.25rem, 3vw, 2.5rem);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.1rem;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.center { justify-content: center; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.9rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  background: transparent;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
.btn-gold {
  color: var(--charcoal);
  background: var(--gold);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline-light { color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); }
.btn-outline-dark { color: var(--ink); }
.btn-outline-dark:hover { background: var(--ink); color: var(--cream); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-header.is-scrolled {
  background: rgba(248, 245, 238, 0.94);
  backdrop-filter: blur(10px);
  padding: 0.85rem 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color: #fff;
  transition: color 0.4s ease;
}
.brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
}
.brand .brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 0.25rem;
}
.site-header.is-scrolled .brand { color: var(--ink); }
.site-header.is-scrolled .brand .brand-sub { color: var(--gold); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}
.main-nav a {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid transparent;
  transition: color 0.4s ease, border-color 0.3s ease;
}
.main-nav a:hover { border-color: var(--gold); color: var(--gold-light); }
.site-header.is-scrolled .main-nav a { color: var(--ink); }
.site-header.is-scrolled .main-nav a:hover { color: var(--olive); border-color: var(--olive); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: #fff;
  transition: color 0.4s ease;
}
.site-header.is-scrolled .lang-switch { color: var(--ink); }
.lang-switch button {
  background: none;
  border: none;
  color: inherit;
  opacity: 0.5;
  cursor: pointer;
  font: inherit;
  padding: 0.2rem 0.35rem;
  letter-spacing: 0.06em;
}
.lang-switch button.active { opacity: 1; color: var(--gold); font-weight: 500; }

.header-actions .btn { padding: 0.6rem 1.3rem; font-size: 0.72rem; }

.header-left {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.2rem);
}

.site-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  padding: 0.22rem;
  gap: 0.15rem;
  cursor: pointer;
  transition: border-color 0.4s ease;
}
.site-switch span {
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease;
}
.site-switch:hover span:not(.active) { color: #fff; }
.site-switch span.active {
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 500;
}
.site-header.is-scrolled .site-switch { border-color: var(--line); }
.site-header.is-scrolled .site-switch span { color: rgba(35,34,28,0.5); }
.site-header.is-scrolled .site-switch:hover span:not(.active) { color: var(--ink); }
.site-header.is-scrolled .site-switch span.active { background: var(--ink); color: var(--cream); }

.header-switch-mobile { display: none; }

.mobile-site-switch {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  padding: 0.3rem;
  margin-bottom: 0.6rem;
  cursor: pointer;
}
.mobile-site-switch span {
  flex: 1;
  text-align: center;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248,245,238,0.6);
  transition: background 0.3s ease, color 0.3s ease;
}
.mobile-site-switch span.active { background: var(--gold); color: var(--charcoal); font-weight: 500; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span { width: 24px; height: 1.5px; background: #fff; transition: 0.3s; }
.site-header.is-scrolled .nav-toggle span { background: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.06);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,14,9,0.55) 0%, rgba(15,14,9,0.25) 38%, rgba(15,14,9,0.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 1.5rem;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  margin-bottom: 1.7rem;
}
.hero-kicker::before,
.hero-kicker::after {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  background: var(--gold-light);
  box-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 1.05;
  margin-bottom: 1.4rem;
}
.hero-title em { color: #fff; font-style: italic; }
.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 700;
  max-width: 540px;
  margin: 0 auto 2.3rem;
  color: rgba(255,255,255,0.88);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-cue {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.scroll-cue .line { width: 1px; height: 34px; background: rgba(255,255,255,0.6); overflow: hidden; position: relative; }
.scroll-cue .line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-light);
  animation: cueDrop 2.2s ease-in-out infinite;
}
@keyframes cueDrop {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}

/* ---------- Tour video ---------- */
.tour-video-section { padding-bottom: clamp(4.5rem, 9vw, 8rem); }
.tour-video {
  max-width: 1080px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}
.tour-video video {
  width: 100%;
  display: block;
  max-height: 78vh;
  background: #000;
}

/* ---------- Sections generic ---------- */
section { position: relative; }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 1.1rem;
}
.section-text {
  color: rgba(35,34,28,0.72);
  font-size: 1.02rem;
}
.section-text.light { color: rgba(248,245,238,0.78); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(.19,1,.22,1), transform 0.9s cubic-bezier(.19,1,.22,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Intro / Welcome ---------- */
.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.intro-media { position: relative; }
.intro-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 4px;
}
.intro-media-tag {
  position: absolute;
  left: -1.5rem;
  bottom: -1.5rem;
  background: var(--charcoal);
  color: var(--gold-light);
  padding: 1.4rem 1.8rem;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  max-width: 240px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}
.intro-media-tag span { display: block; font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(217,189,133,0.7); margin-top: 0.5rem; }

.intro-body .eyebrow { justify-content: flex-start; }
.intro-body h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: 1.3rem; }
.intro-body p { color: rgba(35,34,28,0.72); margin-bottom: 1.2rem; }
.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 2.2rem;
  margin-top: 2.3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.intro-stats .stat-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--olive-dark);
}
.intro-stats .stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(35,34,28,0.55);
  margin-top: 0.3rem;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 130px;
  gap: 0.9rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(.19,1,.22,1);
}
.gi-8 img { object-position: 15% center; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.45) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .cap {
  position: absolute;
  left: 1rem;
  bottom: 0.9rem;
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: 0.4s ease;
}
.gallery-item:hover .cap { opacity: 1; transform: translateY(0); }

.gi-1 { grid-column: span 4; grid-row: span 3; }
.gi-2 { grid-column: span 2; grid-row: span 3; }
.gi-3 { grid-column: span 3; grid-row: span 2; }
.gi-4 { grid-column: span 3; grid-row: span 2; }
.gi-5 { grid-column: span 2; grid-row: span 2; }
.gi-6 { grid-column: span 2; grid-row: span 2; }
.gi-7 { grid-column: span 2; grid-row: span 2; }
.gi-8 { grid-column: span 6; grid-row: span 2; }

/* ---------- Video ---------- */
.section-dark {
  background: var(--charcoal);
  color: var(--cream);
}
.section-dark .section-title { color: #fff; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.video-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 780px;
  margin: 0 auto;
}
.video-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 14;
}
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%);
  z-index: 1;
  pointer-events: none;
}
.video-card .vc-label {
  position: absolute;
  top: 0.9rem;
  left: 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  z-index: 2;
  pointer-events: none;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

/* ---------- Story / owner ---------- */
.story {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.story-media img {
  width: 100%;
  border-radius: 4px;
  height: 620px;
  object-fit: cover;
  object-position: top;
}
.story-body blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.4;
  margin: 0 0 1.6rem;
  color: #fff;
}
.story-body cite {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2.2rem;
}
.story-body p { color: rgba(248,245,238,0.72); margin-bottom: 1.1rem; }

/* ---------- Olio section ---------- */
.olio {
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-2) 100%);
  color: var(--cream);
}
.olio-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.olio-media {
  position: relative;
  display: flex;
  justify-content: center;
}
.olio-media img {
  max-height: 620px;
  width: auto;
  border-radius: 2px;
}
.olio-media .olio-badge {
  position: absolute;
  top: 1.5rem;
  right: -1rem;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  border: 1px solid rgba(217,189,133,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 0.8rem;
  background: rgba(22,21,15,0.6);
  backdrop-filter: blur(4px);
}
.olio-body h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); margin-bottom: 1.3rem; }
.olio-body .lede { font-size: 1.1rem; color: var(--gold-light); font-family: var(--font-display); font-style: italic; margin-bottom: 1.3rem; }
.olio-body p { color: rgba(248,245,238,0.72); margin-bottom: 1.2rem; }

.taste-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin: 2.2rem 0 2.4rem;
}
.taste-notes div {
  border: 1px solid var(--line-light);
  border-radius: 4px;
  padding: 1.2rem 1rem;
  text-align: center;
}
.taste-notes .tn-title {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.taste-notes .tn-sub {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: rgba(248,245,238,0.6);
}

.olio-strip {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.olio-strip img { width: 100%; height: 340px; object-fit: cover; border-radius: 4px; }

/* ---------- Cross-promo (link between the two pages) ---------- */
.cross-promo {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.cross-promo-media img { width: 100%; height: auto; display: block; border-radius: 4px; box-shadow: 0 25px 60px rgba(0,0,0,0.18); }
.cross-promo-body .eyebrow { justify-content: flex-start; }
.cross-promo-body h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); margin-bottom: 1.1rem; }
.cross-promo-body p { color: rgba(35,34,28,0.72); margin-bottom: 1.6rem; }
.cross-promo-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--olive-dark);
  margin-bottom: 1.6rem;
}
.cross-promo-price span { font-family: var(--font-body); font-size: 0.85rem; color: rgba(35,34,28,0.55); }

/* ---------- Order section ---------- */
.order-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: flex-start;
}
.price-card {
  background: var(--charcoal-2);
  border: 1px solid var(--line-light);
  border-radius: 6px;
  overflow: hidden;
}
.price-card-img { width: 100%; height: 320px; object-fit: cover; display: block; }
.price-card-body { padding: 1.8rem; }
.price-card-name { font-family: var(--font-display); font-size: 1.3rem; color: #fff; }
.price-card-sub { font-size: 0.8rem; color: rgba(248,245,238,0.55); margin-top: 0.3rem; margin-bottom: 1.3rem; }
.price-card-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}
.price-card-price span { font-family: var(--font-body); font-size: 0.85rem; color: rgba(248,245,238,0.55); margin-left: 0.3rem; }
.price-card-shipping {
  font-size: 0.82rem;
  color: var(--gold-light);
  background: rgba(217,189,133,0.12);
  border: 1px solid rgba(217,189,133,0.3);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  display: inline-block;
  margin-bottom: 1.6rem;
}
.qty-stepper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.qty-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-light);
  background: transparent;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
.qty-btn:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.qty-stepper input {
  width: 48px;
  text-align: center;
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.3rem;
  -moz-appearance: textfield;
}
.qty-stepper input::-webkit-outer-spin-button,
.qty-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.price-card-total {
  font-size: 0.95rem;
  color: rgba(248,245,238,0.85);
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-light);
}
.price-card-total strong { color: var(--gold-light); font-family: var(--font-display); font-size: 1.2rem; }

.price-card-direct {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
}
.price-card-direct span { color: rgba(248,245,238,0.5); margin-bottom: 0.2rem; }
.price-card-direct a { color: var(--gold-light); transition: color 0.3s ease; }
.price-card-direct a:hover { color: #fff; }

.order-form.contact-form input,
.order-form.contact-form textarea {
  border-bottom-color: var(--line-light);
  color: #fff;
}
.order-form.contact-form input::placeholder,
.order-form.contact-form textarea::placeholder { color: rgba(248,245,238,0.45); }
.order-form.contact-form input:focus,
.order-form.contact-form textarea:focus { border-color: var(--gold); }
.order-form .form-note { color: rgba(248,245,238,0.5); }
.order-form .form-success { color: var(--gold-light); border-color: var(--gold); }

/* ---------- Banner (uliveto / location) ---------- */
.banner {
  position: relative;
  height: 62vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.banner-media {
  position: absolute;
  inset: 0;
  background: url("../img/aerial-notturna-piscina.jpg") center / cover no-repeat;
}
.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15,14,9,0.82) 0%, rgba(15,14,9,0.15) 60%);
}
.banner-content {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 6vw, 4rem) 0;
  width: 100%;
}
.banner-content .eyebrow { color: var(--gold-light); }
.banner-content .eyebrow::before, .banner-content .eyebrow::after { background: var(--gold-light); }
.banner-title { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 0.6rem; }
.banner-address { font-size: 0.95rem; color: rgba(255,255,255,0.8); letter-spacing: 0.03em; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
}
.contact-info .info-row {
  display: flex;
  gap: 1.1rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-info .info-row:first-child { padding-top: 0; }
.info-row .info-ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}
.info-row .info-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(35,34,28,0.5); margin-bottom: 0.3rem; }
.info-row .info-value { font-size: 1rem; }
.info-row .info-value a { transition: color 0.3s ease; }
.info-row .info-value a:hover { color: var(--gold); }
.social-row { display: flex; gap: 0.9rem; margin-top: 1.8rem; }
.social-row a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: 0.3s ease;
  font-size: 0.95rem;
}
.social-row a:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 0.85rem 0.1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(35,34,28,0.4); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.78rem; color: rgba(35,34,28,0.5); margin-top: -0.3rem; }
.form-success {
  display: none;
  font-size: 0.85rem;
  color: var(--olive-dark);
  border: 1px solid var(--olive);
  border-radius: 4px;
  padding: 0.8rem 1rem;
}
.form-success.visible { display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: rgba(248,245,238,0.65);
  padding: 3.5rem 0 1.6rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-light);
}
.footer-brand .brand-name { color: #fff; font-family: var(--font-display); font-size: 1.5rem; }
.footer-brand .brand-sub { color: var(--gold-light); font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase; margin-top: 0.4rem; }
.footer-nav { display: flex; gap: 2.4rem; flex-wrap: wrap; }
.footer-nav a { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(248,245,238,0.65); }
.footer-nav a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.6rem;
  font-size: 0.75rem;
}

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
  z-index: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.34);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

@media (max-width: 560px) {
  .whatsapp-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,10,8,0.94);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 4px; }
.lightbox-close {
  position: absolute;
  top: 1.6rem;
  right: 2rem;
  color: #fff;
  font-size: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

/* ---------- Mobile nav panel ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(.19,1,.22,1);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.6rem;
}
.mobile-nav .btn { margin-top: 1rem; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn.btn-gold { display: none; }

  .intro,
  .story,
  .olio-grid,
  .contact-grid,
  .cross-promo,
  .order-grid { grid-template-columns: 1fr; }
  .intro-media img,
  .story-media img { height: 380px; }
  .intro-media-tag { position: static; margin-top: 1.2rem; max-width: 100%; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gi-1, .gi-2, .gi-3, .gi-4, .gi-5, .gi-6, .gi-7 { grid-column: span 2; grid-row: span 2; }
  .gi-8 { grid-column: span 2; grid-row: span 1; }

  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .taste-notes { grid-template-columns: 1fr; }
  .olio-strip { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 560px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { justify-content: center; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .header-left .site-switch { display: none; }
  .header-actions .lang-switch { display: none; }

  .header-switch-mobile {
    display: inline-flex;
    padding: 0.16rem;
  }
  .header-switch-mobile span {
    padding: 0.32rem 0.6rem;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
  }
  .brand .brand-name { font-size: 1.15rem; }
  .brand .brand-sub { font-size: 0.56rem; letter-spacing: 0.18em; }

  .mobile-nav .mobile-lang-switch {
    display: flex;
    gap: 0.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    color: rgba(248,245,238,0.55);
    margin-bottom: 0.4rem;
  }
  .mobile-nav .mobile-lang-switch button {
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
    padding: 0.2rem 0.4rem;
  }
  .mobile-nav .mobile-lang-switch button.active { color: var(--gold); font-weight: 500; }
}
