/* ============================================
   SARAP — Design System
   Wine red + olive + earth tones, dark luxury
   ============================================ */

:root {
  --wine: #5a1622;
  --wine-deep: #3d0f17;
  --wine-bright: #8a2a3a;
  --olive: #6b6b3a;
  --olive-deep: #3f3f22;
  --beige: #e9dfcc;
  --beige-soft: #f3ecdb;
  --cream: #faf6ee;
  --earth: #8a6a44;
  --ink: #1a1413;
  --ink-soft: #2a2220;
  --line: rgba(233, 223, 204, 0.14);
  --muted: #9c8e7a;
  --white: #ffffff;
  --rose: #d8a8b0;

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(80px, 9vw, 140px);

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

ul, ol { list-style: none; }

::selection { background: var(--wine); color: var(--cream); }

/* Containers */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.h-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: inherit;
}
.h-display em {
  font-style: italic;
  color: var(--olive);
}
.h-display.center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.section-dark .eyebrow { color: rgba(233, 223, 204, 0.55); }

.section-lead {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(26, 20, 19, 0.7);
  max-width: 640px;
  margin-top: 18px;
}
.section-dark .section-lead { color: rgba(233, 223, 204, 0.7); }

p { color: rgba(26, 20, 19, 0.78); }
.section-dark p { color: rgba(233, 223, 204, 0.75); }

/* ============================================
   HEADER / NAV
   ============================================ */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  background: linear-gradient(to bottom, rgba(26, 20, 19, 0.6), transparent);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(26, 20, 19, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo{
  height: 36px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--cream);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.brand-mark.big { width: 48px; height: 48px; font-size: 22px; }
.brand-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.18em;
}
.brand-name.big { font-size: 26px; }

.brand-logo-big {
  opacity: 0.65;
  padding: 0 40px 0 40px;
}

.nav-main {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-main a {
  color: rgba(233, 223, 204, 0.78);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.nav-main a:hover,
.nav-main a.active {
  color: var(--cream);
}
.nav-main a.active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 4px;
  height: 4px;
  background: var(--wine-bright);
  border-radius: 50%;
  transform: translateX(-50%);
}

.nav-meta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(233, 223, 204, 0.6);
}
.lang-btn {
  color: inherit;
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 4px 2px;
  transition: color 0.2s var(--ease);
}
.lang-btn.active { color: var(--cream); }
.lang-btn:hover { color: var(--cream); }
.lang-sep { opacity: 0.4; }

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: 12px; }
.btn-lg { padding: 18px 36px; font-size: 14px; }

.btn-primary {
  background: var(--wine);
  color: var(--cream);
  border-color: var(--wine);
}
.btn-primary:hover {
  background: var(--wine-deep);
  border-color: var(--wine-deep);
  transform: translateY(-1px);
}

.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-outline-light {
  border-color: rgba(233, 223, 204, 0.5);
  color: var(--cream);
}
.btn-outline-light:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.btn-ghost {
  border-color: rgba(233, 223, 204, 0.4);
  color: var(--cream);
}
.btn-ghost:hover {
  background: rgba(233, 223, 204, 0.1);
}

.btn-link {
  padding: 6px 0;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--wine);
  border-bottom: 1px solid currentColor;
  text-transform: uppercase;
  font-weight: 500;
}
.section-dark .btn-link { color: var(--beige); }
.btn-link:hover { color: var(--wine-bright); }

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 22s ease-out infinite alternate;
}
@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(26, 20, 19, 0.65) 0%, rgba(26, 20, 19, 0.4) 35%, rgba(26, 20, 19, 0.85) 100%),
    radial-gradient(ellipse at center, transparent 0%, rgba(26, 20, 19, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px var(--gutter) 80px;
  width: 100%;
  text-align: center;
}
.hero-content .eyebrow { color: rgba(233, 223, 204, 0.7); }

.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: #d8a8b0;
}

