/* Tokens */
:root {
  --black:    #111;
  --charcoal: #2a2a2a;
  --grey:     #666;
  --light:    #b5b5b5;
  --border:   #ddd;
  --cream:    #faf8f5;
  --warm:     #f3ede6;
  --white:    #fff;
  --rust:     #a0522d;
  --rust-light: #c47a4e;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w: 1120px;
  --radius: 4px;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 18px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

/* Typography */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.2; color: var(--black); }
h3 { font-size: 1.2rem; color: var(--black); margin-bottom: 8px; }

.label {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 12px;
}

.subtitle { color: var(--grey); font-size: 1.05rem; margin-bottom: 48px; }
.mb-sm { margin-bottom: 12px; }
.mb-lg { margin-bottom: 56px; }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.reveal.revealed { opacity: 1; transform: none; }

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: none;
}

.nav.menu-open {
  position: fixed;
  inset: 0;
  height: auto;
  background: var(--black);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--black);
  transition: color 0.2s;
}

.nav.menu-open .nav-brand { color: var(--white); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin: 0 auto;
  padding: 4px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 100px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.nav-links a {
  display: block;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover { background: rgba(255,255,255,0.8); color: var(--rust); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
  border-radius: 50%;
  transition: background 0.3s;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }
.nav-toggle.active span { background: var(--white); }

/* Mobile Nav */
@media (max-width: 500px) {
  .nav {
    height: auto;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    pointer-events: none;
  }

  .nav-inner {
    height: auto;
    padding: 16px 20px;
    justify-content: flex-end;
  }

  .nav.scrolled {
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }

  .nav-toggle {
    display: flex;
    pointer-events: auto;
  }

  .nav-toggle {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  }

  .nav.menu-open .nav-toggle {
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }

  .nav.menu-open {
    position: fixed;
    inset: 0;
    height: auto;
    background: var(--black);
    pointer-events: auto;
  }

  .nav.menu-open .nav-inner {
    height: auto;
    padding: 16px 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    top: 0; left: 0; right: 0; bottom: 0;
    height: auto;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
    padding: 0;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    padding: 8px 24px;
    border-radius: 0;
  }

  .nav-links a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
  }
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  min-height: 100dvh;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 64px 80px;
  background: var(--cream);
}

.hero-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  color: var(--black);
  margin-bottom: 24px;
}

.hero-rule {
  width: 48px;
  height: 2px;
  background: var(--rust);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 400px;
  margin-bottom: 40px;
}

.hero-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
  max-width: 360px;
}

.hero-price { display: flex; flex-direction: column; }

.hero-price-amount {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.2;
}

.hero-price-label {
  font-size: 0.75rem;
  color: var(--grey);
  letter-spacing: 0.04em;
}

.hero-price-label small {
  display: block;
  font-size: 0.65rem;
  color: var(--light);
  margin-top: 2px;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}

.btn:hover { background: var(--charcoal); }

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sections */
.section { padding: 100px 0; scroll-margin-top: 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-dark .label { color: var(--rust-light); }
.section-dark h2 { color: var(--white); }
.section-warm { background: var(--warm); }

/* Split Layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

.split-text p { color: var(--grey); margin-bottom: 16px; font-size: 1rem; }
.split-text h2 { margin-bottom: 20px; }

.split-img { overflow: hidden; border-radius: var(--radius); }
.split-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; max-width: 400px; margin: 0 auto; }
.split-img-map { aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; }

/* Award */
.award-inline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding: 16px 20px;
  background: var(--warm);
  border-left: 3px solid var(--rust);
}

.award-inline img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.award-inline strong { display: block; color: var(--black); margin-bottom: 2px; }
.award-inline div { font-size: 0.85rem; color: var(--grey); line-height: 1.5; }

/* Services */
.services-list {
  display: flex;
  flex-direction: column;
}

.service {
  display: flex;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  align-items: flex-start;
}

.service:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }

.service-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rust-light);
}

.service h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 8px; }
.service p { color: rgba(255,255,255,0.55); font-size: 0.95rem; max-width: 520px; }

/* Full Image */
.full-img { width: 100%; height: 360px; overflow: hidden; }
.full-img img { width: 100%; height: 100%; object-fit: cover; }

/* Pricing */
.price-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
  margin-bottom: 40px;
}

.price-group h3 {
  font-size: 1.1rem;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--rust);
  margin-bottom: 16px;
}

.price-group dl {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-group dl div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.price-group dl div:last-child { border-bottom: none; padding-bottom: 0; }

.price-group dt { font-size: 0.95rem; color: var(--charcoal); }
.price-group dd { font-weight: 600; color: var(--black); font-size: 0.95rem; white-space: nowrap; }

.note {
  padding: 20px 24px;
  background: var(--cream);
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.6;
  border-left: 3px solid var(--rust);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.review {
  padding: 0;
}

.review p {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.review cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--rust);
}

.reviews-links {
  color: var(--grey);
  font-size: 0.9rem;
}

.reviews-links a {
  color: var(--rust);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.reviews-links a:hover { color: var(--rust-light); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.contact-block h4 {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 6px;
}

.contact-block a,
.contact-block span {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.6;
  transition: color 0.2s;
}

.contact-block a:hover { color: var(--rust); }

/* Footer */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--light);
}

.footer nav { display: flex; gap: 24px; }
.footer nav a { color: var(--grey); transition: color 0.2s; }
.footer nav a:hover { color: var(--rust); }

/* Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 40px 32px 60px;
    order: 2;
  }

  .hero-right {
    height: 50vh;
    order: 1;
  }

  .split, .split-reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .split-reverse { direction: ltr; }

  .split-img img { aspect-ratio: 16/10; }
  .split-img-map { aspect-ratio: 16/10; }

  .price-table { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; }

  .section { padding: 72px 0; }
}

@media (max-width: 500px) {
  .container { padding: 0 20px; }

  .hero-left { padding: 32px 20px 48px; }
  .hero-prices { gap: 16px; }
  .hero-price-amount { font-size: 1.3rem; }

  .service { gap: 20px; }
  .service-icon { width: 36px; height: 36px; }
  .service-icon svg { width: 24px; height: 24px; }

  .full-img { height: 220px; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer nav { flex-wrap: wrap; justify-content: center; }
}
