:root{
  --cream:#F7EEDF;
  --cream-2:#EFE3CC;
  --terracotta:#C1502E;
  --brick:#8C3324;
  --ochre:#D9A438;
  --ink:#2B2420;
  --iron:#3A322B;
  --sage:#8FA483;
  --paper:#FBF6EC;
  --maxw:1180px;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  overflow-x:hidden;
  max-width:100vw;
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:'Work Sans', sans-serif;
  font-weight:400;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3, .display{
  font-family:'Fraunces', serif;
  font-weight:450;
  margin:0;
  letter-spacing:-0.01em;
}
a{color:inherit;text-decoration:none;}
img{max-width:100%;display:block;}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 28px;}
.eyebrow{
  font-family:'Work Sans', sans-serif;
  text-transform:uppercase;
  letter-spacing:0.18em;
  font-size:12px;
  font-weight:600;
  color:var(--brick);
}
section{ padding:110px 0; }

/* ---------- NAV ---------- */
header.nav{
  position:fixed; top:0; left:0; right:0; z-index:50;
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 28px;
  background:linear-gradient(to bottom, rgba(43,36,32,0.55), rgba(43,36,32,0));
  transition:background .3s ease;
}
header.nav.scrolled{ background:var(--paper); box-shadow:0 1px 0 rgba(0,0,0,0.06); }
header.nav.solid{ background:var(--paper); box-shadow:0 1px 0 rgba(0,0,0,0.06); }
header.nav.menu-open{ background:var(--paper); box-shadow:0 1px 0 rgba(0,0,0,0.06); }
header.nav .logo{
  font-family:'Fraunces', serif; font-size:20px; font-style:italic; font-weight:600;
  color:#fff; letter-spacing:0.01em;
  display:flex; align-items:center; gap:10px;
}
.logo-mark{ height:40px; width:auto; display:block; flex:none; }
header.nav.scrolled .logo, header.nav.solid .logo, header.nav.menu-open .logo{ color:var(--ink); }
nav.links{ display:flex; gap:26px; align-items:center; }
nav.links a{
  font-size:13px; text-transform:uppercase; letter-spacing:0.1em; font-weight:500;
  color:#fff; opacity:0.9;
}
header.nav.scrolled nav.links a, header.nav.solid nav.links a, header.nav.menu-open nav.links a{ color:var(--ink); }
nav.links a:hover{ opacity:1; text-decoration:underline; text-decoration-color:var(--ochre); text-underline-offset:4px;}
nav.links a.active{ opacity:1; border-bottom:2px solid var(--ochre); }
#langToggle{
  border:1px solid rgba(255,255,255,0.6); background:transparent; color:#fff;
  font-size:12px; letter-spacing:0.08em; padding:6px 12px; border-radius:20px; cursor:pointer;
  font-family:'Work Sans',sans-serif; font-weight:500;
}
header.nav.scrolled #langToggle, header.nav.solid #langToggle, header.nav.menu-open #langToggle{ border-color:var(--ink); color:var(--ink); }

.nav-right{ display:flex; align-items:center; gap:16px; position:relative; z-index:60; }

