/* ============================================================
   Casa e Bottega — Design System v2
   "Slow travel / artisan heritage" — editorial boutique aesthetic

   Palette:
     ink       #1a1613   (near-black warm)
     ink-2     #2d2620   (slightly lighter)
     bone      #f5efe6   (warm off-white background)
     paper     #ede4d3   (warm section bg)
     paper-2   #e4d9c3   (calendar range / highlights)
     petrolio  #1f4a4a   (teal-blue accent — La Bottega wall)
     terracotta #b0553a  (warm red accent)
     stone     #9a8f80   (mid-tone grey-brown)
     stone-2   #6b6358   (slightly darker)
     line      rgba(26,22,19,0.12)
     line-soft rgba(26,22,19,0.06)

   Typography:
     Display  : Cormorant Garamond (light italic for headlines)
     Body     : Inter (400/500 utility)
     Mono     : JetBrains Mono (small labels, editorial marks)
   ============================================================ */

/* ---- Reset & Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #1a1613;
  background: #f5efe6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 400; }
p { margin: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ---- CSS Custom Properties --------------------------------- */
:root {
  --ink:          #1a1613;
  --ink-2:        #2d2620;
  --bone:         #f5efe6;
  --paper:        #ede4d3;
  --paper-2:      #e4d9c3;
  --petrolio:     #1f4a4a;
  --petrolio-l:   #2d6060;
  --terracotta:   #1f4a4a;
  --stone:        #9a8f80;
  --stone-2:      #6b6358;
  --line:         rgba(26, 22, 19, 0.12);
  --line-soft:    rgba(26, 22, 19, 0.06);
  --max-w:        1440px;
  --pad-x:        48px;
  --section-py:   120px;
}

/* ---- Typography helpers ------------------------------------ */
.v2-serif {
  font-family: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.v2-display {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 0.95;
}

.v2-mono {
  font-family: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v2-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--stone-2);
}

.v2-label-dot::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
}

/* ---- Layout ----------------------------------------------- */
.v2-container {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.v2-section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.v2-section--tight {
  padding-top: 80px;
  padding-bottom: 80px;
}

.v2-hr {
  border: none;
  height: 1px;
  background: var(--line);
  margin: 0;
}

.v2-divider-label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.v2-divider-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* ---- Buttons ---------------------------------------------- */
.v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  transition: all 180ms ease;
  cursor: pointer;
  white-space: nowrap;
}

.v2-btn--primary {
  background: var(--ink);
  color: var(--bone);
}
.v2-btn--primary:hover {
  background: var(--petrolio);
}

.v2-btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.v2-btn--outline:hover {
  background: var(--ink);
  color: var(--bone);
}

.v2-btn--ghost {
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: letter-spacing 180ms ease, gap 180ms ease;
}
.v2-btn--ghost:hover {
  letter-spacing: 0.11em;
  gap: 14px;
}

/* underline link */
.v2-ulink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: gap 180ms ease;
}
.v2-ulink:hover { gap: 14px; }

/* ---- Image frames ----------------------------------------- */
.v2-img-frame {
  overflow: hidden;
  background: var(--paper);
  position: relative;
}
.v2-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 900ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.v2-img-frame:hover img {
  transform: scale(1.03);
}

/* Grain overlay */
.v2-grain::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1  0 0 0 0 0.08  0 0 0 0 0.06  0 0 0 0.35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   NAV
   ============================================================ */
.v2-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 239, 230, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line-soft);
}

.v2-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px var(--pad-x);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.v2-nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--ink);
  text-decoration: none;
}
.v2-nav-brand em {
  font-style: italic;
  color: var(--terracotta);
}

/* Desktop nav links (inside the nav bar) */
.v2-nav-links-desktop {
  display: flex;
  gap: 36px;
  align-items: center;
}

