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

:root {
  --navy:       #0f1f3d;
  --sky:        #4a90c4;
  --sky-light:  #d6eaf8;
  --white:      #ffffff;
  --off-white:  #f7f9fc;
  --text:       #1a2640;
  --muted:      #4a5a72;
  --rule:       #dde4ef;
  --accent:     #c8a96e;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  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: 1.2rem 7vw;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.nav-logo-img {
  height: 64px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  list-style: none;
  flex: 1;
  padding: 0 2rem;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--white) !important;
  color: var(--navy) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 100px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--sky-light) !important; color: var(--navy) !important; }

/* ── HERO ── */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 7vw 6rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=900&q=85') center/cover no-repeat;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 40%;
  width: 140px;
  height: 100%;
  background: linear-gradient(to right, var(--white) 30%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-label,
.hero h1,
.hero-rule,
.hero-bottom,
.stats-strip {
  position: relative;
  z-index: 2;
  max-width: 55%;
}

.stats-strip {
  max-width: 55%;
}

.hero-label {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.1s forwards;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -0.03em;
  max-width: 820px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.25s forwards;
}

.hero h1 em { font-style: italic; color: var(--sky); }

.hero-rule {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.38s forwards;
}

.hero-bottom {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 2rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.5s forwards;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 440px;
}

.hero-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--sky); transform: translateY(-2px); }

.hero-link {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.hero-link:hover { color: var(--navy); }

.stats-strip {
  display: flex;
  margin-top: 5rem;
  border-top: 1px solid var(--rule);
  padding-top: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.65s forwards;
}

.stat-item {
  flex: 1;
  padding-right: 3rem;
  border-right: 1px solid var(--rule);
  margin-right: 3rem;
}
.stat-item:last-child { border-right: none; margin-right: 0; padding-right: 0; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-num sup { font-size: 1rem; color: var(--sky); }
.stat-desc { font-size: 0.95rem; color: var(--muted); }

/* ── BEFORE / AFTER ── */
#work { padding: 7rem 0; background: var(--navy); }

#work .eyebrow { color: var(--accent); padding-left: 7vw; }
#work .section-title { color: var(--white); padding-left: 7vw; }
#work .work-sub { color: rgba(255,255,255,0.7); }
#work .ba-caption { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

.work-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 0.8rem;
  margin-bottom: 3rem;
  display: block;
  padding-left: 7vw;
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0 7vw;
}

.ba-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
}

.ba-after,
.ba-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ba-after img,
.ba-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.ba-slider { cursor: ew-resize; touch-action: pan-y; }

.ba-before {
  width: 50%;
  overflow: hidden;
}

.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}

.ba-line {
  flex: 1;
  width: 2px;
  background: var(--white);
}

.ba-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  flex-shrink: 0;
}

.ba-label {
  position: absolute;
  top: 1rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(15,31,61,0.55);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.ba-label-before { left: 1rem; }
.ba-label-after  { right: 1rem; }

.ba-caption {
  font-size: 0.82rem;
  color: var(--muted);
  padding-left: 0.1rem;
}

@media (max-width: 900px) {
  .ba-grid { grid-template-columns: 1fr; }
  .ba-slider { height: 280px; }
}

/* ── SERVICES ── */
#services { padding: 7rem 7vw; background: var(--white); }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.eyebrow {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.9rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-sub-right {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 320px;
  line-height: 1.7;
  text-align: right;
}

.services-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}

.quote-note {
  font-size: 0.8rem;
  color: var(--sky);
  font-style: italic;
  line-height: 1.5;
  text-align: right;
  max-width: 280px;
}

.service-row {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--rule);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s, transform 0.5s;
}
.service-row:last-child { border-bottom: 1px solid var(--rule); }
.service-row.animate { opacity: 0; transform: translateY(16px); }
.service-row.visible { opacity: 1; transform: translateY(0); }
.service-row:hover .service-row-title { color: var(--sky); }
.service-row:hover .service-arrow { transform: translateX(4px); color: var(--sky); }

.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

.service-body { display: flex; flex-direction: column; gap: 0.3rem; }

.service-row-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  transition: color 0.2s;
}

.service-row-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
}

.service-arrow {
  font-size: 1.2rem;
  color: var(--rule);
  transition: transform 0.2s, color 0.2s;
}

/* ── WHY ── */
#why { padding: 7rem 7vw; background: var(--navy); }
#why .eyebrow { color: var(--accent); }
#why .section-title { color: var(--white); }

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  margin-top: 4rem;
  align-items: start;
}

.why-points { display: flex; flex-direction: column; }

.why-point {
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s, transform 0.5s;
}
.why-point:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.why-point.animate { opacity: 0; transform: translateY(16px); }
.why-point.visible { opacity: 1; transform: translateY(0); }

.why-point-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.why-point h4 { font-size: 1rem; font-weight: 500; color: var(--white); }

.why-point p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  padding-left: 3rem;
}

.why-right { position: sticky; top: 8rem; }

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--sky);
  line-height: 0.6;
  display: block;
  margin-bottom: 1.8rem;
}

.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.testimonial-rule { width: 40px; height: 1px; background: var(--accent); margin-bottom: 1.5rem; }

.testimonial-author {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── BOOKING ── */
#booking { padding: 7rem 7vw; background: var(--white); }
#booking .eyebrow { color: var(--sky); }
#booking .section-title { color: var(--navy); }

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  margin-top: 4rem;
  align-items: start;
}

.booking-left { position: sticky; top: 8rem; }

.booking-sub {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 380px;
}

.contact-list { margin-top: 3rem; }

.contact-row {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-top: 1px solid var(--rule);
}
.contact-row:last-child { border-bottom: 1px solid var(--rule); }

.contact-row-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.contact-row-val, .contact-row-val a {
  font-size: 0.95rem;
  color: var(--text);
  text-decoration: none;
  line-height: 1.5;
}
.contact-row-val a:hover { color: var(--sky); }

/* ── FORM ── */
.booking-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 2.5rem;
}

.form-intro {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.field-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--rule);
  padding: 0.6rem 0;
  font-size: 0.97rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}

.field-group input::placeholder,
.field-group textarea::placeholder { color: var(--muted); }

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus { border-bottom-color: var(--sky); }

.field-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6a82' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  padding-right: 1.5rem;
  color: var(--text);
}

.field-group select option { background: var(--white); color: var(--text); }

.field-group textarea { resize: none; min-height: 80px; }

.form-submit {
  margin-top: 0.5rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 0.9rem 2.4rem;
  font-size: 0.92rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.form-submit:hover { background: var(--sky); color: var(--white); transform: translateY(-2px); }

.form-note { font-size: 0.9rem; color: var(--muted); margin-top: 1rem; }

.form-success { display: none; padding: 3rem 0; }
.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-success p { font-size: 0.9rem; color: var(--muted); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 2.2rem 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo span { color: var(--sky); }

footer a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--white); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .hero-actions { align-items: flex-start; }
  .stats-strip { flex-wrap: wrap; gap: 2rem; }
  .stat-item { border-right: none; margin-right: 0; padding-right: 0; min-width: 120px; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .section-sub-right { text-align: left; }
  .why-layout { grid-template-columns: 1fr; gap: 3rem; }
  .why-right { position: static; }
  .booking-layout { grid-template-columns: 1fr; gap: 3.5rem; }
  .booking-left { position: static; }
  footer { flex-direction: column; gap: 0.8rem; text-align: center; }
  .hero::after { display: none; }
  .hero::before { display: none; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 2.6rem; }
  .field-pair { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 2rem 1fr; }
  .service-arrow { display: none; }
}