/* ---- TOKENS ---- */
:root {
  --bg: #F8F6F2;
  --surface: #FFFFFF;
  --text: #1C1C1C;
  --text-mid: #6B6B6B;
  --accent: #8C7B6B;
  --border: #D4C5B5;

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;

  --max: 1200px;
  --nav-h: 64px;
  --pad-x: clamp(24px, 5vw, 80px);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- LAYOUT ---- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  z-index: 100;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
  transition: color 0.18s ease;
}

.nav-logo:hover { color: var(--accent); }

.hoo { color: #E57200; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 3px;
  transition: background 0.18s ease, color 0.18s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-nav  { padding: 9px 20px; font-size: 14px; background: var(--text); color: #fff; }
.btn-nav:hover  { background: var(--accent); }

.btn-dark { padding: 12px 26px; font-size: 14px; background: var(--text); color: #fff; }
.btn-dark:hover { background: var(--accent); }

.btn-light { padding: 12px 26px; font-size: 14px; background: #fff; color: var(--text); }
.btn-light:hover { background: var(--bg); }

.btn-lg { padding: 15px 36px; font-size: 15px; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
}

.hero-text { flex: 1; padding: 80px 0; }

.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-text h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
}

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

.hero-sub {
  font-size: 17px;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.72;
  max-width: 400px;
  margin-bottom: 44px;
}

.hero-media {
  flex: 0 0 clamp(260px, 34vw, 460px);
  height: clamp(340px, 52vw, 620px);
  border-radius: 3px;
  overflow: hidden;
}

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

/* ---- SECTION TITLE ---- */
.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 52px;
}

/* ---- GALLERY ---- */
.gallery {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  scroll-margin-top: var(--nav-h);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.photo-item {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 3px;
  background: var(--border);
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.photo-item:hover img { transform: scale(1.04); }

/* ---- ABOUT ---- */
.about {
  padding: 120px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  scroll-margin-top: var(--nav-h);
}

.about-inner { max-width: 600px; }

.about h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.about p {
  font-size: 17px;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about p:last-child { margin-bottom: 0; }

/* ---- SERVICES ---- */
.services {
  padding: 120px 0;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: var(--nav-h);
}

.service-card {
  max-width: 440px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 48px;
}

.service-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 32px;
}

.service-price {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}

.service-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid);
}

.service-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 32px;
}

.service-list {
  list-style: none;
  margin-bottom: 40px;
}

.service-list li {
  font-size: 15px;
  color: var(--text-mid);
  font-weight: 300;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-list li::before {
  content: '→';
  color: var(--accent);
  font-size: 13px;
  flex-shrink: 0;
}

.service-list li:last-child { border-bottom: none; }

/* ---- BOOK CTA ---- */
.book-cta {
  background: var(--text);
  padding: 140px 0;
  text-align: center;
  scroll-margin-top: var(--nav-h);
}

.book-inner { max-width: 560px; }

.book-cta h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 20px;
}

.book-cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 48px;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--text);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column-reverse;
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 80px;
    gap: 40px;
  }

  .hero-text { padding: 0; }

  .hero-media {
    flex: none;
    width: 100%;
    height: 60vw;
    min-height: 240px;
  }

  .hero-sub { max-width: 100%; }

  .photo-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery,
  .about,
  .services { padding: 80px 0; }

  .service-card { padding: 32px; }

  .book-cta { padding: 100px 0; }
}

@media (max-width: 480px) {
  .photo-grid { grid-template-columns: 1fr; }
  .service-price { font-size: 56px; }
}
