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

:root {
  --ivory: #faf6ec;
  --sand: #f0e6c8;
  --warm: #d9c89a;
  --blush: #c9768f;
  --rose: #a0445e;
  --earth: #7a4f2d;
  --teak: #5c3420;
  --dark: #1e1208;
  --teal: #2e7271;
  --teal-lt: #4a9e9c;
  --white: #ffffff;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  background: var(--ivory);
  font-family: "Jost", sans-serif;
  color: var(--dark);
  overflow-x: hidden;
}

/* ─────────────── NAV ─────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  height: 72px;
  background: rgba(30, 18, 8, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 118, 143, 0.2);
  transition: background 0.3s;
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.nav-logo span {
  color: var(--blush);
  font-style: italic;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--blush);
}
.nav-cta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white) !important;
  border: 1px solid var(--blush);
  padding: 9px 22px;
  border-radius: 2px;
  transition:
    background 0.2s,
    color 0.2s !important;
}
.nav-cta:hover {
  background: var(--blush) !important;
  color: #fff !important;
}

/* ─────────────── HERO ─────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(30, 18, 8, 0.78) 0%, rgba(92, 52, 32, 0.55) 45%, rgba(46, 114, 113, 0.35) 100%),
    url("../images/lamu_hero.png") center/cover no-repeat;
  animation: slowZoom 18s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}
/* Decorative diagonal overlay */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(30, 18, 8, 0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 900px;
  animation: heroFadeIn 1.2s ease both;
}
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--blush);
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--blush);
}
.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.9;
  max-width: 520px;
  margin-bottom: 44px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.btn-primary {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blush);
  border: none;
  padding: 16px 38px;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.2s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--rose);
  transform: translateY(-2px);
}
.btn-ghost {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 16px 38px;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition:
    border-color 0.25s,
    color 0.25s;
  display: inline-block;
}
.btn-ghost:hover {
  border-color: var(--blush);
  color: var(--blush);
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2.4s ease-in-out infinite;
}
.scroll-hint .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ─────────────── STATS STRIP ─────────────── */
.stats-strip {
  background: var(--teak);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 3px solid var(--blush);
}
.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stat-item:last-child {
  border-right: none;
}
.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--blush);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
  display: block;
}

/* ─────────────── SECTION COMMONS ─────────────── */
.section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blush);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--blush);
  flex-shrink: 0;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--teak);
}
.section-title em {
  font-style: italic;
  color: var(--blush);
}
.section-body {
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.9;
  color: #5a4030;
  max-width: 600px;
}

/* ─────────────── ABOUT ─────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.about-image {
  position: relative;
  overflow: hidden;
  /* background: url("https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=900&q=80") center/cover no-repeat; */
  background: url(../images/33.png) center /cover no-repeat;
}
.about-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46, 114, 113, 0.25), transparent);
}
.about-image-badge {
  position: absolute;
  bottom: 40px;
  right: -1px;
  background: var(--blush);
  color: var(--white);
  padding: 18px 28px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  max-width: 220px;
  line-height: 1.5;
  box-shadow: -6px 6px 24px rgba(0, 0, 0, 0.2);
}
.about-content {
  background: var(--ivory);
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-content .section-body {
  margin-top: 20px;
}
.about-features {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-feat .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blush);
  margin-top: 6px;
  flex-shrink: 0;
}
.about-feat p {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--earth);
  line-height: 1.5;
}
.about-feat strong {
  display: block;
  font-weight: 600;
  color: var(--teak);
}

/* ─────────────── SERVICES ─────────────── */
.services {
  padding: 120px 60px;
  background: linear-gradient(to bottom, var(--ivory) 0%, var(--sand) 12%);
}
.services-header {
  text-align: center;
  margin-bottom: 64px;
}
.services-header .section-label {
  justify-content: center;
}
.services-header .section-label::before {
  display: none;
}
.services-header .section-body {
  margin: 16px auto 0;
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.svc-card {
  background: var(--white);
  padding: 32px 30px;
  transition:
    background 0.3s,
    transform 0.3s ease,
    box-shadow 0.3s ease;
  animation: fadeUp 0.7s ease both;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(30, 18, 8, 0.04);
}
.svc-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--blush);
  transition: width 0.4s ease;
}
.svc-card:hover::after {
  width: 100%;
  transform: translateY(-5px) scale(1.04);
}
.svc-card:hover {
  background: #fff;
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(30, 18, 8, 0.08);
}
.svc-card:nth-child(1) {
  animation-delay: 0.05s;
}
.svc-card:nth-child(2) {
  animation-delay: 0.12s;
}
.svc-card:nth-child(3) {
  animation-delay: 0.19s;
}
.svc-card:nth-child(4) {
  animation-delay: 0.26s;
}
.svc-card:nth-child(5) {
  animation-delay: 0.33s;
}
.svc-card:nth-child(6) {
  animation-delay: 0.4s;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.svc-icon {
  font-size: 2rem;
  margin-bottom: 18px;
  display: block;
}
.svc-img {
  width: 100%;
  max-width: 400px;
  height: 230px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 18px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.svc-img-accommodation {
  object-position: right center;
}
.btn-secondary {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: var(--teak);
  background: transparent;
  border: 1px solid var(--teak);
  padding: 12px 28px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.25s,
    color 0.25s;
  display: inline-block;
  margin-top: 20px;
  max-width: 180px;
}
.btn-secondary:hover {
  background: var(--teak);
  color: var(--white);
}
.svc-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--teak);
  margin-bottom: 12px;
}
.svc-desc {
  font-size: 0.87rem;
  font-weight: 300;
  color: #6a5040;
  line-height: 1.8;
}

