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

:root {
  --bg: #080808;
  --bg-2: #101010;
  --bg-3: #181818;
  --text: #f0ede8;
  --text-2: #7a7570;
  --accent: #d4a853;
  --accent-2: #a87e30;
  --line: #222;
  --font: 'Cormorant Garamond', Georgia, serif;
}

body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; gap: 32px;
  padding: 0 48px; height: 64px;
  background: rgba(8,8,8,.9); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand { font-size: 17px; font-weight: 300; text-decoration: none; color: var(--text); letter-spacing: .08em; text-transform: uppercase; }
.brand span { color: var(--accent); font-weight: 600; }
.nav-links { display: flex; gap: 32px; margin-left: auto; }
.nav-links a { text-decoration: none; color: var(--text-2); font-size: 13px; letter-spacing: .04em; transition: .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { border: 1px solid var(--accent); color: var(--accent); text-decoration: none; padding: 8px 18px; font-size: 13px; font-weight: 600; letter-spacing: .04em; transition: .2s; }
.nav-cta:hover { background: var(--accent); color: #080808; }

/* ── Hero ── */
.hero {
  position: relative; height: 100vh;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1452587925148-ce544e77e70d?w=1600&h=900&fit=crop') center/cover no-repeat;
  filter: brightness(.4);
}
.hero-content { position: relative; z-index: 1; padding: 0 64px; padding-top: 64px; }
.eyebrow { font-size: 11px; color: var(--accent); font-weight: 400; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 24px; }
.hero-content h1 { font-size: clamp(64px, 8vw, 110px); line-height: .95; font-weight: 800; color: #fff; margin-bottom: 40px; }
.hero-cta { display: inline-block; color: var(--text); text-decoration: none; font-size: 16px; letter-spacing: .08em; border-bottom: 1px solid var(--accent); padding-bottom: 4px; transition: .2s; }
.hero-cta:hover { color: var(--accent); }

/* ── Gallery ── */
.gallery { padding: 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 4px;
}
.g-item { overflow: hidden; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: .5s; filter: brightness(.85); }
.g-item:hover img { transform: scale(1.05); filter: brightness(1); }
.g-item.tall { grid-row: span 2; }
.g-item.wide { grid-column: span 2; }

/* ── Services ── */
.services { background: var(--bg-2); padding: 100px 0; border-top: 1px solid var(--line); }
.services-inner { max-width: 1100px; margin: 0 auto; padding: 0 64px; }
.label { font-size: 11px; font-weight: 400; color: var(--accent); letter-spacing: .15em; text-transform: uppercase; margin-bottom: 16px; }
.sec-head { margin-bottom: 56px; }
.sec-head h2 { font-size: clamp(28px, 3vw, 44px); line-height: 1.15; font-weight: 300; }
.service-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--line); }
.sitem { background: var(--bg-2); padding: 44px 40px; transition: .2s; }
.sitem:hover { background: var(--bg-3); }
.sitem h3 { font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.sitem p { font-size: 14px; color: var(--text-2); line-height: 1.75; }

/* ── Pricing ── */
.pricing { background: var(--bg); padding: 100px 0; border-top: 1px solid var(--line); }
.pricing-inner { max-width: 1100px; margin: 0 auto; padding: 0 64px; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.pcard { background: var(--bg-2); padding: 48px 36px; position: relative; transition: .2s; }
.pcard.featured { background: var(--bg-3); }
.feat-label { position: absolute; top: 20px; right: 20px; font-size: 10px; font-weight: 700; color: var(--accent); letter-spacing: .1em; text-transform: uppercase; border: 1px solid var(--accent); padding: 3px 10px; }
.pcard-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.pcard-top h3 { font-size: 20px; font-weight: 400; }
.price { font-size: 36px; font-weight: 800; color: var(--accent); }
.pcard ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pcard li { font-size: 14px; color: var(--text-2); padding-left: 18px; position: relative; }
.pcard li::before { content: '—'; color: var(--accent); position: absolute; left: 0; font-size: 12px; }
.pcard-cta { display: block; text-align: center; border: 1px solid var(--line); color: var(--text); text-decoration: none; padding: 12px; font-size: 14px; font-weight: 600; letter-spacing: .04em; transition: .2s; }
.pcard-cta:hover, .pcard.featured .pcard-cta { background: var(--accent); border-color: var(--accent); color: #080808; }

/* ── Contact ── */
.contact-strip { background: var(--bg-3); border-top: 1px solid var(--line); padding: 88px 0; }
.contact-inner { max-width: 1100px; margin: 0 auto; padding: 0 64px; display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.contact-inner h2 { font-size: clamp(28px, 3vw, 42px); font-weight: 300; margin: 12px 0 12px; }
.contact-inner p { color: var(--text-2); font-size: 15px; }
.cta-btn { border: 1px solid var(--accent); color: var(--accent); text-decoration: none; padding: 14px 28px; font-size: 15px; font-weight: 600; letter-spacing: .04em; transition: .2s; white-space: nowrap; }
.cta-btn:hover { background: var(--accent); color: #080808; }

/* ── Footer ── */
.footer { padding: 24px 64px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; font-size: 13px; color: var(--text-2); }
.footer a { color: var(--text-2); text-decoration: none; }
.footer a:hover { color: var(--text); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hero-content { padding: 0 24px; padding-top: 64px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .g-item.tall, .g-item.wide { grid-row: auto; grid-column: auto; }
  .services-inner, .pricing-inner, .contact-inner { padding: 0 24px; }
  .service-list { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .contact-inner { flex-direction: column; align-items: flex-start; }
  .footer { padding: 20px 24px; flex-direction: column; gap: 12px; }
}