.hero-sub {
  max-width: 620px;
  margin: 0 auto 40px;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(233, 223, 204, 0.85);
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-cta .btn-link { color: var(--cream); }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(233, 223, 204, 0.7);
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, transparent, rgba(233, 223, 204, 0.7));
  animation: scrollLine 2s ease-in-out infinite;
}
.hero-scroll small {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: var(--section-y) 0;
  position: relative;
}
.section-dark {
  background: var(--ink);
  color: var(--cream);
}
.section-story {
  background: var(--beige-soft);
}
.section-wine {
  background: var(--cream);
}
.section-gallery {
  background: var(--beige-soft);
}
.section-cta {
  position: relative;
  overflow: hidden;
  background: var(--wine-deep);
  color: var(--cream);
  text-align: center;
}
.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  transition: opacity 0.3s;
}
.section-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61, 15, 23, 0.01) 0%, rgba(90, 22, 34, 0.02) 50%, rgba(61, 15, 23, 0.03) 100%);
}
.section-cta .container { position: relative; z-index: 1; }
.section-cta .h-display { color: var(--cream); }
.section-cta .h-display em { color: #f0c4cc; }
.section-cta .eyebrow { color: rgba(233, 223, 204, 0.6); }
.section-cta p { color: rgba(233, 223, 204, 0.85); }

.section-cta.cta-bg-home::before    { background-image: url('assets/images/gallery-2.jpg'); }
.section-cta.cta-bg-events::before  { background-image: url('assets/images/gallery-5.jpg'); }
.section-cta.cta-bg-wine::before    { background-image: url('assets/images/cta-wine.jpg'); }
.section-cta.cta-bg-about::before   { background-image: url('assets/images/cta-about.jpg'); }
.section-cta.cta-bg-gallery::before { background-image: url('assets/images/gallery-2.jpg'); }
.section-cta.cta-bg-camp::before    { background-image: url('assets/images/experience.jpg'); }

.section-head {
  max-width: 760px;
  margin-bottom: 64px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head.split-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 24px;
  max-width: none;
}

/* ============================================
   OFFER GRID (3 cards)
   ============================================ */

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--ink-soft);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease);
}
.offer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(233, 223, 204, 0.3);
}
.offer-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.offer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
  filter: brightness(0.85);
}
.offer-card:hover .offer-img img {
  transform: scale(1.06);
  filter: brightness(1);
}
.offer-body {
  padding: 32px 28px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.offer-num {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--wine-bright);
  letter-spacing: 0.05em;
}
.offer-card h3 {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--cream);
}
.offer-card p {
  font-size: 0.95rem;
  flex: 1;
}
.offer-link {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--beige);
  margin-top: 8px;
  transition: color 0.3s var(--ease), letter-spacing 0.3s var(--ease);
}
.offer-card:hover .offer-link {
  color: #d8a8b0;
  letter-spacing: 0.18em;
}

/* ============================================
   STORY (split image+text)
   ============================================ */

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.story-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(90, 22, 34, 0.2);
  margin: 16px;
  pointer-events: none;
}
.story-text .h-display { margin-bottom: 28px; }
.story-text p { margin-bottom: 18px; max-width: 520px; }
.story-text .btn-link { margin-top: 16px; }

/* ============================================
   SPLIT layouts (wine, outdoor)
   ============================================ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.split.reverse .split-text { order: 2; }
.split.reverse .split-img { order: 1; }
.split-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.split-text .h-display { margin-bottom: 24px; }
.split-text p { margin-bottom: 28px; }

.ticks {
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ticks li {
  position: relative;
  padding-left: 32px;
  font-size: 1rem;
  line-height: 1.5;
}
.ticks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 18px;
  height: 1px;
  background: var(--wine-bright);
}
.section-dark .ticks li::before { background: var(--beige); }

.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.badge {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid rgba(233, 223, 204, 0.3);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--beige);
}

/* ============================================
   EVENT TILES
   ============================================ */

.event-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.event-tile {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ink-soft);
  display: block;
}
.event-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.9);
  transition: filter 0.6s var(--ease), transform 0.8s var(--ease);
}
.event-tile:hover img {
  filter: brightness(0.85) saturate(1.1);
  transform: scale(1.05);
}
.event-tile-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  z-index: 2;
  background: linear-gradient(to top, rgba(26, 20, 19, 0.95), transparent);
}
.event-tile h4 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 6px;
}
.event-tile span {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(233, 223, 204, 0.7);
  text-transform: uppercase;
}
.event-tile-cta {
  background: var(--wine-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.event-tile-cta .event-tile-body {
  position: static;
  background: none;
  text-align: center;
}

/* ============================================
   GALLERY MASONRY
   ============================================ */

.masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.m-item {
  overflow: hidden;
  background: var(--ink);
}
.m-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.m-item:hover img { transform: scale(1.06); }
.m-tall { grid-row: span 2; }
.m-wide { grid-column: span 2; }

/* ============================================
   CTA BLOCK
   ============================================ */

.cta-block {
  text-align: center;
  max-width: 720px;
}
.cta-lead {
  margin: 24px auto 36px;
  font-size: 1.1rem;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--ink);
  color: var(--beige);
  padding: 80px 0 32px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.f-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.f-brand .brand-mark { color: var(--cream); border-color: var(--cream); }
.f-brand .brand-name { color: var(--cream); }
.f-tag {
  font-size: 0.95rem;
  margin-top: 6px;
  max-width: 240px;
}
.f-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.f-col h5 {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.f-col a, .f-col span {
  color: rgba(233, 223, 204, 0.7);
  font-size: 0.9rem;
  transition: color 0.3s var(--ease);
}
.f-col a:hover { color: var(--cream); }
.f-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(233, 223, 204, 0.5);
}

.signature {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(233, 223, 204, 0.5) !important;
}

/* ============================================
   STICKY CTA + WHATSAPP
   ============================================ */

.sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--wine);
  color: var(--cream);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease), background 0.3s var(--ease);
}
.sticky-cta.visible {
  transform: translateY(0);
  opacity: 1;
}
.sticky-cta:hover { background: var(--wine-deep); }
.sticky-cta .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f0c4cc;
  box-shadow: 0 0 0 0 rgba(240, 196, 204, 0.8);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(240, 196, 204, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(240, 196, 204, 0); }
  100% { box-shadow: 0 0 0 0 rgba(240, 196, 204, 0); }
}

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 52px;
  height: 52px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }

