/* ============================================================
   ROOT / TOKENS (Modern Light Theme)
============================================================ */
:root {
  --black: #0a0a0c;
  --off-black: #1a1a1c;
  --charcoal: #2b2b30;
  --mid: #e1e1e6;
  --border: rgba(0, 0, 0, 0.08); /* Darker borders for light bg */
  --teal: #00b48b; /* Deeper, more accessible teal */
  --teal-dim: rgba(0, 180, 139, 0.08);
  --teal-glow: rgba(0, 180, 139, 0.15);
  --white: #ffffff; /* Bright white background */
  --muted: #5e6678; /* Darker muted text */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
  --glass-bg: rgba(255, 255, 255, 0.7); /* Light glass */
  --glass-border: rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.06), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

/* ============================================================
   RESET
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; }
body {
  background: #f8f9fa; /* Off-white for body to make white cards pop */
  color: var(--black); /* Dark text on light background */
  font-family: var(--sans);
  font-weight: 400; /* slightly heavier for light mode */
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ============================================================
   CUSTOM CURSOR
============================================================ */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 12px; height: 12px;
  background: var(--teal);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10002;
  transition: transform 0.15s ease, opacity 0.2s;
  transform: translate(-50%,-50%);
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 38px; height: 38px;
  border: 1px solid rgba(61,214,192,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%,-50%);
  transition: transform 0.35s ease, width 0.2s, height 0.2s, border-color 0.2s;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 56px; height: 56px;
  border-color: var(--teal);
}

/* ============================================================
   NOISE OVERLAY
============================================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9990;
  opacity: 0.6;
  filter: invert(1); /* Invert noise for light background */
}

/* ============================================================
   NAVIGATION
============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 4rem;
  background: linear-gradient(to bottom, rgba(255,255,255,0.95) 0%, transparent 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.3s;
}
nav.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-logo span { color: var(--teal); }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--black); }
.nav-cta {
  padding: 0.55rem 1.5rem;
  border: 1px solid var(--teal);
  color: var(--teal) !important;
  border-radius: 2px;
  font-size: 0.72rem !important;
  letter-spacing: 0.16em !important;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover { background: var(--teal); color: var(--white) !important; }

/* ============================================================
   HERO
============================================================ */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  background: transparent;
}
.hero-media {
  position: relative;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
/* Placeholder gradient slides — replace with actual property images */
/* Hero slide backgrounds are set dynamically via JS from manifest.json */

/* Interior photo mockup effect */
.hero-media-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.photo-frame {
  width: 75%;
  aspect-ratio: 4/3;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.8);
}
.photo-frame img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.photo-frame:hover img { transform: scale(1.0); }
.photo-overlay {
  position: absolute; bottom: 1rem; left: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.8);
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 5rem 4rem 4rem;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--teal);
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.8rem;
}
.hero-h1 em {
  font-style: italic;
  color: var(--teal);
}
.hero-sub {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 380px;
  line-height: 1.75;
  margin-bottom: 2.8rem;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  padding: 1rem 2.4rem;
  background: var(--teal);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  border-radius: 4px; /* Slightly rounder for light mode */
  box-shadow: 0 4px 10px rgba(0, 180, 139, 0.3);
}
.btn-primary:hover { opacity: 0.95; transform: translateY(-2px); box-shadow: 0 6px 15px rgba(0, 180, 139, 0.4); }
.btn-ghost {
  display: inline-block;
  padding: 1rem 2.4rem;
  border: 1px solid var(--black);
  color: var(--black);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border-radius: 4px;
  background: transparent;
}
.btn-ghost:hover { background: var(--black); color: var(--white); }

.hero-stats {
  margin-top: 3.5rem;
  display: flex; gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--teal);
  display: block;
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* slide counter */
.slide-dots {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 0.5rem;
  z-index: 10;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4); /* Make dots visible against hero photos */
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.dot.active { background: var(--teal); transform: scale(1.5); }

