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

:root {
  --teal-dark:  #01849b;
  --teal:       #0fa3bc;
  --teal-light: #40d9f1;
  --teal-pale:  #ebf9ff;
  --teal-xpale: #f5f7f8;
  --green:      #1DAE22;
  --text:       #333333;
  --muted:      #666666;
  --border:     #dde8ec;
  --white:      #ffffff;
  --font-head:  'Montserrat', 'Segoe UI', sans-serif;
  --font-body:  'Inter', 'Roboto', system-ui, sans-serif;
  --radius:     6px;
  --shadow:     0 2px 16px rgba(1,132,155,0.10);
  --shadow-md:  0 4px 28px rgba(1,132,155,0.15);
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; object-fit: cover; }
ul { list-style: none; }

.container { max-width: 1060px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-primary   { background: var(--green);     color: var(--white); }
.btn-teal      { background: var(--teal-dark); color: var(--white); }
.btn-outline   { background: transparent; color: var(--teal-dark); border: 2px solid var(--teal-dark); }
.btn-outline:hover { background: var(--teal-dark); color: var(--white); }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.8rem; }

/* ── Navbar ───────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--teal-dark);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--text);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { background: var(--teal-pale); color: var(--teal-dark); }

.nav-cta { margin-left: 0.75rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--teal-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
  gap: 0.25rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}
.nav-mobile a:hover,
.nav-mobile a.active { background: var(--teal-pale); color: var(--teal-dark); }

/* ── Page top padding (below fixed nav) ───────────── */
.page-top { padding-top: 64px; }

/* ── Section shared ───────────────────────────────── */
section { padding: 5rem 0; }
.section-alt { background: var(--teal-xpale); }
.section-pale { background: var(--teal-pale); }

.section-label {
  display: inline-block;
  background: var(--teal-pale);
  color: var(--teal-dark);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

/* ── Hero ─────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--teal-xpale);
}

.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.22;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 1.5rem;
  max-width: 1060px;
  margin: 0 auto;
  width: 100%;
}

.hero-tag {
  display: inline-block;
  background: var(--teal-pale);
  color: var(--teal-dark);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero-content h1 span { color: var(--teal-dark); }

.hero-content p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── About / Bio ──────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-img img { height: 520px; }

.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.about-text p { color: var(--muted); margin-bottom: 1rem; }

.stats-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item span {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--teal-dark);
  line-height: 1;
}
.stat-item p { font-size: 0.8rem; color: var(--muted); margin-top: 0.25rem; }

/* ── Info Grid (stats about the model) ────────────── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}
.info-card .label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--teal-dark);
  margin-bottom: 0.3rem;
}
.info-card .value { font-size: 0.95rem; color: var(--text); }

/* ── Testimonials ─────────────────────────────────── */
.testimonial-carousel { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex;
  transition: transform 0.4s ease;
}
.testimonial-card {
  min-width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-card blockquote::before { content: '\201C'; font-size: 2rem; color: var(--teal-light); line-height: 0; vertical-align: -0.4rem; margin-right: 0.25rem; }
.testimonial-author {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal-dark);
}
.testimonial-source { font-size: 0.78rem; color: var(--muted); }
.carousel-controls {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  justify-content: center;
}
.carousel-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid var(--teal-dark);
  background: none;
  color: var(--teal-dark);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.carousel-btn:hover { background: var(--teal-dark); color: var(--white); }
.carousel-dots {
  display: flex; gap: 0.5rem;
  align-items: center;
  justify-content: center;
  margin-top: 0.75rem;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active { background: var(--teal-dark); transform: scale(1.3); }

/* ── Gallery ──────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 10px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius);
  background: var(--teal-xpale);
}
.gallery-item.tall  { grid-row: span 2; }
.gallery-item.wide  { grid-column: span 2; }
.gallery-item img   { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(1,132,155,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.8);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
}

/* ── Lightbox ─────────────────────────────────────── */
#lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}
#lightbox.active { display: flex; }
#lb-img { max-width: 90vw; max-height: 88vh; width: auto; height: auto; object-fit: contain; border-radius: var(--radius); }
#lb-close, #lb-prev, #lb-next {
  position: absolute; background: none; border: none;
  color: var(--white); cursor: pointer; opacity: 0.75; transition: opacity 0.2s;
}
#lb-close:hover, #lb-prev:hover, #lb-next:hover { opacity: 1; }
#lb-close { top: 1.25rem; right: 1.5rem; font-size: 1.6rem; }
#lb-prev   { left: 1.5rem;  font-size: 3rem; }
#lb-next   { right: 1.5rem; font-size: 3rem; }

/* ── Pricing Tables ───────────────────────────────── */
.pricing-section { margin-bottom: 3.5rem; }
.pricing-section h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--teal-pale);
}