.v2-nav-links-desktop a {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color 180ms ease;
}
.v2-nav-links-desktop a:hover,
.v2-nav-links-desktop a.active {
  color: var(--ink);
}
.v2-nav-links-desktop a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -3px;
  height: 1px;
  background: var(--terracotta);
}

/* Mobile nav panel — outside <nav>, so position:fixed works correctly */
.v2-nav-links {
  display: none; /* hidden on desktop */
}

.v2-nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.v2-nav-lang {
  display: flex;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--stone);
}
.v2-nav-lang a {
  color: var(--stone);
  transition: color 180ms ease;
}
.v2-nav-lang a:hover,
.v2-nav-lang a.on {
  color: var(--ink);
}

/* mobile hamburger — hidden by default on desktop */
.v2-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.v2-menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 250ms ease, opacity 250ms ease;
}

/* ============================================================
   HERO — two-column editorial
   ============================================================ */
.v2-hero {
  position: relative;
  min-height: calc(100vh - 73px);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
}

/* Left editorial column */
.v2-hero-left {
  padding: 80px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.v2-hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 0.95;
  font-size: clamp(68px, 9vw, 148px);
  margin-bottom: 36px;
}

.v2-hero-title em {
  font-style: italic;
  color: var(--terracotta);
}

.v2-hero-tagline {
  max-width: 460px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 40px;
}

.v2-hero-ctas {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

/* Proof strip at the bottom of hero left */
.v2-hero-proof {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.v2-hero-proof-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  line-height: 1;
}
.v2-hero-proof-num sup {
  font-size: 20px;
  color: var(--stone);
  vertical-align: baseline;
}

/* Right image column */
.v2-hero-right {
  position: relative;
  overflow: hidden;
}

.v2-hero-right-img {
  position: absolute;
  inset: 0;
}
.v2-hero-right-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Editorial vertical mark */
.v2-hero-editorial-mark {
  position: absolute;
  top: 40px;
  right: 40px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  color: rgba(245, 239, 230, 0.85);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}

/* Price tag */
.v2-hero-price-tag {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: var(--bone);
  padding: 18px 22px;
  border-radius: 2px;
  max-width: 260px;
  z-index: 2;
}
.v2-hero-price-tag-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--terracotta);
  margin-bottom: 6px;
}
.v2-hero-price-tag-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  line-height: 1;
}
.v2-hero-price-tag-num span {
  font-size: 14px;
  color: var(--stone);
}
.v2-hero-price-tag-note {
  font-size: 12px;
  color: var(--stone-2);
  margin-top: 6px;
}

/* ============================================================
   STORY SECTION
   ============================================================ */
.v2-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.v2-story-img-caption {
  margin-top: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-2);
}

.v2-story-content {
  padding-top: 40px;
}

.v2-story-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 0.95;
  font-size: clamp(44px, 5vw, 76px);
  margin-bottom: 40px;
  max-width: 640px;
}
.v2-story-headline em {
  font-style: italic;
  color: var(--petrolio);
}

.v2-story-body {
  display: grid;
  gap: 22px;
  max-width: 540px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
}
.v2-story-body em { color: var(--terracotta); font-style: italic; }

.v2-story-hosts {
  margin-top: 50px;
  display: flex;
  gap: 32px;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.v2-host-avatars {
  display: flex;
}

.v2-host-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--bone);
  border: 2px solid var(--bone);
}
.v2-host-avatar:first-child {
  background: var(--petrolio);
  z-index: 1;
}
.v2-host-avatar:last-child {
  background: var(--terracotta);
  margin-left: -14px;
}

.v2-host-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  margin-top: 4px;
}
.v2-host-name span { color: var(--stone); }

/* ============================================================
   ROOMS TEASER
   ============================================================ */
.v2-rooms {
  background: var(--paper);
}

.v2-rooms-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 70px;
  gap: 40px;
  flex-wrap: wrap;
}

.v2-rooms-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 0.95;
  font-size: clamp(48px, 6vw, 96px);
  max-width: 800px;
}
.v2-rooms-headline em { font-style: italic; }

