/* ===================================================================
   Nastarin Travel — design tokens
   =================================================================== */
:root {
  /* Brand green */
  --brand: #0E7C66;
  --brand-dark: #0A5E4D;
  --brand-deep: #073E33;
  --brand-soft: #D8EFE8;
  --brand-tint: #F0F8F5;

  /* Gold (highlight / large decorative only) */
  --accent: #E8A23A;
  --accent-ink: #946002;   /* deep gold — passes AA as text (4.5:1) */
  --accent-soft: #FBE4BB;

  /* Rose — the "Nastarin" signature (~10% accent) */
  --rose: #E0668F;
  --rose-soft: #F4A8C2;
  --rose-deep: #B23A6B;
  --rose-tint: #FBEEF3;

  /* Ink / warm neutrals */
  --ink: #11203B;
  --ink-mid: #3A4861;
  --ink-soft: #5A6A85;
  --bg: #FFFFFF;
  --bg-alt: #FAF6F4;       /* warm off-white */
  --line: #ECE6E6;

  /* Type scale */
  --fs-xs: 13px;
  --fs-sm: 14px;
  --fs-base: 15px;
  --fs-md: 16px;
  --fs-lg: 17px;

  /* Spacing scale (4/8) */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 40px; --s-8: 48px;
  --s-9: 56px; --s-10: 64px; --s-12: 80px; --s-16: 96px;

  /* Rhythm */
  --section-y: 96px;
  --feature-overlap: 64px;
  --gap-cards: 24px;
  --gap-split: 56px;

  /* Shape & shadow */
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(17, 32, 59, .08);
  --shadow-lg: 0 24px 60px rgba(17, 32, 59, .16);
  --shadow-rose: 0 12px 30px rgba(178, 58, 107, .22);
  --max: 1180px;

  /* Motion */
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-pop: cubic-bezier(.34, 1.56, .64, 1);

  /* Fonts */
  --font: 'Manrope', system-ui, -apple-system, sans-serif;
  --serif: 'Playfair Display', Georgia, serif;
}

/* ===================================================================
   Preloader
   =================================================================== */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(140deg, var(--brand-deep), var(--brand-dark));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--s-5);
  transition: opacity .7s ease, visibility .7s ease;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader__flower { position: relative; width: 70px; height: 70px; animation: spin 6s linear infinite; }
