/* =========================================================
   SantoriniLocal — shared stylesheet
   Premium editorial travel magazine. Sharp corners only.
   ========================================================= */

:root {
  --blue:   #0d2e4e;
  --gold:   #a07830;
  --cream:  #f9f6f0;
  --stone:  #ede8df;
  --ink:    #1c1a18;
  --muted:  #7a746c;
  --border: #d8d2c8;
  --gold-soft: #e8d090;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, blockquote {
  font-family: 'EB Garamond', serif;
  font-weight: 400;
}

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

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

/* No border radius anywhere. Sharp corners throughout. */

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .4s ease, border-color .4s ease, color .4s ease;
}

.nav__logo {
  font-family: 'EB Garamond', serif;
  font-size: 1.35rem;
  letter-spacing: .02em;
  color: #fff;
  transition: color .4s ease;
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  height: 60px;
  list-style: none;
  gap: 28px;
}

.nav__links a {
  display: flex;
  align-items: center;
  height: 60px;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(255,255,255,.82);
  border-bottom: 2px solid transparent;
  transition: color .3s ease, border-color .3s ease;
}

.nav__links a:hover,
.nav__links a.active {
  border-bottom-color: var(--gold);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 18px;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 400;
  color: #fff;
  border: 1px solid rgba(255,255,255,.55);
  transition: background .3s ease, color .3s ease, border-color .3s ease;
  white-space: nowrap;
}

.nav__cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* scrolled state */
.nav.scrolled {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.nav.scrolled .nav__logo {
  color: var(--ink);
}

.nav.scrolled .nav__links a {
  color: var(--ink);
}

.nav.scrolled .nav__cta {
  color: var(--ink);
  border-color: var(--border);
}

.nav.scrolled .nav__cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.nav.scrolled .nav__burger span {
  background: var(--ink);
}

/* hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: background .4s ease;
}

/* mobile overlay menu */
.mobile-menu {
  position: fixed;
  top: 60px;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--cream);
  z-index: 999;
  display: none;
  flex-direction: column;
  padding: 12px 0;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  display: block;
  padding: 20px 28px;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}

.mobile-menu a.active {
  color: var(--gold);
}

.mobile-menu .mobile-menu__cta {
  margin: 22px 28px 0;
  padding: 16px;
  text-align: center;
  background: var(--gold);
  color: #fff;
  border-bottom: none;
}

/* =========================================================
   GENERIC LAYOUT
   ========================================================= */
.section {
  padding: 80px 36px;
}

.section--blue  { background: var(--blue);  color: #fff; }
.section--stone { background: var(--stone); }
.section--cream { background: var(--cream); }
.section--ink   { background: var(--ink);   color: #fff; }
.section--white { background: #fff; }

.wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.eyebrow {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'EB Garamond', serif;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
}

.section--blue .section-title,
.section--ink  .section-title { color: #fff; }

.section-subtitle {
  font-size: .87rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 500px;
  line-height: 1.7;
  margin-top: 14px;
}

.section--blue .section-subtitle,
.section--ink  .section-subtitle { color: rgba(255,255,255,.6); }

.section-head {
  margin-bottom: 48px;
}

.lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink);
  font-weight: 300;
}

p.body {
  font-size: .87rem;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 28px;
  font-family: 'Jost', sans-serif;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}

.btn--gold {
  background: var(--gold);
  color: #fff;
}
.btn--gold:hover {
  background: #8a6727;
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.12);
}

.btn--blue {
  background: var(--blue);
  color: #fff;
}
.btn--blue:hover {
  background: var(--gold);
}

.btn--dark {
  background: var(--ink);
  color: #fff;
}
.btn--dark:hover {
  background: var(--gold);
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   HERO (index full viewport)
   ========================================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero__slide.active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,20,38,.22) 0%, rgba(10,20,38,.08) 30%, rgba(10,20,38,.72) 100%);
}

.hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 680px;
  padding: 0 36px 80px;
  z-index: 3;
  opacity: 0;
  transform: translateY(20px);
  animation: heroUp 1s ease .3s forwards;
}

