:root {
  --bg: #f4f0e8;
  --paper: #fbf8f2;
  --ink: #111111;
  --muted: #6e6a63;
  --accent: #b98a4a;
  --dark: #111111;
  --line: rgba(17,17,17,.14);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1;
  margin: 0;
}
h1 { font-size: clamp(3.2rem, 8vw, 7.4rem); }
h2 { font-size: clamp(2.6rem, 5vw, 5.3rem); }
h3 { font-size: 2.2rem; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 4vw, 60px);
  color: white;
  background: linear-gradient(to bottom, rgba(0,0,0,.72), transparent);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: .14em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  font-family: "Cormorant Garamond", serif;
}

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { font-size: .88rem; letter-spacing: .08em; text-transform: uppercase; }
.nav-cta { border: 1px solid white; padding: 10px 16px; }
.menu-toggle { display: none; background: none; border: 0; color: white; font-size: 1.8rem; }

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 6vw, 90px) 80px;
  color: white;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 30%, rgba(185,138,74,.35), transparent 25%),
    linear-gradient(120deg, #101010 0%, #26221d 52%, #070707 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-content { position: relative; z-index: 2; max-width: 1050px; }
.hero-copy { max-width: 680px; font-size: clamp(1rem, 2vw, 1.35rem); color: rgba(255,255,255,.78); }
.eyebrow {
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .76rem;
  font-weight: 600;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid currentColor;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .76rem;
  font-weight: 600;
}
.button-primary { background: var(--accent); color: #111; border-color: var(--accent); }
.button-secondary { color: white; }
.hero-note {
  position: absolute;
  right: 30px;
  bottom: 25px;
  color: rgba(255,255,255,.45);
  font-size: .75rem;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 110px clamp(20px, 4vw, 44px);
}
.split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: start;
}
.body-copy { font-size: 1.05rem; color: #383530; }
.section-dark {
  max-width: none;
  background: var(--dark);
  color: white;
}
.section-dark > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section-heading { max-width: 820px; margin-bottom: 55px; }
.muted { color: var(--muted); }

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.2);
}
.card {
  min-height: 330px;
  padding: 30px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.card:last-child { border-right: 0; }
.card-number { color: var(--accent); font-size: .8rem; letter-spacing: .18em; }
.card h3 { margin-top: 80px; margin-bottom: 20px; }
.card p { color: rgba(255,255,255,.68); }

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  grid-auto-rows: 270px;
  gap: 14px;
}
.portfolio-item {
  position: relative;
  display: flex;
  align-items: end;
  padding: 24px;
  color: white;
  background:
    linear-gradient(to top, rgba(0,0,0,.7), transparent),
    linear-gradient(135deg, #3b3935, #8b7557);
}
.portfolio-item:nth-child(2) { background: linear-gradient(135deg, #5f5149, #1f1d1b); }
.portfolio-item:nth-child(3) { background: linear-gradient(135deg, #1e2426, #6e7d82); }
.portfolio-item:nth-child(4) { background: linear-gradient(135deg, #362f28, #b98a4a); }
.portfolio-item.large { grid-row: span 2; }
.portfolio-item.wide { grid-column: span 1; }
.portfolio-item span { font-family: "Cormorant Garamond", serif; font-size: 2rem; }

.section-accent {
  max-width: none;
  background: #d7c4a5;
}
.section-accent > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.price-card {
  padding: 34px;
  min-height: 250px;
  background: rgba(255,255,255,.42);
  border: 1px solid rgba(17,17,17,.15);
}
.price-card.featured { background: #111; color: white; }
.price { margin: 40px 0 10px; font-size: 1.4rem; font-weight: 600; }

.contact-section {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 70px;
  align-items: center;
}
.contact-panel {
  display: grid;
  gap: 16px;
  padding: 36px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.contact-panel > a:not(.button) { font-size: 1.05rem; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 4vw, 60px);
  background: #0c0c0c;
  color: rgba(255,255,255,.65);
  font-size: .8rem;
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 74px;
    right: 20px;
    left: 20px;
    padding: 24px;
    background: #111;
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .split, .contact-section { grid-template-columns: 1fr; gap: 35px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .card:nth-child(2) { border-right: 0; }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .hero { padding-bottom: 55px; }
  .hero-note { display: none; }
  .cards { grid-template-columns: 1fr; }
  .card { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); min-height: 260px; }
  .card h3 { margin-top: 45px; }
  .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .portfolio-item.large { grid-row: span 1; }
  .site-footer { flex-direction: column; }
}