.preloader__flower .petal {
  position: absolute; top: 50%; left: 50%; width: 26px; height: 26px;
  background: linear-gradient(135deg, #FFE3EC, var(--rose));
  border-radius: 50% 0 50% 50%; transform-origin: 0 0;
  transform: rotate(var(--r, 0deg)) translate(4px, 4px);
  opacity: 0; animation: bloom 1.3s var(--ease-out) forwards;
}
.preloader__flower .petal:nth-child(1) { --r: 0deg;   animation-delay: .00s; }
.preloader__flower .petal:nth-child(2) { --r: 60deg;  animation-delay: .10s; }
.preloader__flower .petal:nth-child(3) { --r: 120deg; animation-delay: .20s; }
.preloader__flower .petal:nth-child(4) { --r: 180deg; animation-delay: .30s; }
.preloader__flower .petal:nth-child(5) { --r: 240deg; animation-delay: .40s; }
.preloader__flower .petal:nth-child(6) { --r: 300deg; animation-delay: .50s; }
.preloader__flower .bloom-core {
  position: absolute; top: 50%; left: 50%; width: 18px; height: 18px; margin: -9px 0 0 -9px;
  background: radial-gradient(circle, #FFE79E, var(--accent)); border-radius: 50%;
  box-shadow: 0 0 14px rgba(232, 162, 58, .7);
}
.preloader__text { font-family: var(--serif); color: #fff; font-size: 26px; font-weight: 700; letter-spacing: .5px; }
.preloader__text span { color: var(--accent); }
@keyframes bloom {
  0%   { opacity: 0;   transform: rotate(var(--r, 0deg)) translate(4px, 4px) scale(0); }
  100% { opacity: .95; transform: rotate(var(--r, 0deg)) translate(4px, 4px) scale(1); }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===================================================================
   Falling petals + click/submit burst
   =================================================================== */
.petals-layer { position: fixed; inset: 0; pointer-events: none; z-index: 80; overflow: hidden; }
.petal-fall {
  position: absolute; top: -40px; width: 16px; height: 16px;
  background: linear-gradient(135deg, #FFE3EC, var(--rose));
  border-radius: 50% 0 50% 50%; opacity: .7;
  will-change: transform; animation: fall linear forwards;
}
@keyframes fall {
  0%   { transform: translateY(-40px) translateX(0) rotate(0deg); opacity: 0; }
  10%  { opacity: .7; }
  100% { transform: translateY(105vh) translateX(var(--drift, 60px)) rotate(540deg); opacity: 0; }
}
@keyframes burst {
  0%   { transform: translate(0, 0) rotate(0deg); opacity: 1; }
  100% { transform: translate(var(--bx, 0), var(--by, 0)) rotate(360deg); opacity: 0; }
}

/* ===================================================================
   Reset & base
   =================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--s-5); }

/* Accessibility helpers */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: -64px; z-index: 10000;
  background: var(--brand); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 10px;
  font-weight: 700; transition: top .2s ease;
}
.skip-link:focus { top: 0; }

:where(a, button, input, select, textarea, .btn, .filter, .nav__link, .nav__toggle, .float-btn):focus-visible {
  outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 6px;
}
.hero :focus-visible,
.header:not(.is-scrolled) .nav__link:focus-visible,
.float-btn:focus-visible { outline-color: #fff; }
.hero__search :focus-visible { outline-color: var(--brand); } /* white card needs dark ring */

/* ===================================================================
   Buttons
   =================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--s-2); font-weight: 700; font-size: var(--fs-base); line-height: 1.3;
  padding: 13px 24px; border-radius: 999px;
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out), background .2s var(--ease-out);
  white-space: nowrap;
}
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 8px 20px rgba(14, 124, 102, .3); }
.btn--primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(14, 124, 102, .38); }
.btn--ghost { background: rgba(255, 255, 255, .18); color: #fff; backdrop-filter: blur(6px); border: 1px solid rgba(255, 255, 255, .5); }
.btn--ghost:hover { background: rgba(255, 255, 255, .3); transform: translateY(-2px); }
.btn--sm { padding: 9px 18px; font-size: var(--fs-sm); background: var(--brand-tint); color: var(--brand-dark); }
.btn--sm:hover { background: var(--brand); color: #fff; }
.btn--block { width: 100%; }

/* ===================================================================
   Header
   =================================================================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 18px 0;
}
.header.is-scrolled { background: rgba(255, 255, 255, .92); backdrop-filter: blur(12px); box-shadow: 0 4px 20px rgba(17, 32, 59, .07); padding: 10px 0; }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-5); }
.logo { display: flex; align-items: center; gap: var(--s-2); font-weight: 800; font-size: 22px; line-height: 1; color: #fff; transition: color .3s; }
.header.is-scrolled .logo { color: var(--ink); }
.logo__mark { display: inline-flex; }
.logo__rose { color: var(--rose); display: block; }
.logo__text span { color: var(--accent); }
.logo--light { color: #fff; }

.nav { display: flex; gap: 6px; }
.nav__link {
  font-weight: 600; font-size: var(--fs-base); line-height: 1.3; color: rgba(255, 255, 255, .92);
  padding: 8px 14px; border-radius: 999px; transition: background .2s, color .2s;
}
.nav__link:hover { background: rgba(255, 255, 255, .16); }
.header.is-scrolled .nav__link { color: var(--ink-soft); }
.header.is-scrolled .nav__link:hover { background: var(--bg-alt); color: var(--brand); }

.header__cta { padding: 10px 22px; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.nav__toggle span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: .3s; }
.header.is-scrolled .nav__toggle span { background: var(--ink); }

.nav-scrim { position: fixed; inset: 0; background: rgba(8, 25, 35, .5); opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; z-index: 99; }
body.nav-open .nav-scrim { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }

/* ===================================================================
   Hero
   =================================================================== */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column;
  justify-content: center; padding: 130px 0 calc(var(--feature-overlap) + 24px);
  background: var(--brand-deep) url('https://images.unsplash.com/photo-1530789253388-582c481c54b0?auto=format&fit=crop&w=1920&q=80') center / cover no-repeat;
  color: #fff;
}
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(8, 30, 40, .86) 0%, rgba(8, 32, 44, .58) 45%, rgba(120, 40, 72, .30) 100%); }
.hero__inner { position: relative; z-index: 2; max-width: 720px; }
.hero__eyebrow { display: inline-block; background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .3); padding: 7px 16px; border-radius: 999px; font-size: var(--fs-sm); font-weight: 600; margin-bottom: var(--s-5); backdrop-filter: blur(6px); }
.hero__title { font-family: var(--serif); font-size: clamp(38px, 6vw, 66px); line-height: 1.05; font-weight: 700; letter-spacing: -1px; }
.hero__title span { color: var(--rose-soft); font-style: italic; }
.hero__text { font-size: clamp(16px, 2vw, 19px); line-height: 1.65; color: rgba(255, 255, 255, .9); margin: var(--s-5) 0 var(--s-6); max-width: 560px; }
.hero__actions { display: flex; gap: var(--s-3); flex-wrap: wrap; }
.hero .btn--primary { box-shadow: 0 10px 26px rgba(14, 124, 102, .45); }

.hero__search-label { position: relative; z-index: 2; margin-top: var(--s-7); text-transform: uppercase; letter-spacing: .08em; font-size: 12px; font-weight: 700; color: rgba(255, 255, 255, .85); }
.hero__search {
  position: relative; z-index: 2; margin-top: var(--s-3);
  background: #fff; border-radius: var(--radius); border-top: 3px solid var(--rose); padding: var(--s-3);
  display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: var(--s-3);
  box-shadow: var(--shadow-lg); max-width: 880px;
}
.field { display: flex; flex-direction: column; gap: 5px; text-align: left; }
.field__label { font-weight: 700; color: var(--ink-soft); line-height: 1.3; }
.hero__search .field__label { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; padding-left: 6px; }
.hero__search select, .hero__search input {
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px; min-height: 44px;
  font-family: inherit; font-size: var(--fs-md); color: var(--ink); background: var(--bg-alt);
}
.hero__search select:focus, .hero__search input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(14, 124, 102, .3); background: #fff; }
.hero__search input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(38%) sepia(60%) saturate(500%) hue-rotate(120deg); cursor: pointer; }
.field__btn { align-self: end; height: 48px; }