@keyframes heroUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero__tag {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  display: block;
  margin-bottom: 22px;
}

.hero__title {
  font-family: 'EB Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.04;
  color: #fff;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
}

.hero__sub {
  font-size: .95rem;
  color: rgba(255,255,255,.62);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 34px;
  font-weight: 300;
}

.hero__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* hero dot indicators bottom-right */
.hero__dots {
  position: absolute;
  bottom: 88px;
  right: 36px;
  z-index: 4;
  display: flex;
  gap: 10px;
}
.hero__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: background .3s ease, transform .3s ease;
}
.hero__dot.active {
  background: var(--gold);
  transform: scale(1.4);
}
/* exception: dots are circles by design */

/* hero slide labels bottom-left */
.hero__labels {
  position: absolute;
  bottom: 30px;
  left: 36px;
  z-index: 4;
  display: flex;
  gap: 20px;
}
.hero__label {
  font-size: .59rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  cursor: pointer;
  transition: color .3s ease, border-color .3s ease;
}
.hero__label.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* =========================================================
   SUB-PAGE HERO (56vh)
   ========================================================= */
.subhero {
  position: relative;
  height: 56vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.subhero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,20,38,.25) 0%, rgba(10,20,38,.15) 40%, rgba(10,20,38,.78) 100%);
}
.subhero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 36px 60px;
}
.subhero__eyebrow {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  display: block;
  margin-bottom: 18px;
}
.subhero__title {
  font-family: 'EB Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 18px;
}
.subhero__sub {
  font-size: .92rem;
  color: rgba(255,255,255,.66);
  line-height: 1.8;
  max-width: 520px;
  font-weight: 300;
}

/* =========================================================
   INTRO STRIP (dark blue, 4 columns)
   ========================================================= */
