/* ============================================================
   TourCWE — come.tourcwe.com
   Brand palette: Blue #628395 | Gold #d6ce93 | Cream #efebce
                  Dark #1c1c1c | Sage #607466
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Nunito:wght@300;400;500;600;700&display=swap');

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

:root {
  --blue:   #628395;
  --blue-dark: #4e6b7a;
  --gold:   #d6ce93;
  --gold-dark: #bdb87a;
  --cream:  #efebce;
  --cream-dark: #e4dfbd;
  --dark:   #1c1c1c;
  --sage:   #607466;
  --sage-light: #8fa898;
  --white:  #fafaf7;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Nunito', system-ui, sans-serif;

  --max: 1180px;
  --nav-h: 72px;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(28,28,28,.10);
  --shadow-lg: 0 12px 48px rgba(28,28,28,.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--dark);
}
h1 { font-size: clamp(2.6rem, 5vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; }
em { font-style: italic; }

/* ---- Layout Utilities ---- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--sm { padding: 56px 0; }
.section--lg { padding: 120px 0; }

.text-center { text-align: center; }
.text-blue { color: var(--blue); }
.text-sage { color: var(--sage); }
.bg-blue { background: var(--blue); }
.bg-cream { background: var(--cream); }
.bg-dark { background: var(--dark); }
.bg-sage { background: var(--sage); }
.bg-white { background: var(--white); }

/* ---- Eyebrow Label ---- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 0.6em;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .22s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); }

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); transform: translateY(-1px); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background .3s ease, box-shadow .3s ease;
}
.nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(28,28,28,.08);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  transition: color .3s;
  letter-spacing: .02em;
}
.nav.scrolled .nav__logo { color: var(--dark); }
.nav__logo span { color: var(--gold); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  transition: color .2s;
}
.nav.scrolled .nav__links a { color: var(--dark); }
.nav__links a:hover { color: var(--gold); }
.nav.scrolled .nav__links a:hover { color: var(--blue); }

.nav__cta {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  transition: background .2s !important;
}
.nav__cta:hover { background: var(--gold-dark) !important; color: var(--dark) !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: background .3s;
  border-radius: 2px;
}
.nav.scrolled .nav__hamburger span { background: var(--dark); }

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  padding: 24px;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--shadow);
  z-index: 999;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--blue); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.45);
  transform: scale(1.04);
  animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.10); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28,28,28,.15) 0%,
    rgba(28,28,28,.30) 60%,
    rgba(28,28,28,.55) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 780px;
  padding-top: var(--nav-h);
  animation: heroFade .9s ease both;
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__content .eyebrow { color: var(--gold); font-size: .75rem; }
.hero__content h1 {
  color: var(--white);
  margin-bottom: .6em;
  font-weight: 600;
  font-style: italic;
}
.hero__content h1 em { font-style: normal; color: var(--gold); }
.hero__lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.88);
  max-width: 560px;
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.7;
}
.hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { margin-bottom: .4em; }
.section-header p {
  font-size: 1.05rem;
  color: #555;
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Experience Cards ---- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.card__img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.card:hover .card__img img { transform: scale(1.06); }
.card__badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}
.card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.card__body h3 {
  font-size: 1.5rem;
  margin-bottom: .4em;
  font-weight: 600;
}
.card__body p { font-size: .95rem; color: #555; flex: 1; margin-bottom: 1.4em; }
.card__meta {
  display: flex;
  gap: 20px;
  margin-bottom: 1.2em;
  font-size: .82rem;
  color: var(--sage);
  font-weight: 600;
}
.card__meta span { display: flex; align-items: center; gap: 5px; }
.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--cream-dark);
}
.card__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--blue);
}
.card__price small { font-family: var(--font-body); font-size: .7rem; font-weight: 400; color: #777; display: block; }

/* ---- Testimonials ---- */
.testimonials { background: var(--blue); padding: 88px 0; }
.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-header p { color: rgba(255,255,255,.75); }
.testimonials .eyebrow { color: var(--gold); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.testi-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 32px 28px;
  position: relative;
}
.testi-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: .7;
  color: var(--gold);
  opacity: .5;
  position: absolute;
  top: 20px; left: 24px;
}
.testi-card p {
  font-size: .98rem;
  color: rgba(255,255,255,.92);
  padding-top: 28px;
  line-height: 1.7;
  margin-bottom: 1.2em;
  font-style: italic;
}
.testi-card__author {
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.testi-card__source {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}
.star-row {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
}
.star-row span { color: var(--gold); font-size: 1rem; }

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--dark);
  padding: 22px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  font-weight: 600;
}
.trust-item__icon { font-size: 1.3rem; }
.trust-item strong { color: var(--gold); }