.hero__stats { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); margin-top: var(--s-8); }
.stat { text-align: center; }
.stat__num { display: block; font-size: clamp(28px, 4vw, 40px); font-weight: 800; font-family: var(--serif); color: var(--accent); font-variant-numeric: tabular-nums; font-feature-settings: 'tnum' 1; }
.stat__label { font-size: var(--fs-sm); color: rgba(255, 255, 255, .82); }

/* ===================================================================
   Features (overlap the hero)
   =================================================================== */
.features { margin-top: calc(-1 * var(--feature-overlap)); position: relative; z-index: 5; }
.features__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap-cards); }
.feature { background: #fff; border-radius: var(--radius); padding: var(--s-6); box-shadow: var(--shadow); transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out); }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature__icon { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; font-size: 26px; margin-bottom: var(--s-4); background: linear-gradient(135deg, rgba(14, 124, 102, .12), rgba(232, 162, 58, .14)); }
.feature h3 { font-size: 18px; font-weight: 700; margin-bottom: var(--s-2); }
.feature p { font-size: var(--fs-base); color: var(--ink-soft); }

/* ===================================================================
   Sections
   =================================================================== */
.section { padding: var(--section-y) 0; }
.section--alt { position: relative; background: var(--bg-alt); }
.section--alt::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44'%3E%3Cpath d='M22 6l5 16-5 16-5-16z' fill='%23B23A6B'/%3E%3Cpath d='M6 22l16-5 16 5-16 5z' fill='%23B23A6B'/%3E%3C/svg%3E");
  background-size: 88px 88px;
}
.section--alt > .container { position: relative; z-index: 1; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto var(--s-9); }
.section__eyebrow { color: var(--rose-deep); font-weight: 700; font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .08em; margin-bottom: var(--s-3); }
.section__title { font-family: var(--serif); font-size: clamp(28px, 4vw, 42px); font-weight: 700; line-height: 1.12; letter-spacing: -.25px; }
.section__sub { color: var(--ink-soft); margin-top: var(--s-4); font-size: var(--fs-lg); line-height: 1.65; }