.intro-strip {
  background: var(--blue);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.intro-strip__col {
  padding: 54px 34px;
  background: var(--blue);
  transition: background .4s ease;
  border-top: 2px solid transparent;
}
.intro-strip__col:hover {
  background: #0a263f;
  border-top-color: var(--gold);
}
.intro-strip__icon {
  font-size: 1.5rem;
  margin-bottom: 18px;
  display: block;
  color: var(--gold-soft);
}
.intro-strip__name {
  font-family: 'EB Garamond', serif;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 10px;
}
.intro-strip__desc {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  font-weight: 300;
}

/* =========================================================
   EDITORIAL GRID
   ========================================================= */
.edit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 8px;
}
.edit-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: block;
}
.edit-card--wide {
  grid-column: span 2;
}
.edit-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .7s ease;
}
.edit-card:hover .edit-card__img {
  transform: scale(1.04);
}
.edit-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.72) 100%);
  transition: background .4s ease;
}
.edit-card:hover .edit-card__shade {
  background: linear-gradient(180deg, rgba(0,0,0,.05) 25%, rgba(0,0,0,.82) 100%);
}
.edit-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 28px;
  z-index: 2;
}
.edit-card__tag {
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: block;
  margin-bottom: 12px;
}
.edit-card__title {
  font-family: 'EB Garamond', serif;
  font-size: 1.7rem;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 8px;
}
.edit-card__meta {
  font-size: .76rem;
  color: rgba(255,255,255,.6);
  font-weight: 300;
}
.edit-card__arrow {
  display: inline-block;
  margin-top: 14px;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .4s ease, transform .4s ease;
}
.edit-card:hover .edit-card__arrow {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RANKED LIST
   ========================================================= */
.ranked {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.rank-item {
  display: flex;
  background: #fff;
  overflow: hidden;
  transition: box-shadow .4s ease;
}
.rank-item:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.rank-item__num {
  flex: 0 0 46px;
  background: var(--blue);
  color: #fff;
  font-family: 'EB Garamond', serif;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rank-item__thumb {
  flex: 0 0 110px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.rank-item__body {
  flex: 1;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rank-item__cat {
  font-size: .56rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}
.rank-item__name {
  font-family: 'EB Garamond', serif;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.15;
}
.rank-item__desc {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}
.rank-item__price {
  flex: 0 0 auto;
  align-self: center;
  padding: 0 22px;
  font-size: .74rem;
  letter-spacing: .04em;
  color: var(--gold);
  white-space: nowrap;
  font-weight: 400;
}
.rank-item__price.free {
  color: var(--muted);
}

/* full-width ranked variant (things-to-do) */
.ranked--full {
  grid-template-columns: 1fr;
}

/* =========================================================
   BOOKING / GYG CARDS
   ========================================================= */
.book-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 8px;
}
.book-grid--2x2 {
  grid-template-columns: repeat(2, 1fr);
}
.book-card {
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow .4s ease;
}
.book-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.book-card__img {
  height: 200px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform .7s ease;
}
.book-card:hover .book-card__img {
  transform: scale(1.04);
}
.book-card__body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.book-card__src {
  font-size: .55rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.book-card__name {
  font-family: 'EB Garamond', serif;
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 10px;
}
.book-card__stars {
  font-size: .8rem;
  color: var(--gold);
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.book-card__stars span {
  color: var(--muted);
  font-size: .72rem;
  margin-left: 6px;
}
.book-card__price {
  font-size: .82rem;
  color: var(--ink);
  margin-bottom: 18px;
}
.book-card__price b {
  font-weight: 400;
  color: var(--gold);
}
.book-card__btn {
  margin-top: auto;
}

.gyg-note {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 300;
  margin-top: 14px;
  max-width: 520px;
  line-height: 1.7;
}

/* Make the entire GetYourGuide widget activity card feel clickable */
.gyg-widget-activity {
  cursor: pointer;
}

/* Only the static tour cards that link out to GetYourGuide get a pointer */
.type-card, .walk-card, .wineries .stay-card {
  cursor: pointer;
}

/* =========================================================
   QUOTE / PARALLAX DIVIDER
   ========================================================= */
.parallax {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 130px 36px;
  text-align: center;
}
.parallax__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,16,30,.66);
}
.parallax__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.parallax blockquote {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.3;
  color: #fff;
  margin-bottom: 24px;
}
.parallax p {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  margin-bottom: 32px;
  font-weight: 300;
}

/* =========================================================
   TIPS GRID
   ========================================================= */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 8px;
}
.tips-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.tip-card {
  background: #fff;
  padding: 36px 32px;
  border-top: 2px solid transparent;
  transition: border-color .4s ease, box-shadow .4s ease;
}
.tip-card:hover {
  border-top-color: var(--gold);
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.tip-card__num {
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.tip-card__icon {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 16px;
}
.tip-card__title {
  font-family: 'EB Garamond', serif;
  font-size: 1.35rem;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}
.tip-card__body {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
}

/* =========================================================
   AREAS GRID
   ========================================================= */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 8px;
}
.area-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  display: block;
}
.area-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .7s ease;
}
.area-card:hover .area-card__img {
  transform: scale(1.04);
}
.area-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.74) 100%);
  transition: background .4s ease;
}
.area-card:hover .area-card__shade {
  background: linear-gradient(180deg, rgba(0,0,0,.1) 25%, rgba(0,0,0,.82) 100%);
}
.area-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  z-index: 2;
}
.area-card__tag {
  font-size: .56rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: block;
  margin-bottom: 10px;
}
.area-card__name {
  font-family: 'EB Garamond', serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 8px;
}
.area-card__desc {
  font-size: .76rem;
  color: rgba(255,255,255,.62);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 12px;
}
.area-card__link {
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .4s ease, transform .4s ease;
}
.area-card:hover .area-card__link {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   WINERY BAND
   ========================================================= */
.winery-band {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.winery-band__text h2 {
  color: #fff;
}
.winery-band__imgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.winery-thumb {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.winery-thumb__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .7s ease;
}
.winery-thumb:hover .winery-thumb__img {
  transform: scale(1.04);
}
.winery-thumb__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.7));
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  z-index: 2;
}

/* =========================================================
   TWO-COLUMN EDITORIAL (sub-pages)
   ========================================================= */
.two-col {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: start;
}
.two-col h2 {
  font-family: 'EB Garamond', serif;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 22px;
  line-height: 1.15;
}
.prose p {
  font-size: .88rem;
  line-height: 1.9;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 20px;
}