.nav-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:32px; height:32px; background:none; border:none; cursor:pointer; padding:0;
}
.nav-toggle span{
  width:100%; height:2px; background:#fff; border-radius:2px;
  transition:transform .25s ease, opacity .25s ease;
}
header.nav.scrolled .nav-toggle span, header.nav.solid .nav-toggle span, header.nav.menu-open .nav-toggle span{ background:var(--ink); }
.nav-toggle.active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2){ opacity:0; }
.nav-toggle.active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ---------- HERO (home) ---------- */
.hero{
  position:relative; height:100vh; height:100dvh; min-height:640px;
  display:flex; align-items:flex-end;
  background:#000;
  overflow:hidden;
}
.hero img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  filter:saturate(1.05);
}
.hero::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(30,24,20,0.25) 0%, rgba(30,24,20,0.15) 40%, rgba(20,16,13,0.85) 100%);
}
.hero-content{ position:relative; z-index:2; padding:0 28px 90px; width:100%; max-width:var(--maxw); margin:0 auto; color:#fff; }
.hero-content .eyebrow, .page-hero-content .eyebrow{
  display:inline-block; color:#fff; background:rgba(20,16,13,0.55);
  padding:7px 16px; border-radius:20px; backdrop-filter:blur(3px);
}
.hero h1{
  font-size:clamp(48px, 9vw, 108px);
  font-style:italic;
  line-height:0.95;
  margin:8px 0 18px;
  color:#fff;
}
.hero p.tagline{
  font-size:clamp(16px,2vw,20px); max-width:480px; color:#EFE6D6; font-weight:300;
}
.scrollcue{
  position:absolute; bottom:28px; left:28px; z-index:2; color:#EFE6D6;
  font-size:12px; text-transform:uppercase; letter-spacing:0.15em;
  display:flex; align-items:center; gap:10px;
}
.scrollcue .line{ width:1px; height:34px; background:rgba(255,255,255,0.5); position:relative; overflow:hidden;}
.scrollcue .line::after{ content:''; position:absolute; top:0; left:0; width:100%; height:40%; background:var(--ochre); animation:cue 2.2s infinite ease-in-out;}
@keyframes cue{ 0%{transform:translateY(-100%);} 100%{transform:translateY(250%);} }

/* ---------- PAGE HERO (sub-pages) ---------- */
.page-hero{
  position:relative; height:46vh; height:46dvh; min-height:320px;
  display:flex; align-items:flex-end;
  background:#000; overflow:hidden;
}
.page-hero img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  filter:saturate(1.05);
}
.page-hero::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(30,24,20,0.2) 0%, rgba(30,24,20,0.15) 30%, rgba(20,16,13,0.82) 100%);
}
.page-hero-content{ position:relative; z-index:2; padding:0 28px 48px; width:100%; max-width:var(--maxw); margin:0 auto; color:#fff; }
.page-hero h1{ font-size:clamp(32px,6vw,60px); font-style:italic; margin:8px 0 0; color:#fff; }

/* ---------- IRON DIVIDER (signature element) ---------- */
.iron-divider{
  height:46px;
  background-repeat:repeat-x;
  background-position:center;
  background-size:auto 100%;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='46' viewBox='0 0 120 46'><g fill='none' stroke='%233A322B' stroke-width='2.2' stroke-linecap='round'><path d='M0 23 C 15 6, 25 6, 30 23 C 35 40, 45 40, 60 23'/><path d='M60 23 C 75 6, 85 6, 90 23 C 95 40, 105 40, 120 23'/><circle cx='30' cy='23' r='3.4' fill='%233A322B'/><circle cx='90' cy='23' r='3.4' fill='%233A322B'/></g></svg>");
  opacity:0.85;
}
.iron-divider.light{
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='46' viewBox='0 0 120 46'><g fill='none' stroke='%23EFE3CC' stroke-width='2.2' stroke-linecap='round'><path d='M0 23 C 15 6, 25 6, 30 23 C 35 40, 45 40, 60 23'/><path d='M60 23 C 75 6, 85 6, 90 23 C 95 40, 105 40, 120 23'/><circle cx='30' cy='23' r='3.4' fill='%23EFE3CC'/><circle cx='90' cy='23' r='3.4' fill='%23EFE3CC'/></g></svg>");
}

/* ---------- STORY ---------- */
.story{ background:var(--paper); }
.story-grid{ display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.story h2{ font-size:clamp(30px,4vw,44px); font-style:italic; margin:14px 0 22px; }
.story p{ font-size:16px; color:#4a4038; max-width:460px; }
.story-photo{ position:relative; }
.story-photo img{ border-radius:2px; }
.story-photo .frame-tag{
  position:absolute; bottom:-18px; left:-18px; background:var(--terracotta); color:#fff;
  padding:10px 18px; font-family:'Fraunces',serif; font-style:italic; font-size:14px; border-radius:2px;
  box-shadow:0 8px 20px rgba(140,51,36,0.3);
}

/* ---------- QUICK FACTS ---------- */
.facts{ background:var(--ink); color:var(--cream); padding:60px 0; }
.facts-row{ display:flex; flex-wrap:wrap; gap:40px; justify-content:center; }
.fact{ flex:1; min-width:140px; max-width:220px; text-align:center; }
.fact .num{ font-family:'Fraunces',serif; font-size:38px; font-style:italic; color:var(--ochre); }
.fact:nth-child(even) .num{ color:var(--terracotta); }
.fact .lab{ font-size:12px; text-transform:uppercase; letter-spacing:0.12em; opacity:0.85; margin-top:6px;}

/* ---------- SECTION HEAD ---------- */
.section-head{ text-align:center; margin-bottom:56px; }
.section-head h2{ font-size:clamp(30px,4vw,44px); font-style:italic; margin-top:10px; }
.section-head.left{ text-align:left; margin-bottom:40px; }

/* ---------- GALLERY ---------- */
.gallery{ background:var(--cream); }
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap:14px;
}
.gallery-grid figure{ margin:0; position:relative; overflow:hidden; border-radius:2px; }
.gallery-grid img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.gallery-grid figure:hover img{ transform:scale(1.06); }
.gallery-grid figcaption{
  position:absolute; bottom:0; left:0; right:0; padding:14px 16px 10px;
  background:linear-gradient(180deg, rgba(0,0,0,0), rgba(20,15,12,0.75));
  color:#fff; font-size:13px; opacity:0; transition:opacity .3s ease;
}
.gallery-grid figure:hover figcaption{ opacity:1; }
.g1{ grid-column:span 3; grid-row:span 2; }
.g2{ grid-column:span 3; grid-row:span 1; }
.g3{ grid-column:span 3; grid-row:span 1; }
.g4{ grid-column:span 2; grid-row:span 1; }
.g5{ grid-column:span 2; grid-row:span 1; }
.g6{ grid-column:span 2; grid-row:span 1; }
.g7{ grid-column:span 3; grid-row:span 1; }
.g8{ grid-column:span 3; grid-row:span 1; }
.g9{ grid-column:span 2; grid-row:span 1; }
.g10{ grid-column:span 2; grid-row:span 1; }
.g11{ grid-column:span 2; grid-row:span 1; }
.gallery-cta{ text-align:center; margin-top:48px; }

/* generic button */
.btn-solid{
  display:inline-flex; align-items:center; gap:8px; padding:14px 28px; border-radius:30px;
  font-weight:600; font-size:14px; background:var(--terracotta); color:#fff;
}
.btn-solid:hover{ background:var(--brick); transform:translateY(-2px); transition:all .2s ease; }
.btn-line{
  display:inline-flex; align-items:center; gap:8px; padding:13px 26px; border-radius:30px;
  font-weight:600; font-size:14px; background:transparent; color:var(--terracotta); border:2px solid var(--terracotta);
}
.btn-line:hover{ background:var(--terracotta); color:#fff; transition:all .2s ease; }

/* ---------- FLAG STRIPE (vivacity accent) ---------- */
.flag-stripe{
  height:9px;
  background: repeating-linear-gradient(45deg,
    var(--terracotta) 0px, var(--terracotta) 18px,
    var(--ochre) 18px, var(--ochre) 36px);
}

/* ---------- AMENITY ICON CIRCLES ---------- */
.am{ align-items:center; }
.am-icon{
  width:52px; height:52px; border-radius:50%; flex:none;
  display:flex; align-items:center; justify-content:center;
}
.am-icon.c-terracotta{ background:var(--terracotta); }
.am-icon.c-ochre{ background:var(--ochre); }
.am-icon svg{ width:24px; height:24px; stroke:#fff; }
.am svg{ stroke:var(--brick); } /* fallback if unwrapped */
.amenities{ background:var(--paper); }
.am-grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:2px;
  border:1px solid var(--cream-2);
}
.am{
  padding:32px 26px; border:1px solid var(--cream-2);
  display:flex; gap:16px; align-items:flex-start;
}
.am svg{ flex:none; width:28px; height:28px; stroke:var(--brick); }
.am .am-title{ font-weight:600; font-size:15px; margin-bottom:4px; }
.am .am-sub{ font-size:13px; color:#6b5f53; }

/* ---------- LOCATION / CITY INTRO ---------- */
.location{ background:var(--iron); color:var(--cream); }
.location .eyebrow{ color:var(--ochre); }
.loc-grid{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.loc-grid h2{ color:var(--cream); font-style:italic; font-size:clamp(28px,3.6vw,40px); margin:12px 0 20px;}
.loc-grid p{ color:#DED0B8; max-width:440px; }
.loc-photos{ display:grid; grid-template-columns:1.2fr 1fr; gap:14px; }
.loc-photos img{ border-radius:2px; }
.loc-photos .tall{ grid-row:span 2; height:100%; object-fit:cover; }
.note-box{
  margin-top:28px; padding:18px 20px; border:1px dashed rgba(217,164,56,0.5); border-radius:2px;
  font-size:14px; color:#EFE3CC; font-style:italic;
}
.note-box.on-paper{ border-color:rgba(140,51,36,0.35); color:var(--iron); }

/* ---------- ARRIVAL / INFO CARDS ---------- */
.guide{ background:var(--paper); padding:90px 0; }
.info-cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin:0 0 68px; }
.info-cards-4{ grid-template-columns:repeat(4,1fr); margin-bottom:0; }
.info-card{ background:var(--cream-2); border-radius:10px; padding:26px 24px; border-top:4px solid var(--terracotta); }
.info-cards .info-card:nth-child(2){ border-top-color:var(--ochre); }
.info-cards .info-card:nth-child(4){ border-top-color:var(--ochre); }
a.info-card{ display:block; transition:transform .2s ease, box-shadow .2s ease; }
a.info-card:hover{ transform:translateY(-3px); box-shadow:0 14px 30px rgba(0,0,0,0.1); }
.info-card .ic-arrow{ font-family:'Fraunces',serif; font-style:italic; color:var(--terracotta); font-size:14px; }
.info-card .ic-label{ font-size:11px; text-transform:uppercase; letter-spacing:.12em; color:var(--brick); font-weight:600; margin-bottom:10px; }
.info-card .ic-value{ font-family:'Fraunces',serif; font-style:italic; font-size:1.6rem; color:var(--ink); margin-bottom:8px; }
.info-card p{ font-size:13.5px; color:var(--iron); opacity:.85; }

.tips-grid{ display:grid; grid-template-columns:1fr 1fr; gap:50px; margin-top:20px; }
.tips-grid h3{ font-family:'Fraunces',serif; font-style:italic; font-size:1.3rem; color:var(--brick); margin-bottom:16px; }
.tips-list{ list-style:none; padding:0; margin:0; }
.tips-list li{ padding:11px 0; border-bottom:1px solid var(--cream-2); font-size:14.5px; }
.tips-list li b{ color:var(--brick); }

/* ---------- ITINERARY ---------- */
.itin-intro{ max-width:600px; margin-bottom:44px; }
.itinerary{ position:relative; }
.itin-step{ display:flex; gap:22px; padding-bottom:32px; position:relative; }
.itin-step:not(:last-child)::before{
  content:''; position:absolute; left:19px; top:42px; bottom:-2px; width:2px;
  background:var(--ochre); opacity:.4;
}
.itin-num{
  flex:0 0 40px; height:40px; border-radius:50%; background:var(--terracotta); color:#fff;
  display:flex; align-items:center; justify-content:center; font-family:'Fraunces',serif;
  font-style:italic; font-weight:600; font-size:16px; z-index:1;
}
.itin-step:nth-child(even) .itin-num{ background:var(--ochre); }
.itin-body{ padding-top:4px; }
.itin-body h4{ font-family:'Fraunces',serif; font-size:1.1rem; color:var(--brick); margin-bottom:5px; }
.itin-body p{ font-size:14px; color:var(--iron); opacity:.9; margin-bottom:6px; max-width:520px; }
.itin-time{ font-size:12px; font-family:monospace; color:var(--sage); font-weight:600; }
.guide-note{
  margin-top:10px; padding:18px 20px; border:1px dashed rgba(140,51,36,0.35); border-radius:2px;
  font-size:14px; color:var(--iron); font-style:italic; max-width:640px;
}

/* ---------- MAP BOX ---------- */
.map-box{ margin:20px 0 70px; border-radius:10px; overflow:hidden; box-shadow:0 20px 50px rgba(0,0,0,0.15); }
.map-box iframe{ width:100%; height:480px; border:0; display:block; }
.map-box-wrap{ margin:20px 0 70px; }
.map-gate{
  border:1px dashed var(--cream-2); border-radius:10px;
  padding:60px 24px; text-align:center; background:var(--cream-2);
}
.map-gate p{ font-size:14.5px; color:var(--iron); font-style:italic; max-width:440px; margin:0 auto 18px; }
.map-gate .book-btn{ display:inline-block; cursor:pointer; border:none; font:inherit; }

/* ---------- FOOD LIST ---------- */
.food-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:10px; }
.food-card{ background:var(--cream-2); border-radius:10px; padding:24px; }
.food-card .fc-cat{ font-size:11px; text-transform:uppercase; letter-spacing:.12em; color:var(--brick); font-weight:600; margin-bottom:8px; }
.food-card h4{ font-family:'Fraunces',serif; font-style:italic; font-size:1.15rem; margin-bottom:6px; }
.food-card p{ font-size:13.5px; color:var(--iron); opacity:.85; }

/* ---------- BOOKING ---------- */
.prenota{ background:var(--terracotta); color:#fff; text-align:center; }
.prenota .eyebrow{ color:#F6DEC7; }
.prenota h2{ color:#fff; font-style:italic; font-size:clamp(34px,5vw,58px); margin:14px 0 20px; }
.prenota p.lead{ max-width:520px; margin:0 auto 44px; color:#FBEADC; font-size:16px;}
.book-options{ display:flex; flex-wrap:wrap; gap:16px; justify-content:center; margin-bottom:50px; }
.book-btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:15px 28px; border-radius:30px; font-weight:600; font-size:14px;
  background:#fff; color:var(--brick); border:2px solid transparent;
}
.book-btn.outline{ background:transparent; color:#fff; border-color:rgba(255,255,255,0.7); }
.book-btn:hover{ transform:translateY(-2px); transition:transform .2s ease; }
.smoobu-box{
  background:var(--paper); border-radius:16px; padding:0 0 18px;
  max-width:680px; margin:0 auto 46px; overflow:hidden;
  box-shadow:0 24px 60px rgba(0,0,0,0.22);
  text-align:left;
}
.smoobu-flag{
  height:8px;
  background: repeating-linear-gradient(45deg,
    var(--terracotta) 0px, var(--terracotta) 16px,
    var(--ochre) 16px, var(--ochre) 32px);
}
.smoobu-header{
  display:flex; align-items:center; gap:14px;
  padding:24px 28px 18px; border-bottom:1px solid var(--cream-2);
}
.smoobu-header .sh-icon{
  width:46px; height:46px; border-radius:50%; flex:none;
  background:var(--terracotta); color:#fff;
  display:flex; align-items:center; justify-content:center;
}
.smoobu-header .sh-icon svg{ width:22px; height:22px; stroke:#fff; }
.smoobu-header h3{
  font-family:'Fraunces',serif; font-style:italic; font-size:1.25rem; color:var(--ink); margin-bottom:3px;
}
.smoobu-header p{ font-size:13px; color:var(--iron); opacity:.75; }
.smoobu-widget-wrap{ padding:20px 28px 0; }
.smoobu-gate{
  border:1px dashed var(--cream-2); border-radius:8px;
  padding:28px 24px; text-align:center; background:var(--cream);
}
.smoobu-gate p{ font-size:13px; color:var(--iron); max-width:440px; margin:0 auto 16px; }
.smoobu-gate .book-btn{ display:inline-block; cursor:pointer; border:none; font:inherit; }
.contact-strip{
  display:flex; flex-wrap:wrap; justify-content:center; gap:36px;
  padding-top:36px; border-top:1px solid rgba(255,255,255,0.25);
  align-items:flex-start;
}
.contact-strip a{ font-size:14px; font-weight:500; }
.contact-strip a span{ display:block; font-size:11px; text-transform:uppercase; letter-spacing:0.12em; opacity:0.8; margin-bottom:4px; }

.cp{ display:flex; flex-direction:column; align-items:center; gap:7px; }
.cp-name{ font-size:11px; text-transform:uppercase; letter-spacing:.12em; opacity:.8; }
.cp-num{ font-size:14px; font-weight:500; }
.cp-actions{ display:flex; gap:8px; margin-top:2px; }
.cp-btn{
  width:34px; height:34px; border-radius:50%; flex:none;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,0.15); border:1px solid rgba(255,255,255,0.45);
  transition:transform .15s ease;
}
.cp-btn:hover{ transform:translateY(-2px); }
.cp-btn svg{ width:16px; height:16px; stroke:#fff; }
.cp-btn.wa{ background:#25D366; border-color:#25D366; }

.contact-strip.on-light{ border-top-color:var(--cream-2); }
.contact-strip.on-light .cp-name{ color:var(--iron); opacity:.65; }
.contact-strip.on-light .cp-num{ color:var(--ink); }
.contact-strip.on-light .cp-btn{ background:var(--cream-2); border-color:var(--terracotta); }
.contact-strip.on-light .cp-btn svg{ stroke:var(--brick); }
.contact-strip.on-light .cp-btn.wa{ background:#25D366; border-color:#25D366; }
.contact-strip.on-light .cp-btn.wa svg{ stroke:#fff; }
.contact-strip.on-light a{ color:var(--ink); }
.contact-strip.on-light a span{ color:var(--iron); opacity:.65; }

/* ---------- FOOTER ---------- */
footer{ background:var(--ink); color:#C9BBA4; padding:60px 0 30px; }
.foot-grid{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:30px; padding-bottom:30px; border-bottom:1px solid rgba(255,255,255,0.1);}
.foot-logo{ font-family:'Fraunces',serif; font-style:italic; font-size:24px; color:#fff; display:flex; align-items:center; gap:12px; }
.foot-logo img{ height:46px; width:auto; flex:none; }
.foot-addr{ font-size:14px; margin-top:8px; }
.foot-nav{ display:flex; flex-direction:column; gap:8px; }
.foot-nav a{ font-size:13px; opacity:.85; }
.foot-nav a:hover{ opacity:1; text-decoration:underline; text-decoration-color:var(--ochre); }
.foot-bottom{ display:flex; justify-content:space-between; padding-top:22px; font-size:12px; flex-wrap:wrap; gap:10px;}
.foot-legal{ display:flex; gap:18px; flex-wrap:wrap; padding-top:12px; font-size:12px; }
.foot-legal a{ opacity:.85; }
.foot-legal a:hover{ opacity:1; text-decoration:underline; text-decoration-color:var(--ochre); }
.foot-legal button{
  background:none; border:none; padding:0; margin:0; cursor:pointer;
  font-family:'Work Sans',sans-serif; font-size:12px; color:#C9BBA4; opacity:.85;
}
.foot-legal button:hover{ opacity:1; text-decoration:underline; text-decoration-color:var(--ochre); }
.social-row{ display:flex; gap:20px; margin-top:18px; }
.social-row a{ display:inline-flex; align-items:center; gap:7px; font-size:13px; text-transform:uppercase; letter-spacing:.08em; opacity:.75; }
.social-row a:hover{ opacity:1; text-decoration:underline; text-decoration-color:var(--ochre); }
.social-row svg{ width:17px; height:17px; flex:none; }

@media (max-width: 900px){
  nav.links{
    display:none;
    position:fixed; top:0; left:0; right:0; bottom:0;
    background:var(--paper);
    flex-direction:column; align-items:flex-start; justify-content:center;
    padding:32px 32px; gap:8px; z-index:48;
  }
  nav.links.open{ display:flex; }
  nav.links a{
    color:var(--ink) !important; opacity:1 !important;
    font-size:20px; font-family:'Fraunces',serif; font-style:italic; font-weight:500;
    text-transform:none; letter-spacing:0; padding:12px 0; width:100%;
    border-bottom:1px solid var(--cream-2);
  }
  nav.links a.active{ border-bottom:1px solid var(--ochre); color:var(--brick) !important; }
  .nav-toggle{ display:flex; }
  .nav-toggle.force-dark span{ background:var(--ink); }

  .story-grid, .loc-grid, .tips-grid{ grid-template-columns:1fr; gap:36px; }
  .gallery-grid{
    display:flex; grid-template-columns:none; grid-auto-rows:auto;
    overflow-x:auto; scroll-snap-type:x mandatory; gap:14px;
    padding-bottom:6px;
    -webkit-overflow-scrolling:touch;
  }
  .g1,.g2,.g3,.g4,.g5,.g6,.g7,.g8,.g9,.g10,.g11{ grid-column:auto; grid-row:auto; }
  .gallery-grid figure{
    flex:0 0 auto; width:78vw; max-width:340px; aspect-ratio:4/3;
    scroll-snap-align:center;
  }
  .gallery-grid figcaption{ opacity:1; background:linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(20,15,12,0.65)); }
  .am-grid{ grid-template-columns:1fr 1fr; }
  .facts-row{ gap:24px; }
  .fact{ min-width:120px; }
  .info-cards, .food-grid{ grid-template-columns:1fr; }
  section{ padding:70px 0; }
  .contact-strip{ gap:22px; }
}
@media (max-width:560px){
  .am-grid{ grid-template-columns:1fr; }
  .book-options{ flex-direction:column; align-items:center; }
  .hero-content, .page-hero-content{ padding-left:20px; padding-right:20px; }
  .wrap{ padding:0 20px; }
  section{ padding:56px 0; }
  .smoobu-box{ padding:22px 16px 10px; }
  .map-box iframe{ height:320px; }
  .map-gate{ padding:40px 18px; }
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .scrollcue .line::after{ animation:none; }
  .gallery-grid figure:hover img{ transform:none; }
}
:focus-visible{ outline:2px solid var(--ochre); outline-offset:3px; }

.skip-link{
  position:absolute; top:-60px; left:12px; z-index:300;
  background:var(--ink); color:#fff; padding:12px 20px; border-radius:6px;
  font-family:'Work Sans',sans-serif; font-size:14px; font-weight:600;
  transition:top .2s ease;
}
.skip-link:focus{ top:12px; }

/* ---------- COOKIE BANNER ---------- */
.cookie-banner{
  display:none; position:fixed; left:0; right:0; bottom:0; z-index:200;
  background:var(--paper); border-top:1px solid var(--cream-2);
  box-shadow:0 -6px 24px rgba(0,0,0,0.14);
  max-height:100dvh; max-height:100vh; overflow-y:auto;
}
.cookie-banner.visible{ display:block; }
.cookie-banner-inner{ max-width:var(--maxw); margin:0 auto; padding:20px 28px; }
.cookie-banner-text{ font-size:13.5px; color:var(--iron); margin:0 0 14px; max-width:760px; line-height:1.5; }
.cookie-banner-panel{ margin:6px 0 16px; padding:16px 18px; background:var(--cream); border-radius:8px; }
.cookie-option{ display:flex; align-items:flex-start; gap:10px; margin-bottom:12px; }
.cookie-option:last-of-type{ margin-bottom:0; }
.cookie-option input{ margin-top:3px; flex:none; width:16px; height:16px; accent-color:var(--ochre); }
.cookie-option label{ font-size:13px; color:var(--iron); line-height:1.4; }
.cookie-banner-actions{ display:flex; gap:12px; flex-wrap:wrap; }
.cookie-btn{
  font-family:'Work Sans',sans-serif; font-size:13px; font-weight:500;
  padding:10px 20px; border-radius:20px; cursor:pointer;
  border:1px solid var(--ink); background:transparent; color:var(--ink);
  transition:opacity .2s ease;
}
.cookie-btn.primary{ background:var(--ink); color:#fff; }
.cookie-btn:hover{ opacity:.75; }
@media (max-width:560px){
  .cookie-banner-inner{ padding:16px 18px 20px; }
  .cookie-banner-actions{ flex-direction:column; }
  .cookie-btn{ width:100%; text-align:center; }
}

/* ---------- FLOATING WHATSAPP BUTTON ---------- */
.whatsapp-float{
  position:fixed;
  right:22px;
  bottom:calc(22px + env(safe-area-inset-bottom, 0px));
  z-index:150;
  width:56px; height:56px;
  border-radius:50%;
  background:#25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 24px rgba(0,0,0,0.25);
  transition:transform .25s ease, bottom .25s ease, opacity .25s ease;
}
.whatsapp-float svg{ width:28px; height:28px; stroke:#fff; }
.whatsapp-float:hover{ transform:scale(1.07); }
body.cookie-banner-open .whatsapp-float{
  transform:translateY(-4px);
  opacity:0;
  pointer-events:none;
}
@media (max-width:560px){
  .whatsapp-float{ width:50px; height:50px; right:16px; bottom:calc(16px + env(safe-area-inset-bottom, 0px)); }
  .whatsapp-float svg{ width:25px; height:25px; }
}

/* ---------- WEATHER WIDGET ---------- */
.weather-strip{ padding:26px 0 0; }
.weather-card{
  display:inline-flex; align-items:center; gap:13px;
  background:var(--cream-2); border-radius:30px; padding:10px 22px 10px 16px;
}
.weather-card[hidden]{ display:none; }
.weather-card-icon{ font-size:28px; line-height:1; }
.weather-card-text{ display:flex; flex-direction:column; line-height:1.3; }
.weather-card-text strong{ font-family:'Fraunces',serif; font-style:italic; font-size:18px; color:var(--ink); font-weight:450; }
.weather-card-text span{ font-size:12px; color:var(--iron); opacity:.75; text-transform:uppercase; letter-spacing:.06em; }

/* ---------- LEGAL PAGES (privacy / cookie policy) ---------- */
.legal-hero{ background:var(--ink); color:#fff; padding:150px 0 48px; }
.legal-hero .eyebrow{ color:var(--ochre); }
.legal-hero h1{ font-size:clamp(32px,6vw,52px); font-style:italic; margin:8px 0 0; color:#fff; }
.legal-content{ max-width:760px; margin:0 auto; }
.legal-content h2{ font-size:24px; font-style:italic; color:var(--brick); margin:44px 0 14px; }
.legal-content h2:first-child{ margin-top:0; }
.legal-content h3{ font-size:17px; font-style:italic; color:var(--ink); margin:26px 0 10px; }
.legal-content p{ font-size:15px; color:var(--iron); margin:0 0 14px; }
.legal-content ul{ margin:0 0 14px; padding-left:22px; }
.legal-content li{ font-size:15px; color:var(--iron); margin-bottom:8px; }
.legal-content a{ text-decoration:underline; text-decoration-color:var(--ochre); }
.legal-content .legal-updated{ font-size:13px; color:var(--sage); margin-bottom:38px; }
.lang-en{ display:none; }
html[lang="en"] .lang-en{ display:inline; }
html[lang="en"] .lang-it{ display:none; }
.legal-content table{ width:100%; min-width:520px; border-collapse:collapse; margin:0 0 20px; font-size:14px; }
.legal-content .table-scroll{ overflow-x:auto; margin:0 0 20px; -webkit-overflow-scrolling:touch; }
.legal-content .table-scroll table{ margin-bottom:0; }
.legal-content th, .legal-content td{ border:1px solid var(--cream-2); padding:10px 12px; text-align:left; vertical-align:top; }
.legal-content th{ background:var(--cream); font-family:'Work Sans',sans-serif; font-weight:600; }
@media (max-width:560px){
  .legal-hero{ padding:130px 0 36px; }
  .legal-content table{ font-size:13px; }
  .legal-content th, .legal-content td{ padding:8px; }
}
