:root {
  --bg: #faf6f3;
  --bg-alt: #f3e8e2;
  --surface: #ffffff;
  --ink: #2b2724;
  --ink-muted: #8a7d75;
  --border: #ecdfd6;
  --accent: #b9776a;
  --accent-dark: #9c5f53;
  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-sans: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 2px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
}

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 32px; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; }

.accent { font-style: italic; color: var(--accent); }

.kicker {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 14px;
}

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 246, 243, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav { display: flex; align-items: center; justify-content: space-between; height: 84px; }

.logo {
  font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.04em; color: var(--ink);
  text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 0.85rem; letter-spacing: 0.03em; color: var(--ink-muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }

.btn-nav {
  border: 1px solid var(--ink);
  color: var(--ink) !important;
  padding: 10px 22px;
  transition: background 0.2s, color 0.2s;
}
.btn-nav:hover { background: var(--ink); color: var(--bg) !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span { width: 22px; height: 1.5px; background: var(--ink); transition: transform 0.25s, opacity 0.25s; }

/* Buttons */
.btn {
  display: inline-block; padding: 15px 30px; border-radius: var(--radius);
  font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500;
  cursor: pointer; border: 1px solid transparent;
  transition: transform 0.15s, background 0.2s, border-color 0.2s, color 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-block { display: block; width: 100%; text-align: center; margin-top: 10px; }

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

.hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 160px 64px 80px 64px;
  max-width: 560px;
}

.eyebrow { font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.78rem; color: var(--accent); font-weight: 500; margin-bottom: 24px; }

.hero h1 { font-size: clamp(2.6rem, 4.2vw, 3.6rem); line-height: 1.2; margin-bottom: 26px; font-weight: 400; }

.hero-sub { font-size: 1.05rem; color: var(--ink-muted); margin-bottom: 38px; max-width: 440px; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-media { position: relative; overflow: hidden; min-height: 320px; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* Sections */
section { padding: 120px 0; }
section h2 { font-size: 2.4rem; margin-bottom: 16px; font-weight: 400; }
.section-sub { color: var(--ink-muted); max-width: 560px; margin-bottom: 56px; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Services */
.services { background: var(--bg); border-top: 1px solid var(--border); }

.service-list { display: flex; flex-direction: column; }

.service-row {
  display: grid; grid-template-columns: 50px 46px 1fr auto;
  align-items: center; gap: 24px;
  padding: 28px 0; border-bottom: 1px solid var(--border);
}

.service-num { font-family: var(--font-display); font-size: 1.1rem; color: var(--ink-muted); }

.service-icon { width: 34px; height: 34px; color: var(--accent); }
.service-icon svg { width: 100%; height: 100%; }

.service-body h3 { font-size: 1.35rem; margin-bottom: 4px; font-weight: 400; }
.service-body p { color: var(--ink-muted); font-size: 0.92rem; }

.service-price { font-family: var(--font-display); font-size: 1.1rem; color: var(--accent); white-space: nowrap; }

/* About */
.about { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: center; }

.about-media { overflow: hidden; aspect-ratio: 3/4; }
.about-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.15) contrast(1.02); }

.about-text p { color: var(--ink-muted); margin-bottom: 18px; max-width: 480px; }

.about-list { margin-top: 24px; }
.about-list li {
  font-size: 0.92rem; color: var(--ink); padding: 10px 0 10px 0;
  border-bottom: 1px solid var(--border);
}

/* Gallery */
.gallery { background: var(--bg); }

.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 16px;
}
.gallery-tile { position: relative; grid-row: span 2; overflow: hidden; border-radius: var(--radius); }
.gallery-tile.tall { grid-row: span 3; }

.gallery-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; filter: grayscale(0.1); }
.gallery-tile:hover img { transform: scale(1.04); }
.gallery-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(20, 15, 12, 0.55)); }
.gallery-tile span {
  position: absolute; left: 18px; bottom: 16px; z-index: 1; color: #fff;
  font-family: var(--font-display); font-size: 1.05rem; font-style: italic;
}

/* Pricing */
.pricing { background: var(--bg-alt); border-top: 1px solid var(--border); }

.price-list { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }

.price-group h3 { font-size: 1.3rem; margin-bottom: 20px; color: var(--accent); font-weight: 400; }

.price-line { display: flex; align-items: baseline; gap: 8px; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.price-line .dots { flex: 1; border-bottom: 1px dotted var(--ink-muted); opacity: 0.4; transform: translateY(-4px); }

/* Contact */
.contact { background: var(--bg); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }

.contact-text p { color: var(--ink-muted); margin: 16px 0 32px; max-width: 420px; }

.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-info h4 { font-family: var(--font-sans); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 6px; font-weight: 500; }
.contact-info p { color: var(--ink-muted); font-size: 0.92rem; margin: 0; max-width: none; }

.contact-form { display: flex; flex-direction: column; gap: 4px; }
.contact-form label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-muted); margin-top: 16px; }

.contact-form input, .contact-form select, .contact-form textarea {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 13px 14px; color: var(--ink); font-family: var(--font-sans); font-size: 0.95rem; resize: vertical;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); }

.form-note { margin-top: 14px; color: var(--accent); font-size: 0.85rem; text-align: center; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 32px 0; background: var(--bg-alt); }
.site-footer p { color: var(--ink-muted); font-size: 0.82rem; text-align: center; }

/* Responsive */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-media { min-height: 380px; order: -1; }
  .hero-text { padding: 130px 32px 60px; max-width: none; }
  .about-grid, .contact-grid, .price-list { grid-template-columns: 1fr; }
  .about-media { max-width: 420px; }
  .service-row { grid-template-columns: 40px 36px 1fr; }
  .service-price { grid-column: 2 / 4; margin-top: 6px; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 84px; left: 0; right: 0; background: var(--bg);
    border-bottom: 1px solid var(--border); flex-direction: column; align-items: flex-start;
    padding: 22px 32px 30px; gap: 20px;
    transform: translateY(-120%); opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