.price-table { width: 100%; border-collapse: collapse; margin-bottom: 1rem; }
.price-table th {
  background: var(--teal-dark);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.75rem 1rem;
  text-align: left;
}
.price-table td {
  padding: 0.65rem 1rem;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.price-table tr:nth-child(even) td { background: var(--teal-xpale); }
.price-table tr:hover td { background: var(--teal-pale); }
.price-table td:last-child { font-weight: 600; color: var(--teal-dark); white-space: nowrap; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}
.services-box {
  border-radius: var(--radius);
  padding: 1.5rem;
}
.services-box.included { background: #f0fdf4; border: 1px solid #86efac; }
.services-box.excluded { background: #fff5f5; border: 1px solid #fca5a5; }
.services-box h4 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.services-box.included h4 { color: #15803d; }
.services-box.excluded h4 { color: #dc2626; }
.services-box ul { display: flex; flex-direction: column; gap: 0.35rem; }
.services-box li { font-size: 0.88rem; display: flex; align-items: flex-start; gap: 0.5rem; }
.services-box li::before { flex-shrink: 0; margin-top: 0.2rem; }
.services-box.included li::before { content: '✓'; color: #15803d; font-weight: 700; }
.services-box.excluded li::before { content: '✕'; color: #dc2626; font-weight: 700; }

.package-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.package-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.package-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.package-card-img { height: 180px; }
.package-card-body { padding: 1.25rem; }
.package-card-body h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 0.5rem;
}
.package-price {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.package-card-body p { font-size: 0.88rem; color: var(--muted); }

/* ── Accordion ────────────────────────────────────── */
.accordion { display: flex; flex-direction: column; gap: 0.75rem; }
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.accordion-header:hover { background: var(--teal-xpale); }
.accordion-header.open { background: var(--teal-pale); }
.accordion-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--teal-pale);
  color: var(--teal-dark);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.accordion-header.open .accordion-icon { background: var(--teal-dark); color: var(--white); }
.accordion-title {
  flex: 1;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}
.accordion-arrow {
  font-size: 1.1rem;
  color: var(--teal-dark);
  transition: transform 0.3s;
}
.accordion-header.open .accordion-arrow { transform: rotate(180deg); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  background: var(--white);
}
.accordion-body.open { max-height: 600px; }
.accordion-body-inner {
  padding: 1.25rem 1.5rem 1.5rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
  border-top: 1px solid var(--border);
}
.accordion-body-inner ul { margin-top: 0.5rem; display: flex; flex-direction: column; gap: 0.4rem; }
.accordion-body-inner li { display: flex; gap: 0.5rem; }
.accordion-body-inner li::before { content: '•'; color: var(--teal-dark); flex-shrink: 0; }
.accordion-body-inner strong { color: var(--text); }

/* ── Wishlist ─────────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--white);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active { border-color: var(--teal-dark); background: var(--teal-dark); color: var(--white); }

.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.wish-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s, opacity 0.3s;
  background: var(--white);
}
.wish-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.wish-card.hidden { display: none; }
.wish-card-img {
  height: 180px;
  overflow: hidden;
  background: var(--teal-xpale);
}
.wish-card-img img { height: 100%; object-fit: cover; transition: transform 0.4s; }
.wish-card:hover .wish-card-img img { transform: scale(1.05); }
.wish-card-body { padding: 1rem; }
.wish-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 0.35rem;
}
.wish-card-body h4 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.wish-card-body p { font-size: 0.82rem; color: var(--muted); margin-bottom: 0.75rem; }
.wish-link { font-size: 0.8rem; font-weight: 600; color: var(--teal-dark); }
.wish-link:hover { text-decoration: underline; }

/* ── Booking ──────────────────────────────────────── */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}
.contact-method {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.contact-method:hover { border-color: var(--teal-dark); transform: translateY(-3px); }
.contact-method .cm-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.contact-method h4 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.contact-method p { font-size: 0.85rem; color: var(--muted); }

.booking-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.booking-form h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 0.5rem;
}
.booking-form .form-note { font-size: 0.88rem; color: var(--muted); margin-bottom: 2rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1.25rem; }
.form-group label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-dark);
  box-shadow: 0 0 0 3px rgba(1,132,155,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; cursor: pointer; }
.form-required { color: #dc2626; margin-left: 2px; }
.form-submit { width: 100%; padding: 0.9rem; font-size: 0.95rem; }

/* ── Page Hero (inner pages) ──────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--teal-pale) 0%, var(--teal-xpale) 100%);
  padding: 4rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.page-hero p { font-size: 1rem; color: var(--muted); max-width: 500px; margin: 0 auto; }

/* ── Availability Calendar embed ──────────────────── */
.calendar-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  padding: 1.5rem;
}
.calendar-wrap h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.cal-placeholder {
  background: var(--teal-xpale);
  border-radius: var(--radius);
  padding: 2rem;
  font-size: 0.88rem;
  color: var(--muted);
}

/* ── Footer ───────────────────────────────────────── */
footer {
  background: var(--text);
  color: #aaa;
  padding: 3rem 1.5rem 1.5rem;
}
.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #444;
}
.footer-brand .footer-logo {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--teal-light);
  margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; }

.footer-col h5 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col a { font-size: 0.88rem; color: #aaa; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal-light); }

.footer-bottom {
  max-width: 1060px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
}
.footer-bottom a { color: var(--teal-light); }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img img { height: 360px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  section { padding: 3.5rem 0; }
  .hero-content { padding: 3rem 1.5rem; }

  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .contact-methods { grid-template-columns: 1fr 1fr; }
  .booking-form { padding: 1.5rem; }
}