/* ---- About Strip ---- */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 420px;
}
.about-strip__img {
  background-size: cover;
  background-position: center top;
  min-height: 360px;
}
.about-strip__text {
  background: var(--sage);
  color: var(--white);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-strip__text .eyebrow { color: var(--gold); }
.about-strip__text h2 { color: var(--white); margin-bottom: .6em; font-size: clamp(1.6rem,3vw,2.4rem); }
.about-strip__text p { color: rgba(255,255,255,.85); font-size: .98rem; }

/* ---- Blog Preview ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card__img {
  height: 200px;
  overflow: hidden;
}
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__body { padding: 24px; }
.blog-card__date { font-size: .75rem; color: var(--sage); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
.blog-card__body h3 { font-size: 1.25rem; margin-bottom: .5em; line-height: 1.3; }
.blog-card__body p { font-size: .88rem; color: #555; margin-bottom: 1em; }
.blog-card__link { font-size: .82rem; font-weight: 700; color: var(--blue); letter-spacing: .05em; text-transform: uppercase; }
.blog-card__link:hover { color: var(--blue-dark); }

/* ---- Content Page Hero (non-home) ---- */
.page-hero {
  background: var(--blue);
  padding: calc(var(--nav-h) + 56px) 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero__content { position: relative; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { color: var(--white); font-weight: 600; font-style: italic; margin-bottom: .5em; }
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero .lead { font-size: 1.1rem; color: rgba(255,255,255,.82); max-width: 600px; font-weight: 300; }

/* ---- Photo Hero (with image) ---- */
.photo-hero {
  position: relative;
  height: 60vh;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
}
.photo-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.photo-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,28,28,.8) 0%, rgba(28,28,28,.2) 60%, transparent 100%);
}
.photo-hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 48px 24px;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.photo-hero__content .eyebrow { color: var(--gold); }
.photo-hero__content h1 { color: var(--white); font-style: italic; }
.photo-hero__content h1 em { font-style: normal; color: var(--gold); }

/* ---- Content Sections ---- */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}
.content-main h2 { margin-bottom: .5em; }
.content-main h3 { margin: 2em 0 .5em; color: var(--blue); }
.content-main p { color: #444; }
.content-main ul { margin: .8em 0 1.4em 1.2em; }
.content-main ul li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: .5em;
  font-size: .97rem;
  color: #444;
}
.content-main ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

/* ---- Sticky Booking Box ---- */
.booking-box {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.booking-box h3 {
  font-size: 1.6rem;
  margin-bottom: .2em;
  color: var(--dark);
}
.booking-box .price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 1rem;
}
.booking-box .price small { font-family: var(--font-body); font-size: .7rem; color: #888; }
.booking-box .rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.4em;
  font-size: .88rem;
}
.booking-box .rating-stars { color: var(--gold-dark); letter-spacing: 2px; }
.booking-box .rating-count { color: #666; }
.booking-box .includes {
  border-top: 1px solid var(--cream-dark);
  padding-top: 1.2em;
  margin-top: 1.2em;
}
.booking-box .includes h4 { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: #888; margin-bottom: .8em; }
.booking-box .includes li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .88rem;
  margin-bottom: .5em;
  color: #444;
}
.booking-box .includes li::before { content: '✓'; color: var(--sage); font-weight: 700; flex-shrink: 0; }
.booking-box .btn { width: 100%; text-align: center; margin-top: 1.4em; }

/* ---- Highlights / What to expect ---- */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin: 2em 0;
}
.highlight-item {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 24px;
  border-left: 3px solid var(--gold);
}
.highlight-item__icon { font-size: 1.8rem; margin-bottom: .5em; }
.highlight-item h4 { margin-bottom: .4em; font-size: 1rem; }
.highlight-item p { font-size: .88rem; color: #555; margin-bottom: 0; }

/* ---- FAQ ---- */
.faq-list { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--cream-dark);
  padding: 20px 0;
}
.faq-item:first-child { border-top: 1px solid var(--cream-dark); }
.faq-question {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  color: var(--dark);
}
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--blue); font-weight: 300; flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding-top: 14px; }
.faq-answer p { font-size: .96rem; color: #555; margin-bottom: 0; }

/* ---- Include items ---- */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 1.5em 0;
}
.include-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  padding: 18px 20px;
  border-radius: 6px;
}
.include-item__check {
  width: 22px;
  height: 22px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.include-item p { font-size: .9rem; color: #444; margin-bottom: 0; }

/* ---- Photo Gallery ---- */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 2.5em 0;
}
.photo-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  transition: opacity .2s;
}
.photo-strip img:hover { opacity: .9; }
.photo-strip .wide { grid-column: span 2; aspect-ratio: 2/1; }