/* ===================================================================
   Filters
   =================================================================== */
.filters { display: flex; gap: var(--s-2); justify-content: center; flex-wrap: wrap; margin-bottom: var(--s-7); }
.filter { padding: 9px 20px; border-radius: 999px; font-weight: 600; font-size: var(--fs-base); line-height: 1.3; color: var(--ink-soft); background: var(--bg-alt); border-bottom: 2px solid transparent; transition: color .2s, background .2s, box-shadow .2s; }
.section--alt .filter { background: #fff; }
.filter:hover { color: var(--brand); }
.filter.is-active { background: var(--brand); color: #fff; border-bottom-color: var(--rose); box-shadow: var(--shadow-rose); }

/* ===================================================================
   Tours
   =================================================================== */
.tours__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-cards); }
.tour { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), opacity .3s ease; display: flex; flex-direction: column; }
.tour:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tour.reveal.is-hidden, .tour.is-hidden { opacity: 0; transform: scale(.96); }
.tour__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.tour__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.08) contrast(1.04); transition: transform .6s var(--ease-out); }
.tour__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(14, 124, 102, .12), rgba(232, 162, 58, .1)); mix-blend-mode: multiply; pointer-events: none; }
.tour:hover .tour__media img { transform: scale(1.07); }
.tour__tag { position: absolute; top: 14px; left: 14px; z-index: 1; background: var(--accent); color: var(--ink); font-weight: 700; font-size: var(--fs-xs); line-height: 1.3; padding: 6px 13px; border-radius: 999px; }
.tour__body { padding: var(--s-5); display: flex; flex-direction: column; flex: 1; }
.tour__meta { display: flex; justify-content: space-between; font-size: var(--fs-sm); line-height: 1.3; color: var(--ink-soft); margin-bottom: var(--s-3); }
.tour__title { font-family: var(--serif); font-weight: 600; font-size: 21px; line-height: 1.2; margin-bottom: var(--s-2); }
.tour__desc { font-size: var(--fs-base); color: var(--ink-soft); margin-bottom: var(--s-4); flex: 1; }
.tour__foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); padding-top: var(--s-4); }
.tour__price span { display: block; font-size: 12px; line-height: 1.3; color: var(--ink-soft); }
.tour__price strong { font-family: var(--serif); font-weight: 700; font-size: 19px; color: var(--brand-dark); font-variant-numeric: tabular-nums; font-feature-settings: 'tnum' 1; }

/* ===================================================================
   Destinations bento
   =================================================================== */
.dest__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: var(--gap-cards); }
.dest { position: relative; border-radius: var(--radius); overflow: hidden; background-size: cover; background-position: center; display: flex; align-items: flex-end; padding: var(--s-5); transition: transform .3s var(--ease-out); }
.dest::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8, 25, 35, .82), transparent 65%); }
.dest:hover { transform: scale(1.02); }
.dest__info { position: relative; z-index: 2; color: #fff; }
.dest__info h3 { font-family: var(--serif); font-weight: 700; font-size: 22px; }
.dest__info span { font-size: var(--fs-sm); opacity: .9; }
.dest--lg { grid-row: span 2; }
.dest--wide { grid-column: span 2; }

/* ===================================================================
   About
   =================================================================== */
.about__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--gap-split); align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; object-fit: cover; width: 100%; filter: saturate(1.08) contrast(1.04); }
.about__badge { position: absolute; bottom: -22px; right: -16px; background: var(--brand); color: #fff; border-radius: var(--radius); padding: 18px 24px; text-align: center; box-shadow: var(--shadow-lg); }
.about__badge strong { display: block; font-size: 32px; font-family: var(--serif); font-variant-numeric: tabular-nums; }
.about__badge span { font-size: var(--fs-xs); opacity: .9; }
.about__content > p { color: var(--ink-soft); font-size: var(--fs-md); line-height: 1.65; margin: var(--s-4) 0; max-width: 62ch; }
.about__story { font-family: var(--serif); font-style: italic; font-size: 19px; line-height: 1.5; color: var(--ink-mid) !important; border-left: 3px solid var(--rose); padding-left: var(--s-4); }
.about__list { margin: var(--s-5) 0 var(--s-6); display: grid; gap: var(--s-3); }
.about__list li { position: relative; padding-left: 28px; font-weight: 600; color: var(--ink); }
.about__list li::before { content: '✓'; position: absolute; left: 0; top: -1px; width: 20px; height: 20px; border-radius: 50%; background: var(--brand-soft); color: var(--brand-dark); font-size: 12px; font-weight: 800; display: grid; place-items: center; }

/* ===================================================================
   Services
   =================================================================== */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-cards); }