.v2-rooms-intro {
  max-width: 360px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.7;
}

.v2-rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.v2-room-card {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.v2-room-card-img {
  aspect-ratio: 4/5;
  margin-bottom: 24px;
  overflow: hidden;
  background: var(--paper-2);
  position: relative;
}
.v2-room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 900ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.v2-room-card:hover .v2-room-card-img img {
  transform: scale(1.03);
}

.v2-room-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.v2-room-card-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-2);
  margin-bottom: 6px;
}

.v2-room-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 42px;
  letter-spacing: -0.01em;
  line-height: 1;
}

.v2-room-card-price-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-2);
  margin-bottom: 2px;
}
.v2-room-card-price-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  line-height: 1;
}
.v2-room-card-price-num span {
  font-size: 13px;
  color: var(--stone);
}

.v2-room-card-desc {
  font-size: 16px;
  color: var(--ink-2);
  margin-bottom: 20px;
  max-width: 480px;
}

.v2-room-card-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.v2-room-card-features span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone-2);
}

/* ============================================================
   PLACE / MAP
   ============================================================ */
.v2-place-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.v2-place-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 0.95;
  font-size: clamp(44px, 5vw, 76px);
  margin-bottom: 24px;
  max-width: 500px;
}
.v2-place-headline em {
  font-style: italic;
  color: var(--petrolio);
}

.v2-place-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 460px;
  margin-bottom: 30px;
}

.v2-place-distances {
  display: flex;
  flex-direction: column;
}

.v2-place-dist-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
}

.v2-place-dist-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
}

.v2-place-dist-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone-2);
  white-space: nowrap;
}

/* SVG map container */
.v2-map-container {
  position: relative;
  aspect-ratio: 1;
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
}

.v2-map-container svg {
  width: 100%;
  height: 100%;
}

.v2-map-link {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--bone);
  padding: 10px 14px;
  font-size: 12px;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 2px;
  transition: background 180ms ease;
}
.v2-map-link:hover { background: var(--paper-2); }

/* ============================================================
   REVIEWS
   ============================================================ */
.v2-reviews {
  background: var(--ink);
  color: var(--bone);
}

.v2-reviews-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}

.v2-reviews-scores {}

.v2-reviews-score-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  line-height: 1;
  margin-bottom: 4px;
}
.v2-reviews-score-num sup {
  font-size: 20px;
  opacity: 0.6;
  vertical-align: baseline;
}

.v2-reviews-score-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 32px;
}

.v2-reviews-award {
  padding: 20px 0;
  border-top: 1px solid rgba(245, 239, 230, 0.15);
  font-size: 12px;
  letter-spacing: 0.06em;
  opacity: 0.75;
}

/* Review carousel */
.v2-review-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  line-height: 0.8;
  color: var(--terracotta);
  margin-bottom: 20px;
}

.v2-review-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.3;
  margin-bottom: 40px;
  max-width: 780px;
  min-height: 160px;
  transition: opacity 300ms ease;
}

.v2-review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(245, 239, 230, 0.2);
}

.v2-review-author-name {
  font-size: 18px;
  margin-bottom: 4px;
}
.v2-review-author-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}

.v2-review-controls {
  display: flex;
  gap: 6px;
  align-items: center;
}

.v2-review-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  opacity: 0.6;
  margin-right: 14px;
}

.v2-review-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(245, 239, 230, 0.3) !important;
  color: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 180ms ease, background 180ms ease;
  background: none;
  cursor: pointer;
  font-size: 18px;
  font-family: 'Cormorant Garamond', serif;
}
.v2-review-btn:hover {
  border-color: rgba(245, 239, 230, 0.7) !important;
  background: rgba(245, 239, 230, 0.08);
}

/* ============================================================
   DIRECT BOOKING
   ============================================================ */
.v2-booking-cta {
  background: var(--paper);
}