/* local tip box (blue) */
.tip-box {
  background: var(--blue);
  color: #fff;
  padding: 26px 28px;
  margin-top: 14px;
}
.tip-box__label {
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: block;
  margin-bottom: 10px;
}
.tip-box__text {
  font-size: .84rem;
  line-height: 1.75;
  color: rgba(255,255,255,.82);
  font-weight: 300;
}
.tip-box__icon {
  font-size: 1.2rem;
  margin-bottom: 12px;
  display: block;
}

/* fact box */
.fact-box {
  border-left: 3px solid var(--gold);
  padding: 6px 0 6px 26px;
}
.fact-box h3 {
  font-family: 'EB Garamond', serif;
  font-size: 1.3rem;
  margin-bottom: 18px;
  color: var(--ink);
}
.fact-box ul {
  list-style: none;
}
.fact-box li {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.7;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 300;
}
.fact-box li:last-child {
  border-bottom: none;
}
.fact-box li b {
  color: var(--ink);
  font-weight: 400;
}

/* =========================================================
   TOUR-TYPE CARDS
   ========================================================= */
.type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 8px;
}
.type-card {
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .4s ease;
}
.type-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.type-card__img {
  height: 200px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform .7s ease;
}
.type-card:hover .type-card__img {
  transform: scale(1.04);
}
.type-card__body {
  padding: 26px 26px 30px;
}
.type-card__tag {
  font-size: .56rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.type-card__name {
  font-family: 'EB Garamond', serif;
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.15;
}
.type-card__desc {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 16px;
}
.type-card__price {
  font-size: .82rem;
  color: var(--gold);
}

/* =========================================================
   HORIZONTAL WALK CARDS
   ========================================================= */
.walk-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.walk-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  background: #fff;
  overflow: hidden;
  transition: box-shadow .4s ease;
}
.walk-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.walk-card__img {
  min-height: 240px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform .7s ease;
}
.walk-card:hover .walk-card__img {
  transform: scale(1.04);
}
.walk-card__body {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.walk-card__tag {
  font-size: .56rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.walk-card__name {
  font-family: 'EB Garamond', serif;
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.15;
}
.walk-card__desc {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
}

/* small food cards */
.food-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 8px;
}
.food-card {
  background: #fff;
  padding: 30px 26px;
  border-top: 2px solid transparent;
  transition: border-color .4s ease, box-shadow .4s ease;
}
.food-card:hover {
  border-top-color: var(--gold);
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.food-card__name {
  font-family: 'EB Garamond', serif;
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 10px;
}
.food-card__desc {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

/* =========================================================
   STAY AREA CARDS
   ========================================================= */
.stay-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 8px;
}
.stay-card {
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
}
.stay-card__media {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.stay-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .7s ease;
}
.stay-card:hover .stay-card__img {
  transform: scale(1.04);
}
.stay-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,16,30,.82);
  color: #fff;
  padding: 30px;
  opacity: 0;
  transition: opacity .45s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stay-card:hover .stay-card__overlay {
  opacity: 1;
}
.stay-card__overlay h4 {
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 14px 0 6px;
}
.stay-card__overlay p {
  font-size: .8rem;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
  font-weight: 300;
}
.stay-card__body {
  padding: 26px 28px 30px;
}
.stay-card__name {
  font-family: 'EB Garamond', serif;
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 12px;
}
.stay-card__desc {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
}

.note-box {
  background: var(--stone);
  border-left: 3px solid var(--gold);
  padding: 30px 32px;
  margin-top: 8px;
}
.note-box h3 {
  font-family: 'EB Garamond', serif;
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--ink);
}
.note-box p {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 16px;
}