.service { background: #fff; border-radius: var(--radius); padding: var(--s-6); box-shadow: var(--shadow); transition: transform .3s var(--ease-out); }
.service:hover { transform: translateY(-5px); }
.service span { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; font-size: 26px; background: linear-gradient(135deg, rgba(14, 124, 102, .12), rgba(232, 162, 58, .14)); }
.service h3 { font-size: 19px; font-weight: 700; margin: var(--s-4) 0 var(--s-2); }
.service p { color: var(--ink-soft); font-size: var(--fs-base); }

/* ===================================================================
   Reviews
   =================================================================== */
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-cards); }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: var(--s-6); }
.review__stars { color: var(--accent-ink); font-size: 18px; letter-spacing: 2px; margin-bottom: var(--s-4); }
.review blockquote { font-size: var(--fs-md); color: var(--ink); line-height: 1.55; margin-bottom: var(--s-5); max-width: 40ch; }
.review figcaption { display: flex; align-items: center; gap: var(--s-3); }
.review__ava { width: 46px; height: 46px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: var(--fs-md); }
.review figcaption strong { display: block; font-size: var(--fs-base); }
.review figcaption small { color: var(--ink-soft); font-size: var(--fs-xs); }

/* ===================================================================
   Contact — final: emerald info panel + elevated form card + map strip
   =================================================================== */
.contact {
  position: relative;
  background:
    radial-gradient(60% 50% at 100% 0%, var(--rose-tint) 0%, transparent 58%),
    radial-gradient(55% 50% at 0% 100%, var(--brand-tint) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  column-gap: var(--gap-split);
  row-gap: var(--s-7);
  align-items: stretch; /* equal-height columns — kills the old start-aligned gap */
}

/* ---- Left: emerald gradient panel ---- */
.contact__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 44px);
  border-radius: calc(var(--radius) + 6px);
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(224, 102, 143, .30), transparent 56%),
    linear-gradient(155deg, var(--brand-deep) 0%, var(--brand-dark) 58%, var(--brand) 100%);
  box-shadow: var(--shadow-lg);
}
.contact__panel::before,
.contact__panel::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
}
.contact__panel::before { /* gold glow */
  width: 320px; height: 320px;
  right: -120px; bottom: -130px;
  background: radial-gradient(circle, rgba(232, 162, 58, .30), transparent 70%);
}
.contact__panel::after { /* soft white highlight */
  width: 240px; height: 240px;
  left: -90px; top: -80px;
  background: radial-gradient(circle, rgba(255, 255, 255, .12), transparent 70%);
}
.contact__panel > * { position: relative; z-index: 1; }