.v2-booking-cta-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.v2-booking-cta-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 0.95;
  font-size: clamp(40px, 5vw, 72px);
  margin-bottom: 24px;
}
.v2-booking-cta-headline em {
  font-style: italic;
  color: var(--terracotta);
}

.v2-booking-cta-body {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.6;
}

.v2-booking-table-wrap {
  max-width: 960px;
  margin: 0 auto;
  background: var(--bone);
  padding: 50px 60px;
}

.v2-booking-table {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
}

.v2-bt-col-head {
  padding: 20px 30px 20px 0;
  border-bottom: 1px solid var(--ink);
}
.v2-bt-col-head--alt {
  padding: 20px 0 20px 30px;
  border-bottom: 1px solid var(--line);
}

.v2-bt-col-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.v2-bt-col-label--primary { color: var(--terracotta); }
.v2-bt-col-label--alt { color: var(--stone-2); }

.v2-bt-col-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
}
.v2-bt-col-name--alt { color: var(--stone-2); }

.v2-bt-cell {
  padding: 24px 0;
}
.v2-bt-cell--label {
  padding-right: 20px;
}
.v2-bt-cell--primary {
  padding-right: 30px;
  font-size: 16px;
}
.v2-bt-cell--alt {
  padding-left: 30px;
  font-size: 16px;
  color: var(--stone-2);
}
.v2-bt-cell--bordered {
  border-bottom: 1px solid var(--line);
}

.v2-bt-check {
  color: var(--petrolio);
  margin-right: 10px;
}

.v2-booking-table-cta {
  text-align: center;
  margin-top: 50px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.v2-footer {
  background: var(--ink);
  color: var(--bone);
  padding: 80px 0 40px;
}

.v2-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.v2-footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  line-height: 1;
  margin-bottom: 16px;
}
.v2-footer-brand em { color: var(--terracotta); font-style: italic; }

.v2-footer-tagline {
  opacity: 0.7;
  font-size: 15px;
  line-height: 1.7;
  max-width: 340px;
}

.v2-footer-col-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(245, 239, 230, 0.5);
  margin-bottom: 16px;
  display: block;
}

.v2-footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.v2-footer-col a {
  font-size: 14px;
  color: var(--bone);
  opacity: 0.85;
  transition: opacity 180ms ease;
}
.v2-footer-col a:hover { opacity: 1; }

.v2-footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(245, 239, 230, 0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12px;
  opacity: 0.5;
  letter-spacing: 0.04em;
}

/* ============================================================
   WHATSAPP PILL (sticky)
   ============================================================ */
.v2-wa-pill {
  position: fixed;
  right: 28px;
  bottom: 28px;
  background: var(--ink);
  color: var(--bone);
  padding: 14px 20px;
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: 0.04em;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  z-index: 40;
  transition: all 200ms ease;
  text-decoration: none;
}
.v2-wa-pill:hover {
  transform: translateY(-2px);
  background: var(--petrolio);
}
.v2-wa-pill svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Mobile sticky bar */
.v2-sticky-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.v2-smb-wa,
.v2-smb-book {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  font-size: 12px;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 180ms ease;
}
.v2-smb-wa {
  color: var(--bone);
  border-right: 1px solid rgba(245, 239, 230, 0.2);
}
.v2-smb-wa:hover { background: rgba(245, 239, 230, 0.08); }
.v2-smb-book {
  background: var(--terracotta);
  color: var(--bone);
}
.v2-smb-book:hover { background: #9a4530; }

/* ============================================================
   SKIP LINK
   ============================================================ */
.v2-skip {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--ink);
  color: var(--bone);
  padding: 12px 20px;
  font-size: 13px;
  z-index: 1000;
  transition: top 200ms ease;
}
.v2-skip:focus { top: 0; }

/* ============================================================
   FADE-IN ANIMATIONS
   ============================================================ */