/* ============================================================
   MARQUEE
============================================================ */
.marquee-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 1.2rem 0;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite; /* slow down slightly */
}
.marquee-item {
  padding: 0 2.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  display: flex; align-items: center; gap: 2.5rem;
}
.marquee-item::after {
  content: '✦';
  color: var(--teal);
  font-size: 0.5rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTION COMMONS
============================================================ */
section { padding: 7rem 4rem; }
.section-tag {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.section-tag::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--teal);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  max-width: 560px;
}
.section-title em { font-style: italic; color: var(--teal); }

/* ============================================================
   SERVICES
============================================================ */
#services { background: #f0f2f5; }
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: end;
}
.services-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 420px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--white);
  border: 1px solid var(--glass-border);
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), transparent);
  transition: width 0.6s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08); /* Stronger shadow in light mode hover */
  border-color: rgba(0, 180, 139, 0.2);
}
.service-card:hover::before { width: 100%; }
.service-icon {
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
  display: block;
}
.service-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 0.8rem;
}
.service-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}
.service-num {
  position: absolute;
  top: 1.5rem; right: 1.8rem;
  font-family: var(--serif);
  font-size: 3rem;
  color: rgba(0,0,0,0.03); /* Subtle dark number */
  font-weight: 300;
  line-height: 1;
  pointer-events: none;
}

/* ============================================================
   WHY / PROCESS
============================================================ */
#process { background: var(--white); }
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-top: 4rem;
}
.process-steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.step:first-child { border-top: 1px solid var(--border); }
.step-num {
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--teal);
  min-width: 2rem;
  font-weight: 300;
}
.step-body {
  display: flex;
  flex-direction: column;
}
.step-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 0.4rem;
}
.step-text { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }
.process-visual {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--mid);
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}
.process-image-wrapper {
  position: absolute; inset: 0;
}
.process-image-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.process-visual:hover .process-image-wrapper img {
  transform: scale(1.04);
}
.pv-badge {
  position: absolute;
  bottom: 2rem; right: 2rem;
  border: 1px solid var(--border);
  padding: 1rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.pv-badge-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--teal);
  display: block;
  line-height: 1;
}
.pv-badge-label { font-size: 0.65rem; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; }

/* ============================================================
   TESTIMONIALS
============================================================ */
#testimonials { background: #f0f2f5; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.2rem;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.testi-stars {
  color: var(--teal);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.testi-quote {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  color: var(--black);
}
.testi-author {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.testi-author strong { color: var(--black); display: block; font-weight: 500; }
.testi-open-quote {
  position: absolute;
  top: 1.5rem; right: 1.8rem;
  font-family: var(--serif);
  font-size: 4rem;
  color: rgba(0, 180, 139, 0.08); /* light subtle teal quote */
  line-height: 1;
}

/* ============================================================
   BOOKING SECTION
============================================================ */
#book {
  background: var(--white); /* Change to white */
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
#book::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
  pointer-events: none;
}
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}
.book-info {
  display: flex;
  flex-direction: column;
}
.book-contact-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.book-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.book-contact-item a { color: var(--black); transition: color 0.2s; font-weight: 500; }
.book-contact-item a:hover { color: var(--teal); }
.contact-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  border-radius: 50%; /* rounded badges */
  background: var(--mid);
}
.book-turnaround {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: #f0fdf9; /* very gentle teal tint */
  border: 1px solid rgba(0, 180, 139, 0.15);
  border-left: 3px solid var(--teal);
  border-radius: 6px;
}
.book-turnaround p {
  font-size: 0.82rem;
  color: var(--black);
  line-height: 1.6;
}

/* Form */
.book-form {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}
.form-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--black);
  padding: 0.85rem 1rem;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  outline: none;
  border-radius: 4px;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(0,0,0,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-dim); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--charcoal); }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}