/* ─────────────── RATES ─────────────── */
.rates {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.rates-image {
  /* background: url("https://images.unsplash.com/photo-1586105251261-72a756497a11?w=900&q=80") center/cover no-repeat; */
  background: url(../images/11.jpeg) center /cover no-repeat;
  position: relative;
}
.rates-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 18, 8, 0.45);
}
.rates-content {
  background: var(--teak);
  padding: 90px 70px;
}
.rates-content .section-label {
  color: var(--blush);
}
.rates-content .section-label::before {
  background: var(--blush);
}
.rates-content .section-title {
  color: var(--white);
}
.rates-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.rate-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px;
  border-radius: 4px;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.rate-card:hover {
  border-color: var(--blush);
  background: rgba(201, 118, 143, 0.08);
}
.rate-card.featured {
  border-color: var(--blush);
  background: rgba(201, 118, 143, 0.12);
  grid-column: 1 / -1;
}
.rate-type {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 10px;
}
.rate-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
.rate-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.45rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.rate-price sup {
  font-size: 1.05rem;
  vertical-align: super;
  font-weight: 300;
}
.rate-currency {
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  display: block;
}

/* ─────────────── LOCATION ─────────────── */
.location {
  padding: 100px 80px;
  background: var(--ivory);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.location .section-body {
  margin-top: 20px;
}
.location-points {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.loc-point {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 20px;
  background: var(--sand);
  border-left: 3px solid var(--blush);
  border-radius: 0 4px 4px 0;
}
.loc-point .loc-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(30, 18, 8, 0.1);
  border: 2px solid var(--white);
}
.loc-point .loc-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.loc-point strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--teak);
  margin-bottom: 3px;
}
.loc-point p {
  font-size: 0.83rem;
  font-weight: 300;
  color: #6a5040;
  line-height: 1.6;
}
.location-map-placeholder {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(30, 18, 8, 0.18);
  background: var(--sand);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.location-map-placeholder iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}
.map-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--teak);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}

/* ─────────────── TESTIMONIAL ─────────────── */
.testimonial {
  background: var(--teal);
  padding: 90px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Cormorant Garamond", serif;
  font-size: 20rem;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
}
.testimonial blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.55;
  position: relative;
}
.testimonial cite {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-style: normal;
}
/* booking section */
/* ══════════════════════════════
BOOKING FORM
══════════════════════════════ */
.booking-section { background:var(--dark); padding:100px 60px; position:relative; overflow:hidden; }
.booking-section::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 20% 50%,rgba(201,118,143,0.12) 0%,transparent 55%),radial-gradient(ellipse at 80% 30%,rgba(46,114,113,0.1) 0%,transparent 55%); pointer-events:none; }
.booking-inner { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:1fr 1.6fr; gap:80px; align-items:start; position:relative; }

.booking-info .section-label { color:var(--blush); }
.booking-info .section-label::before { background:var(--blush); }
.booking-info .section-title { color:var(--white); margin-bottom:20px; }
.booking-info > p { font-size:0.92rem; font-weight:300; color:rgba(255,255,255,0.6); line-height:1.9; margin-bottom:36px; }
.booking-highlights { display:flex; flex-direction:column; gap:14px; }
.bk-highlight { display:flex; align-items:flex-start; gap:14px; padding:14px 18px; border:1px solid rgba(255,255,255,0.08); border-radius:4px; }
.bk-highlight .bk-icon { font-size:1.3rem; flex-shrink:0; margin-top:2px; }
.bk-highlight p { font-size:0.82rem; font-weight:300; color:rgba(255,255,255,0.65); line-height:1.5; }
.bk-highlight strong { display:block; font-weight:600; color:rgba(255,255,255,0.9); font-size:0.84rem; }