/* ---- Widget Section ---- */
.widget-section {
  background: var(--white);
  border-radius: 12px;
  padding: 48px 40px;
  box-shadow: var(--shadow);
  margin: 48px 0;
}
.widget-section h2 {
  text-align: center;
  margin-bottom: .4em;
}
.widget-section .subhead {
  text-align: center;
  color: #666;
  margin-bottom: 2em;
}

/* ---- Picnics split ---- */
.picnic-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin: 3em 0;
}
.picnic-split__panel {
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 36px;
}
.picnic-split__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.48);
}
.picnic-split__content { position: relative; z-index: 2; color: var(--white); }
.picnic-split__content .eyebrow { color: var(--gold); }
.picnic-split__content h2 { color: var(--white); font-size: 1.8rem; margin-bottom: .5em; }
.picnic-split__content p { color: rgba(255,255,255,.8); font-size: .93rem; margin-bottom: 1.2em; }

/* ---- Blog Page ---- */
.blog-hero { background: var(--sage); padding: calc(var(--nav-h) + 48px) 0 56px; }
.blog-hero .eyebrow { color: var(--gold); }
.blog-hero h1 { color: var(--white); font-style: italic; }
.blog-hero p { color: rgba(255,255,255,.8); max-width: 520px; }

.blog-main-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}
.blog-post-list { }
.blog-post-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.blog-post-item:first-child { padding-top: 0; }
.blog-post-item__img {
  height: 160px;
  border-radius: 6px;
  overflow: hidden;
}
.blog-post-item__img img { width: 100%; height: 100%; object-fit: cover; }
.blog-post-item__body { }
.blog-post-item__date { font-size: .75rem; color: var(--sage); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 6px; }
.blog-post-item__body h2 { font-size: 1.5rem; margin-bottom: .4em; line-height: 1.25; }
.blog-post-item__body p { font-size: .92rem; color: #555; margin-bottom: 1em; }
.blog-post-item__link { font-size: .82rem; font-weight: 700; color: var(--blue); letter-spacing: .05em; text-transform: uppercase; }

.blog-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }
.sidebar-widget {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.sidebar-widget h3 { font-size: 1.2rem; margin-bottom: 1em; color: var(--dark); border-bottom: 2px solid var(--gold); padding-bottom: 10px; }
.sidebar-widget p { font-size: .88rem; color: #555; }
.sidebar-widget .btn { margin-top: 1em; font-size: .78rem; padding: 12px 20px; }

/* ---- Footer ---- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 72px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand .logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: .5em;
  display: block;
}
.footer__brand .logo span { color: var(--gold); }
.footer__brand p { font-size: .88rem; line-height: 1.7; margin-bottom: 1.2em; }
.footer__brand .contact { font-size: .85rem; }
.footer__brand .contact a { color: rgba(255,255,255,.7); display: block; margin-bottom: 4px; }
.footer__brand .contact a:hover { color: var(--gold); }

.footer__col h4 {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2em;
}
.footer__col ul li { margin-bottom: 8px; }
.footer__col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.footer__col ul li a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom a { color: rgba(255,255,255,.4); }
.footer__bottom a:hover { color: rgba(255,255,255,.7); }

/* ---- Utility ---- */
.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 20px auto;
}
.divider--left { margin-left: 0; }

.badge-excellence {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}

.price-anchor {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--blue);
  margin: .3em 0;
}
.price-anchor small { font-family: var(--font-body); font-size: .9rem; color: #666; font-weight: 400; }

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .content-grid { grid-template-columns: 1fr; }
  .booking-box { position: static; }
  .about-strip { grid-template-columns: 1fr; }
  .about-strip__img { min-height: 300px; }
  .about-strip__text { padding: 48px 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .blog-main-grid { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .picnic-split { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .photo-strip .wide { grid-column: span 1; aspect-ratio: 1; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .section { padding: 64px 0; }
  .section--lg { padding: 80px 0; }
  .hero { min-height: 90vh; }
  .hero__buttons { flex-direction: column; align-items: flex-start; }
  .widget-section { padding: 32px 20px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .blog-post-item { grid-template-columns: 1fr; }
  .blog-post-item__img { height: 220px; }
  .highlights-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .cards { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .page-hero { padding-top: calc(var(--nav-h) + 40px); }
}