.form-check input { width: auto; flex-shrink: 0; margin-top: 2px; accent-color: var(--teal); }
.form-submit {
  width: 100%;
  padding: 1.1rem;
  background: var(--teal);
  color: var(--white); /* White text */
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  border-radius: 4px;
}
.form-submit:hover { opacity: 0.88; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success.show { display: block; }
.form-success-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.form-success h3 { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 0.5rem; }
.form-success p { font-size: 0.85rem; color: var(--muted); }

/* ============================================================
   PORTFOLIO GALLERY
============================================================ */
#portfolio { background: #f8f9fa; }
.gallery-tabs {
  display: flex; gap: 1rem;
  margin-bottom: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}
.tab-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.8rem 1.8rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 40px;
  transition: all 0.3s ease;
}
.tab-btn:hover {
  border-color: rgba(0, 180, 139, 0.5);
  color: var(--black);
}
.tab-btn.active {
  background: var(--teal-dim);
  border-color: var(--teal);
  color: var(--teal);
  font-weight: 500;
}

.gallery-grid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  animation: fadeIn 0.5s ease forwards;
}
.gallery-grid.active { display: grid; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  background: var(--mid);
  border: 1px solid var(--border);
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.9), transparent);
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: var(--white);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateY(10px);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }

/* Video Items */
.video-thumb-item {
  position: relative;
  overflow: hidden;
}
.video-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.video-thumb-item:hover .video-thumb { transform: scale(1.05); }
.play-btn-overlay {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.play-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 2px solid rgba(255,255,255,0.8);
  color: #fff;
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  padding-left: 4px;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
}
.video-thumb-item:hover .play-btn {
  background: var(--teal);
  border-color: var(--teal);
  transform: scale(1.1);
}
/* Video modal sizing */
.video-modal-content {
  max-width: 92vw;
  width: 960px;
}

/* PDF Items */
.pdf-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--white);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
}
.pdf-item:hover {
  background: var(--white);
  border-color: var(--teal);
  box-shadow: 0 8px 15px rgba(0,0,0,0.05); /* shadow vs color change */
  transform: translateY(-4px);
}
.pdf-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.pdf-title {
  color: var(--black);
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* ============================================================
   AREAS SERVED
============================================================ */
#areas { background: var(--white); padding: 4rem; border-top: 1px solid var(--border); }
.areas-inner {
  display: flex; flex-wrap: wrap; gap: 0.8rem;
  margin-top: 2rem;
}
.area-tag {
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--border);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s;
  cursor: default;
}
.area-tag:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-dim); }

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 3rem 4rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-logo span { color: var(--teal); }
.footer-tagline { font-size: 0.82rem; color: var(--muted); line-height: 1.65; max-width: 240px; }
.footer-col-title {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.2rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.82rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--black); }
.footer-contact p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.8;
}
.footer-contact a { color: var(--black); transition: color 0.2s; font-weight: 500; }
.footer-contact a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.72rem; color: var(--muted); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.72rem; color: var(--muted); transition: color 0.2s; }
.footer-legal a:hover { color: var(--black); }

/* ============================================================
   FADE IN ANIMATIONS
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-media { display: none; }
  .hero-content { padding: 7rem 1.5rem 4rem; }
  section { padding: 4rem 1.5rem; }
  .services-intro { grid-template-columns: 1fr; gap: 1.5rem; }
  .process-grid { grid-template-columns: 1fr; gap: 3rem; }
  .process-visual { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; gap: 2rem; }
  .book-form { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}

/* ============================================================
   CAROUSEL MODAL
============================================================ */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
}
.modal-content {
  position: relative;
  max-width: 90%; max-height: 90vh;
  display: flex; align-items: center; justify-content: center;
}
.modal-content img {
  max-width: 100%; max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}
.close-modal {
  position: absolute;
  top: 20px; right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.3s;
}
.close-modal:hover { color: var(--teal); }
.prev-arrow, .next-arrow {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.3s ease;
  border-radius: 4px;
  user-select: none;
  background-color: rgba(0,0,0,0.4);
}
.prev-arrow { left: -60px; }
.next-arrow { right: -60px; }
@media (max-width: 768px) {
  .prev-arrow { left: 10px; }
  .next-arrow { right: 10px; }
}
.prev-arrow:hover, .next-arrow:hover {
  background-color: var(--teal);
}
