:root {
  --cream:      #faf7f4;
  --cream-mid:  #f3ede7;
  --rose:       #d4a5a5;
  --rose-dark:  #b07070;
  --text:       #2c1f1f;
  --text-muted: #8b6b6b;
  --border:     rgba(180, 135, 135, 0.2);
  --nav-w:      240px;
  --serif:      'Cormorant Garant', Georgia, serif;
  --sans:       'DM Sans', -apple-system, sans-serif;
}

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

html, body {
  height: 100%;
  overflow: hidden;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
}

/* ── LAYOUT ── */

.site-wrapper {
  display: flex;
  height: 100vh;
}

/* ── SIDE NAV ── */

.side-nav {
  width: var(--nav-w);
  flex-shrink: 0;
  height: 100vh;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 48px 32px;
  background:
    linear-gradient(180deg, rgba(250,247,244,0.97) 0%, rgba(243,237,231,0.98) 100%),
    url('https://images.unsplash.com/photo-1490750967868-88df5691cc51?w=400&q=60') center/cover no-repeat;
}

.side-nav-logo { margin-bottom: 56px; }

.brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  display: block;
  line-height: 1.1;
}

.tagline {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 5px;
}

.side-nav nav { flex: 1; }
.side-nav nav ul { list-style: none; }
.side-nav nav li { margin-bottom: 2px; }

.side-nav nav a {
  display: block;
  padding: 10px 0;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.side-nav nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 0;
  height: 1px;
  background: var(--rose-dark);
  transition: width 0.3s ease;
}

.side-nav nav a:hover,
.side-nav nav a.active {
  color: var(--text);
}

.side-nav nav a.active::after,
.side-nav nav a:hover::after { width: 20px; }

.side-nav-footer { margin-top: auto; }

.side-nav-footer p {
  font-size: 0.74rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  max-width: none;
}

.book-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: var(--text);
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}
.book-btn:hover { background: var(--rose-dark); }

/* ── MAIN ── */

.site-main {
  flex: 1;
  height: 100vh;
  overflow-y: auto;
}

/* ── PAGES ── */

.page { display: none; }

.page.active {
  display: block;
  animation: fadeUp 0.45s ease;
}

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

/* ── HOME ── */

#home { display: none; }

#home.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
  animation: fadeUp 0.45s ease;
}

.home-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px;
}

.home-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 24px;
}

.home-left h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
}

.home-left h1 em {
  font-style: italic;
  color: var(--rose-dark);
}

.home-left p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 340px;
  margin-bottom: 40px;
}

.home-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 12px 26px;
  background: var(--text);
  color: var(--cream);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--rose-dark); }

.btn-ghost {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  cursor: pointer;
  font-family: var(--sans);
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--text); }

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

.home-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-placeholder {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(245,232,232,0.5) 0%, rgba(234,216,208,0.5) 100%),
    url('https://images.unsplash.com/photo-1490750967868-88df5691cc51?w=900&q=80') center/cover no-repeat;
}

/* ── INNER PAGES ── */

.page-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 56px 80px;
}

.page-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.page-sub {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: none;
}

/* ── SERVICES ── */

.service-list { list-style: none; }

.service-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 40px;
  align-items: start;
}
.service-item:first-child { border-top: 1px solid var(--border); }

.service-item h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 6px;
}

.service-item p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 420px;
}

.service-price {
  font-size: 0.78rem;
  color: var(--rose-dark);
  white-space: nowrap;
  text-align: right;
  margin-top: 4px;
}

/* ── ABOUT ── */

.about-body {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  margin-top: 40px;
  align-items: start;
}

.about-img {
  border-radius: 2px;
}

.about-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.about-text p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text-muted);
  max-width: none;
  margin-bottom: 18px;
}

.about-text p.pull-quote {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 28px;
}

/* ── BOOK ── */

.book-options { margin-top: 40px; }

.book-option {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.book-option:first-child { border-top: 1px solid var(--border); }

.book-option-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.book-option-value {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
}

.book-option-link {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-dark);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.book-option-link:hover { border-color: var(--rose-dark); }

/* ── DEMO FOOTER ── */

.demo-footer {
  display: flex;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.55;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.demo-footer a { color: inherit; }

/* ── MOBILE ── */

@media (max-width: 860px) {
  html, body { overflow: auto; }

  .site-wrapper { flex-direction: column; height: auto; }

  .side-nav {
    width: 100%;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    background: var(--cream);
  }

  .side-nav-logo { margin-bottom: 0; }

  .side-nav nav ul { display: flex; gap: 20px; }
  .side-nav nav li { margin-bottom: 0; }
  .side-nav-footer { display: none; }

  .site-main { height: auto; overflow-y: visible; }

  #home.active {
    display: block;
    height: auto;
  }

  .home-right { display: none; }
  .home-left { padding: 48px 24px; min-height: 80vh; }

  .page-inner { padding: 48px 24px 64px; }
  .about-body { grid-template-columns: 1fr; }
  .about-img { display: none; }
  .service-item { grid-template-columns: 1fr; }
  .service-price { text-align: left; }
}