.contact__panel .section__eyebrow { color: var(--rose-soft); }
.contact__panel .section__title { color: #fff; }

.contact__lead {
  color: rgba(255, 255, 255, .9);
  line-height: 1.7;
  margin: var(--s-3) 0 var(--s-6);
  max-width: 44ch;
  font-size: var(--fs-md);
}

/* contact details with translucent glass chips + monoline icons */
.contact__list {
  list-style: none;
  display: grid;
  gap: var(--s-4);
  margin: 0 0 var(--s-6);
  padding: 0;
}
.contact__list li { display: flex; gap: var(--s-4); align-items: center; }
.contact__chip {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 14px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  transition: background .25s var(--ease-out), transform .25s var(--ease-pop), border-color .25s var(--ease-out);
}
.contact__chip svg { width: 20px; height: 20px; display: block; }
.contact__list li:hover .contact__chip {
  background: rgba(255, 255, 255, .22);
  border-color: rgba(255, 255, 255, .4);
  transform: translateY(-2px);
}
.contact__detail { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contact__detail small {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
  color: rgba(255, 255, 255, .72);
}
.contact__detail a,
.contact__detail span {
  font-weight: 600;
  font-size: var(--fs-md);
  line-height: 1.3;
  color: #fff;
  overflow-wrap: anywhere;
}
.contact__detail a { transition: color .2s var(--ease-out); }
.contact__detail a:hover,
.contact__detail a:focus-visible { color: var(--rose-soft); }

/* translucent social pills pinned to the panel bottom (keeps the aside flush) */
.contact__socials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: auto;
  padding-top: var(--s-5);
}
.contact__socials a {
  display: inline-flex;
  align-items: center;
  padding: 10px 17px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .24);
  color: #fff;
  font-weight: 600;
  font-size: var(--fs-sm);
  transition: background .2s var(--ease-out), color .2s var(--ease-out), transform .2s var(--ease-out);
}
.contact__socials a:hover,
.contact__socials a:focus-visible {
  background: #fff;
  color: var(--brand-dark);
  transform: translateY(-2px);
  outline: none;
}

/* ---- Right: elevated white form card with brand->gold->rose hairline ---- */
.contact__form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  padding: clamp(24px, 3vw, 36px);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.contact__form::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 52%, var(--rose) 100%);
}
.contact__form-head { display: flex; flex-direction: column; gap: 4px; margin-bottom: var(--s-1); }
.contact__form-title {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 25px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}
.contact__form-sub { font-size: var(--fs-sm); color: var(--ink-soft); line-height: 1.5; }

.contact__form .field__label { font-size: var(--fs-sm); font-weight: 700; color: var(--ink-mid); }
.contact__form input,
.contact__form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  min-height: 48px;
  font-family: inherit;
  font-size: var(--fs-md);
  color: var(--ink);
  background: var(--bg-alt);
  resize: vertical;
  transition: border-color .2s var(--ease-out), box-shadow .2s var(--ease-out), background .2s var(--ease-out);
}
.contact__form input::placeholder,
.contact__form textarea::placeholder { color: var(--ink-soft); opacity: .85; }
.contact__form input:hover,
.contact__form textarea:hover { border-color: var(--brand-soft); }
.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(14, 124, 102, .16);
  background: var(--bg);
}

/* message box grows to soak up extra height so the card never has an empty gap */
.contact__field--grow { flex: 1 1 auto; min-height: 0; }
.contact__field--grow textarea { flex: 1; min-height: 130px; line-height: 1.6; }

.contact__form .btn { margin-top: var(--s-2); }
.contact__note {
  margin: var(--s-1) 0 0;
  padding: 12px 16px;
  text-align: center;
  font-weight: 700;
  font-size: var(--fs-sm);
  line-height: 1.45;
  color: var(--brand-dark);
  background: var(--brand-tint);
  border: 1px solid var(--brand-soft);
  border-radius: var(--radius-sm);
}

/* ---- Map: full-width elevated strip below both columns ---- */
.contact__map {
  grid-column: 1 / -1;
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.contact__map iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
}
.contact__map-tag {
  position: absolute;
  top: var(--s-4);
  left: var(--s-4);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  max-width: calc(100% - 32px);
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contact__map-dot {
  flex: 0 0 auto;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--rose-deep);
  box-shadow: 0 0 0 4px var(--rose-tint);
}

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .contact__inner { grid-template-columns: 1fr; }
  .contact__socials { margin-top: var(--s-5); }
}