/* =========================================================
   RELATED GUIDES
   ========================================================= */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 8px;
}
.related-card {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  display: block;
}
.related-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .7s ease;
}
.related-card:hover .related-card__img {
  transform: scale(1.04);
}
.related-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.72));
}
.related-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 26px 24px;
  z-index: 2;
}
.related-card__tag {
  font-size: .56rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: block;
  margin-bottom: 8px;
}
.related-card__name {
  font-family: 'EB Garamond', serif;
  font-size: 1.4rem;
  color: #fff;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about-wrap {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.about-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--stone);
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'EB Garamond', serif;
  font-size: 1.6rem;
  color: var(--muted);
}
/* exception: avatar is a circle by design */
.about-wrap h1 {
  font-family: 'EB Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 22px;
}
.about-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink);
  font-weight: 300;
  margin-bottom: 30px;
}
.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 30px;
}
.about-body {
  text-align: left;
}
.about-body p {
  font-size: .9rem;
  line-height: 1.95;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 22px;
}
.about-bullets {
  list-style: none;
  text-align: left;
  margin: 8px 0 30px;
}
.about-bullets li {
  font-size: .88rem;
  color: var(--ink);
  padding: 10px 0;
  font-weight: 300;
}
.about-bullets li::before {
  content: "—";
  color: var(--gold);
  margin-right: 14px;
}
.contact-box {
  border-left: 3px solid var(--gold);
  background: var(--stone);
  padding: 26px 30px;
  text-align: left;
}
.contact-box h3 {
  font-family: 'EB Garamond', serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--ink);
}
.contact-box p {
  font-size: .85rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}
.contact-box a {
  color: var(--gold);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--ink);
  color: #fff;
  padding: 70px 36px 32px;
}
.footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer__logo {
  font-family: 'EB Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.footer__about {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  line-height: 1.8;
  font-weight: 300;
  max-width: 300px;
}
.footer__col h4 {
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 20px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
}
.footer__col ul {
  list-style: none;
}
.footer__col li {
  margin-bottom: 12px;
}
.footer__col a {
  font-size: .75rem;
  color: rgba(255,255,255,.32);
  transition: color .3s ease;
  font-weight: 300;
}
.footer__col a:hover {
  color: #fff;
}
.footer__bottom {
  max-width: 1200px;
  margin: 50px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer__bottom p {
  font-size: .7rem;
  color: rgba(255,255,255,.3);
  font-weight: 300;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .edit-grid { grid-template-columns: repeat(2, 1fr); }
  .edit-card--wide { grid-column: span 2; }
  .tips-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .food-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-strip { grid-template-columns: repeat(2, 1fr); }
  .winery-band { grid-template-columns: 1fr; gap: 36px; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .type-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav__links,
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  /* Hero shorter on mobile, framed on the village/sea not the sky */
  .hero {
    height: 80vh;
    min-height: 540px;
  }
  .hero__slide {
    background-position: center 30%;
  }

  /* Mobile menu: display toggled by CSS (.open), with pointer-events
     gated so the closed overlay never blocks taps on iOS Safari */
  .mobile-menu {
    pointer-events: none;
  }
  .mobile-menu.open {
    pointer-events: all;
  }

  .section { padding: 56px 20px; }
  .nav { padding: 0 20px; }

  /* Lift hero text higher in the frame and add a subtle shadow for legibility */
  .hero__content { padding: 0 20px 140px; }
  .hero__title,
  .hero__sub,
  .hero__tag {
    text-shadow: 0 1px 12px rgba(0,0,0,0.35);
  }
  .subhero__content { padding: 0 20px 48px; }

  .ranked { grid-template-columns: 1fr; }
  .edit-grid { grid-template-columns: 1fr; }
  .edit-card--wide { grid-column: span 1; }
  .tips-grid,
  .tips-grid--2 { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .food-grid { grid-template-columns: 1fr; }
  .intro-strip { grid-template-columns: 1fr; }
  .book-grid,
  .book-grid--2x2 { grid-template-columns: 1fr; }
  .type-grid { grid-template-columns: 1fr; }
  .stay-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .winery-band__imgs { grid-template-columns: 1fr; }

  .walk-card { grid-template-columns: 1fr; }
  .walk-card__img { min-height: 200px; }

  .rank-item__thumb { flex: 0 0 80px; }

  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; }

  .parallax { background-attachment: scroll; padding: 90px 20px; }

  .hero__labels { gap: 14px; }
  .hero__dots { bottom: 80px; right: 20px; }
}