/* Form card */
.booking-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 48px 44px;
  backdrop-filter: blur(8px);
}
.form-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.form-subtitle {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 36px;
  line-height: 1.6;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-family: "Jost", sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  padding: 13px 16px;
  border-radius: 4px;
  outline: none;
  transition:
    border-color 0.25s,
    background 0.25s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blush);
  background: rgba(255, 255, 255, 0.09);
}
.form-group select option {
  background: #2a1a0e;
  color: #fff;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--blush);
  color: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Jost", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition:
    background 0.25s,
    transform 0.2s;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover:not(:disabled) {
  background: var(--rose);
  transform: translateY(-2px);
}
.form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-status {
  margin-top: 18px;
  padding: 16px 20px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.6;
  display: none;
}
.form-status.success {
  background: rgba(46, 125, 94, 0.18);
  border: 1px solid rgba(46, 125, 94, 0.4);
  color: #7de8b8;
  display: block;
}
.form-status.error {
  background: rgba(192, 57, 43, 0.15);
  border: 1px solid rgba(192, 57, 43, 0.35);
  color: #f5a6a0;
  display: block;
}
/* ─────────────── CTA ─────────────── */
.cta-section {
  padding: 110px 60px;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
  Border-top: 3px solid var(--blush);
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201, 118, 143, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(46, 114, 113, 0.12) 0%, transparent 60%);
}
.cta-section .section-label {
  justify-content: center;
  position: relative;
}
.cta-section .section-label::before {
  display: none;
}
.cta-section .section-title {
  color: var(--white);
  position: relative;
  margin-top: 14px;
  margin-bottom: 20px;
}
.cta-section .section-body {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 auto 44px;
  position: relative;
  text-align: center;
}
.cta-contacts {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 52px;
  position: relative;
}
.contact-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 28px;
  border-radius: 40px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 300;
  text-decoration: none;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.contact-pill:hover {
  border-color: var(--blush);
  background: rgba(201, 118, 143, 0.12);
  color: var(--white);
}
.contact-pill[href*="instagram.com"]:hover {
  border-color: #e1306c;
  background: rgba(225, 48, 108, 0.08);
  color: #ffffff;
}
.contact-pill[href*="tiktok.com"]:hover {
  border-color: #00f2fe;
  background: rgba(0, 242, 254, 0.05);
  color: #ffffff;
  box-shadow: -2px -2px 0px rgba(0, 242, 254, 0.3), 2px 2px 0px rgba(254, 9, 121, 0.3);
}
.contact-pill span {
  font-size: 1.2rem;
}

/* ─────────────── FOOTER ─────────────── */
footer {
  background: var(--teak);
  padding: 48px 60px 28px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  border-top: 3px solid var(--blush);
}
.footer-brand .nav-logo {
  font-size: 1.6rem;
  margin-bottom: 14px;
  display: block;
}
.footer-brand p {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.social-btn .social-icon {
  width: 18px;
  height: 18px;
}
.social-btn[aria-label="Instagram"] {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border: none;
  color: #ffffff;
}
.social-btn[aria-label="Instagram"]:hover {
  background: linear-gradient(45deg, #f5a049 0%, #ed7a51 25%, #e33e56 50%, #d83b7a 75%, #c82e98 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.5);
}
.social-btn[aria-label="TikTok"] {
  background: #010101;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
}
.social-btn[aria-label="TikTok"]:hover {
  background: #0d0d0d;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
  box-shadow: -2px -2px 0px #00f2fe, 2px 2px 0px #fe0979, 0 6px 20px rgba(0, 0, 0, 0.6);
}
.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 9px;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--blush);
}
.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
}
.footer-motto {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ─────────────── RESPONSIVE ─────────────── */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  padding: 0;
  z-index: 101;
}
.nav-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 900px) {
  nav {
    padding: 0 24px;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 72px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 72px);
    background: rgba(30, 18, 8, 0.96);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 60px 40px;
    gap: 32px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid rgba(201, 118, 143, 0.15);
    z-index: 99;
  }
  .nav-links.active {
    right: 0;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  .nav-links a {
    font-size: 0.85rem;
    display: block;
    padding: 8px 0;
  }
  .nav-cta {
    display: inline-block !important;
    width: 80%;
    margin: 10px auto 0;
    text-align: center;
  }

  .hero-content {
    padding: 0 36px;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .about-image {
    height: 340px;
  }
  .about-content {
    padding: 52px 36px;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .services {
    padding: 70px 24px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .rates {
    grid-template-columns: 1fr;
  }
  .rates-image {
    height: 260px;
  }
  .rates-content {
    padding: 52px 36px;
  }
  .rates-cards {
    grid-template-columns: 1fr;
  }
  .rate-card.featured {
    grid-column: 1;
  }
  .location {
    grid-template-columns: 1fr;
    padding: 60px 28px;
    gap: 44px;
  }
  .cta-section {
    padding: 70px 28px;
  }
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Booking Stacking Fixes */
  .booking-section {
    padding: 60px 24px;
  }
  .booking-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .booking-form-card {
    padding: 32px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 40px 28px 24px;
  }
}

@media (max-width: 480px) {
  .stats-strip {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .stat-item:last-child {
    border-bottom: none;
  }
}