.v2-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.v2-fade.v2-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  :root {
    --pad-x: 32px;
    --section-py: 96px;
  }

  .v2-hero { grid-template-columns: 1fr 1fr; }
  .v2-hero-left { padding: 60px 60px 50px; }

  .v2-story-grid { gap: 60px; }
  .v2-reviews-grid { gap: 60px; }
  .v2-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  :root {
    --pad-x: 24px;
    --section-py: 72px;
  }

  /* Nav collapse */
  .v2-nav-inner {
    grid-template-columns: 1fr auto;
    padding: 16px var(--pad-x);
  }

  /* Hide desktop nav links on mobile */
  .v2-nav-links-desktop { display: none; }

  /* Mobile nav panel — fixed to viewport (lives outside backdrop-filter parent) */
  .v2-nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h, 57px);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bone);
    flex-direction: column;
    gap: 0;
    padding: 24px 0;
    border-top: 1px solid var(--line-soft);
    z-index: 200;
    align-items: flex-start;
    overflow-y: auto;
  }
  .v2-nav-links.v2-open { display: flex; }
  .v2-nav-links a {
    padding: 14px var(--pad-x);
    font-size: 15px;
    width: 100%;
    border-bottom: 1px solid var(--line-soft);
    color: var(--ink-2);
    text-decoration: none;
    transition: color 180ms ease;
  }
  .v2-nav-links a:hover,
  .v2-nav-links a.active { color: var(--ink); }
  .v2-nav-links a.active::after { display: none; }
  .v2-nav-lang {
    padding: 16px var(--pad-x);
    width: 100%;
    justify-content: flex-start;
  }

  .v2-nav-right .v2-btn { display: none; }
  .v2-nav-right .v2-nav-lang { display: none; }
  .v2-menu-toggle { display: flex; }

  /* Hero */
  .v2-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .v2-hero-right {
    height: 60vw;
    min-height: 300px;
  }
  .v2-hero-left {
    padding: 48px 24px 40px;
    order: 2;
  }
  .v2-hero-right { order: 1; }
  .v2-hero-proof { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .v2-hero-proof-num { font-size: 28px; }

  /* Story */
  .v2-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .v2-story-content { padding-top: 0; }

  /* Rooms */
  .v2-rooms-header { flex-direction: column; align-items: flex-start; margin-bottom: 48px; }
  .v2-rooms-grid { grid-template-columns: 1fr; gap: 56px; }

  /* Place */
  .v2-place-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .v2-place-distances { grid-template-columns: 1fr; }

  /* Reviews */
  .v2-reviews-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .v2-reviews-score-num { font-size: 48px; }

  /* Booking table */
  .v2-booking-table-wrap { padding: 32px 24px; }
  .v2-booking-table {
    grid-template-columns: 120px 1fr 1fr;
  }

  /* Footer */
  .v2-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* WhatsApp pill */
  .v2-wa-pill { display: none; }
  .v2-sticky-mobile { display: grid; }
  body { padding-bottom: 56px; }
}

@media (max-width: 600px) {
  :root { --pad-x: 20px; }

  .v2-hero-title { font-size: clamp(52px, 14vw, 88px); }
  .v2-hero-proof { grid-template-columns: 1fr 1fr; }
  .v2-hero-proof > *:last-child { grid-column: 1 / -1; }

  .v2-rooms-headline { font-size: clamp(40px, 12vw, 68px); }

  .v2-booking-table { grid-template-columns: 100px 1fr 1fr; }
  .v2-booking-table-wrap { padding: 24px 16px; }
  .v2-bt-col-head, .v2-bt-col-head--alt { padding: 16px 16px 16px 0; }
  .v2-bt-cell--primary { padding-right: 16px; }
  .v2-bt-cell--alt { padding-left: 16px; }

  .v2-footer-grid { grid-template-columns: 1fr; }
  .v2-footer-brand { font-size: 28px; }

  .v2-reviews-grid { gap: 28px; }
  .v2-review-text { font-size: clamp(20px, 6vw, 30px); min-height: auto; }
}