@media (max-width: 520px) {
  .contact__panel { padding: 24px 20px; border-radius: var(--radius); }
  .contact__form { padding: 22px 18px; border-radius: var(--radius); }
  .contact__list { gap: var(--s-3); }
  .contact__list li { gap: var(--s-3); }
  .contact__chip { width: 42px; height: 42px; border-radius: 12px; }
  .contact__socials a { flex: 1 1 auto; justify-content: center; min-height: 44px; }
  .contact__map { border-radius: var(--radius); }
  .contact__map iframe { height: 260px; }
  .contact__map-tag { top: var(--s-3); left: var(--s-3); font-size: var(--fs-xs); padding: 7px 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .contact__chip,
  .contact__socials a,
  .contact__detail a,
  .contact__form input,
  .contact__form textarea { transition: none; }
  .contact__list li:hover .contact__chip,
  .contact__socials a:hover { transform: none; }
}

/* ===================================================================
   Footer
   =================================================================== */
.footer { position: relative; background: #0a1f2b; color: rgba(255, 255, 255, .75); padding: var(--section-y) 0 24px; box-shadow: inset 0 3px 0 var(--rose); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: var(--s-7); }
.footer__col p { margin-top: var(--s-4); font-size: var(--fs-base); line-height: 1.6; max-width: 280px; }
.footer__col h4 { color: #fff; font-size: var(--fs-sm); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: var(--s-4); }
.footer__col a, .footer__col span { display: block; font-size: var(--fs-base); line-height: 1.3; margin-bottom: var(--s-3); transition: color .2s; }
.footer .logo p { margin: 0; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255, 255, 255, .1); margin-top: var(--s-8); padding-top: var(--s-5); font-size: var(--fs-sm); flex-wrap: wrap; gap: var(--s-2); }

/* ===================================================================
   Float button
   =================================================================== */
.float-btn { position: fixed; bottom: 26px; right: 26px; width: 58px; height: 58px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-size: 26px; box-shadow: var(--shadow-lg); z-index: 90; transition: transform .25s var(--ease-out); animation: pulse 3.2s ease-out infinite; }
.float-btn:hover { transform: scale(1.1); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(14, 124, 102, .45); } 70% { box-shadow: 0 0 0 12px rgba(14, 124, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(14, 124, 102, 0); } }

/* ===================================================================
   Reveal on scroll (staggered)
   =================================================================== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s var(--ease-out), transform .55s var(--ease-out); transition-delay: calc(var(--rev-i, 0) * 80ms); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===================================================================
   Reduced motion
   =================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .float-btn, .preloader__flower { animation: none !important; }
  .preloader__flower .petal { opacity: .95; }
}

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 980px) {
  .features__grid, .tours__grid, .services__grid, .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner, .contact__inner { grid-template-columns: 1fr; gap: var(--s-7); }
  .about__badge { right: 16px; }
  .about__media img { aspect-ratio: 16 / 10; }
  .dest__grid { grid-template-columns: repeat(2, 1fr); }
  .dest--lg { grid-row: auto; }
  .dest--wide { grid-column: span 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  :root { --section-y: 64px; }
  .nav { position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px); background: #fff; flex-direction: column; padding: 96px 26px 30px; transform: translateX(100%); visibility: hidden; transition: transform .35s var(--ease-out), visibility .35s var(--ease-out); box-shadow: var(--shadow-lg); gap: 4px; }
  .nav.is-open { transform: none; visibility: visible; }
  .nav__link { color: var(--ink) !important; font-size: var(--fs-lg); padding: 12px 14px; min-height: 44px; display: flex; align-items: center; }
  .nav__toggle { display: flex; z-index: 110; }
  .header__cta { display: none; }
  .header { background: rgba(255, 255, 255, .92); backdrop-filter: blur(12px); }
  .header .logo, .header .nav__toggle span { color: var(--ink); }
  .header .nav__toggle span { background: var(--ink); }
  body.nav-open .nav__toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  body.nav-open .nav__toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav__toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .hero { padding-top: 120px; }
  .hero__search { grid-template-columns: 1fr 1fr; }
  .field__btn { grid-column: span 2; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: var(--s-6); }
  .btn--sm, .filter, .contact__socials a { min-height: 44px; }
}
@media (max-width: 520px) {
  .features__grid, .tours__grid, .services__grid, .reviews__grid, .dest__grid { grid-template-columns: 1fr; }
  .dest--wide, .dest--lg { grid-column: auto; grid-row: auto; }
  .hero__search { grid-template-columns: 1fr; }
  .field__btn { grid-column: auto; }
  .footer__grid { grid-template-columns: 1fr; }
  .container { padding: 0 var(--s-4); }
}