.vib-float {
  position: fixed;
  bottom: 24px;
  right: 86px;
  z-index: 91;
  width: 52px;
  height: 52px;
  background: #7360f2;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s var(--ease);
}
.vib-float:hover { transform: scale(1.08); }

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */

.page-hero {
  position: relative;
  padding: 220px 0 100px;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}
.page-hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 24px;
}
.page-hero h1 em { font-style: italic; color: #d8a8b0; }
.page-hero p {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: rgba(233, 223, 204, 0.8);
  max-width: 640px;
  margin-bottom: 32px;
}
.breadcrumb {
  display: flex;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(233, 223, 204, 0.5);
  margin-bottom: 32px;
}
.breadcrumb a:hover { color: var(--cream); }

/* ============================================
   FORM
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
}
.form-card {
  background: var(--cream);
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid rgba(26, 20, 19, 0.08);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(26, 20, 19, 0.2);
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.3s var(--ease);
  border-radius: 0;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--wine);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
  padding: 14px 0;
}
.form-card .btn { width: 100%; margin-top: 16px; }
.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 16px;
  text-align: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.info-block h5 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink);
}
.info-block p, .info-block a {
  color: rgba(26, 20, 19, 0.7);
  font-size: 1rem;
}
.info-block a:hover { color: var(--wine); }

.map-wrap {
  margin-top: 16px;
  aspect-ratio: 16/10;
  background: var(--beige);
  overflow: hidden;
  border: 1px solid rgba(26, 20, 19, 0.08);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ============================================
   PACKAGE / SERVICE GRID
   ============================================ */

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.package {
  padding: 36px 32px;
  border: 1px solid rgba(26, 20, 19, 0.1);
  background: var(--cream);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.package:hover {
  border-color: var(--wine);
  transform: translateY(-2px);
}
.package-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--wine);
  letter-spacing: 0.05em;
}
.package h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  margin: 8px 0 14px;
}
.package p { margin-bottom: 20px; }
.package-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(26, 20, 19, 0.15);
  padding: 6px 12px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service {
  padding: 28px;
  background: var(--beige-soft);
  border: 1px solid rgba(26, 20, 19, 0.06);
}
.service-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--wine);
  margin-bottom: 16px;
  font-family: var(--serif);
  font-style: italic;
}
.service h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.service p { font-size: 0.95rem; }

/* About — values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value {
  text-align: center;
  padding: 32px 24px;
}
.value-num {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--wine-bright);
  font-style: italic;
  margin-bottom: 12px;
}
.value h4 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 8px;
}

/* Gallery filter */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.gallery-grid .m-item { cursor: zoom-in; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26, 20, 19, 0.95);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(233, 223, 204, 0.1);
  color: var(--cream);
  font-size: 24px;
  display: grid;
  place-items: center;
  transition: background 0.3s var(--ease);
}
.lightbox-close:hover { background: rgba(233, 223, 204, 0.25); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .nav-main { display: none; }
  .nav-toggle { display: flex; }
  .nav-main.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--ink);
    padding: 24px var(--gutter);
    border-top: 1px solid var(--line);
    gap: 20px;
  }
  .nav-meta .btn { display: none; }
  .offer-grid { grid-template-columns: 1fr; }
  .event-types { grid-template-columns: repeat(2, 1fr); }
  .package-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-grid, .split { grid-template-columns: 1fr; }
  .split.reverse .split-text { order: 2; }
  .split.reverse .split-img { order: 1; }
  .masonry, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .hero-content { padding: 140px var(--gutter) 80px; }
  .hero-cta { flex-direction: column; gap: 16px; width: 100%; }
  .hero-cta .btn { width: 100%; }
  .event-types { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .f-bottom { flex-direction: column; gap: 8px; }
  .masonry, .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .m-tall, .m-wide { grid-row: auto; grid-column: auto; }
  .sticky-cta { left: 16px; bottom: 16px; padding: 12px 18px; font-size: 11px; }
  .wa-float { right: 12px; bottom: 16px; width: 40px; height: 40px; }
  .vib-float { right: 60px; bottom: 16px; width: 40px; height: 40px; }
  .section-head.split-head { flex-direction: column; align-items: start; }
}
