:root {
  --bg: #0a0a0a;
  --bg-soft: #141414;
  --text: #f2ede5;
  --muted: rgba(242, 237, 229, 0.75);
  --line: rgba(255,255,255,0.12);
  --accent: #d7c0a0;
  --dark: #101010;
  --max: 1320px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 34px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.75), rgba(0,0,0,0));
}
.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
}
.brand span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  margin-top: -4px;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  gap: 24px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.main-nav a { opacity: 0.78; }
.main-nav a.active, .main-nav a:hover { opacity: 1; }
.menu-toggle {
  display: none;
  background: transparent;
  color: white;
  border: 0;
  font-size: 1.6rem;
}
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-slides, .hero-slide, .hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1s ease, transform 5s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.78), rgba(0,0,0,0.2) 45%, rgba(0,0,0,0.35));
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 48px));
  margin: 0 auto 72px;
  text-align: center;
}
.eyebrow, .section-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero h1, .page-hero h1, .intro h2, .section-heading h2, .cta-block h2 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 0.95;
  font-weight: 600;
}
.hero h1 {
  font-size: clamp(3.4rem, 8vw, 7rem);
  margin: 18px 0;
}
.lede {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.button {
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: 0.25s ease;
  border: 1px solid transparent;
}
.button-light {
  background: var(--text);
  color: var(--dark);
}
.button-ghost {
  border-color: rgba(255,255,255,0.4);
}
.button-dark {
  background: var(--text);
  color: var(--dark);
  border: none;
  cursor: pointer;
}
main section:not(.hero) {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}
.split-section,
.cta-block,
.contact-grid,
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  padding: 90px 0;
}
.intro h2, .cta-block h2, .page-hero h1 { font-size: clamp(2.6rem, 5vw, 4.8rem); margin: 10px 0; }
.intro p, .cta-block p, .page-hero p, .about-copy p, .contact-grid p {
  color: var(--muted);
  line-height: 1.85;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
  padding-bottom: 30px;
}
.portfolio-card {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border-radius: 24px;
  background: var(--bg-soft);
}
.portfolio-card.tall { min-height: 620px; }
.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-card span {
  position: absolute;
  left: 24px;
  bottom: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
}
.portfolio-card:hover img { transform: scale(1.03); }
.statement-banner {
  padding: 72px 0 50px;
  text-align: center;
}
.statement-banner p {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
}
.featured-gallery { padding: 30px 0 80px; }
.section-heading { margin-bottom: 24px; }
.masonry-grid {
  columns: 3 280px;
  column-gap: 18px;
}
.masonry-grid.wide { padding-bottom: 80px; }
.masonry-item {
  display: block;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 18px;
  break-inside: avoid;
  background: var(--bg-soft);
}
.masonry-item img {
  width: 100%;
  transition: transform 0.4s ease;
}
.masonry-item:hover img { transform: scale(1.02); }
.text-link {
  display: inline-block;
  margin-top: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.site-footer {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.footer-links {
  display: flex;
  gap: 16px;
  align-items: center;
}
.inner-page {
  padding-top: 120px;
}
.page-hero {
  max-width: 900px;
  padding: 60px 0 40px;
}
.page-hero.compact { padding-bottom: 20px; }
.about-image img {
  border-radius: 24px;
}
.contact-form {
  display: grid;
  gap: 18px;
}
.contact-form label {
  display: grid;
  gap: 10px;
  color: var(--muted);
}
.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--text);
  padding: 16px 18px;
  font: inherit;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  border-radius: 16px;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  color: white;
  border: 0;
  font-size: 2.6rem;
  cursor: pointer;
}
@media (max-width: 920px) {
  .menu-toggle { display: block; z-index: 101; }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 82vw);
    height: 100vh;
    background: #0b0b0b;
    flex-direction: column;
    padding: 100px 28px 28px;
    transition: right 0.3s ease;
  }
  .main-nav.open { right: 0; }
  .split-section,
  .cta-block,
  .contact-grid,
  .about-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-card,
  .portfolio-card.tall { min-height: 420px; }
  .site-footer {
    flex-direction: column;
  }
}
