@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Inter:wght@400;500;600&display=swap");

:root {
  --ink: #0c1524;
  --muted: #5c6470;
  --line: #e4dfd4;
  --paper: #fcfaf6;
  --white: #fffcf7;
  --dark: #0b1628;
  --dark-2: #122038;
  --gold: #c9a227;
  --gold-soft: #e3cd7a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(11,22,40,0.88);
  backdrop-filter: blur(12px);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 24px;
}
.logo {
  display: flex; align-items: center;
  text-decoration: none; line-height: 0;
  flex-shrink: 0;
}
.logo img {
  height: 34px;
  width: auto;
}
nav.primary { display: flex; gap: 4px; align-items: center; flex-wrap: wrap; }
nav.primary a {
  color: rgba(251,250,247,0.78); text-decoration: none;
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 12px;
}
nav.primary a:hover, nav.primary a[aria-current="page"] { color: var(--white); }
nav.primary a[aria-current="page"] { box-shadow: inset 0 -1px 0 var(--gold); }
.nav-cta {
  background: var(--gold) !important; color: var(--dark) !important;
  padding: 8px 14px !important; font-weight: 600;
}

/* Hero */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 120px 0 96px;
  min-height: 72vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(16,18,16,0.2) 40%, rgba(16,18,16,0.55) 100%),
    radial-gradient(900px 480px at 78% 18%, rgba(201,162,39,0.22), transparent 58%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.eyebrow {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-soft); margin: 0 0 18px; font-weight: 500;
}
.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 1.05; font-weight: 500;
  letter-spacing: -0.02em; margin: 0 0 22px; max-width: 14ch;
}
.hero .lead { font-size: 1.12rem; color: rgba(251,250,247,0.72); max-width: 36rem; margin: 0 0 32px; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-block; text-decoration: none;
  padding: 12px 18px; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 600;
}
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-ghost { border: 1px solid rgba(251,250,247,0.28); color: var(--white); }

/* Stats */
.stats {
  background: var(--dark-2); color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.stats .grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  min-height: 120px;
}
.stat { padding: 28px 20px 28px 0; border-right: 1px solid rgba(255,255,255,0.08); }
.stat:last-child { border-right: none; }
.stat b {
  display: block; font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem; font-weight: 500; line-height: 1;
}
.stat span { display: block; margin-top: 8px; color: rgba(251,250,247,0.55); font-size: 13px; }

/* Sections */
.section { padding: 80px 0; }
.section.paper { background: var(--paper); }
.section h2, .page-head h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500; letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 16px;
}
.kicker { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin: 0 0 12px; }
.prose { max-width: 40rem; color: var(--muted); }
.prose p { margin: 0 0 1em; }
.prose p:last-child { margin: 0; }

.page-head { padding: 64px 0 24px; }
.page-head p { max-width: 38rem; color: var(--muted); margin: 12px 0 0; }

/* Cards / work grid */
.grid-2 { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--white); border: 1px solid var(--line);
  text-decoration: none; color: inherit; display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(16,18,16,0.08); }
.card-photo {
  aspect-ratio: 4/3;
  background: var(--dark-2);
  display: flex; align-items: flex-end; padding: 16px;
  color: var(--gold-soft); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  background-image:
    linear-gradient(180deg, transparent 30%, rgba(16,18,16,0.85)),
    repeating-linear-gradient(135deg, #1c201c 0 12px, #161916 12px 24px);
}
.card-photo.has-photo {
  position: relative;
  padding: 0;
  background-image: none;
  color: transparent;
  overflow: hidden;
}
.card-photo.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.card-photo.has-photo .label {
  position: absolute;
  left: 16px; bottom: 16px; z-index: 1;
  color: var(--gold-soft);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
}
.card-photo.has-photo::after {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,22,40,0.72));
  pointer-events: none;
}
.card-body { padding: 18px 18px 22px; }
.card-body h3 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.4rem; margin: 0 0 6px; font-weight: 600; }
.card-body .meta { color: var(--muted); font-size: 13px; margin: 0 0 10px; }
.card-body p { margin: 0; color: var(--muted); font-size: 14px; }

.list-block { border-top: 1px solid var(--line); }
.job { padding: 28px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 160px 1fr; gap: 24px; }
.job .year { color: var(--gold); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.job h3 { margin: 0 0 6px; font-size: 1.15rem; font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; }
.job .cost { color: var(--muted); font-size: 14px; margin: 0 0 8px; }
.job p, .job ul { margin: 0; color: var(--muted); }
.job ul { padding-left: 18px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px 40px; }
.num {
  font-family: "Cormorant Garamond", Georgia, serif; color: var(--gold);
  font-size: 1.6rem; display: block; margin-bottom: 8px;
}

footer.site {
  background: var(--dark); color: rgba(251,250,247,0.55);
  padding: 36px 0; font-size: 13px;
}
footer.site .bar { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
footer.site a { color: var(--gold-soft); text-decoration: none; }


.media-frame {
  margin: 28px 0 8px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--dark-2);
}
.media-frame img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.media-frame .cap {
  padding: 10px 14px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.hold {
  border: 1px dashed var(--line); padding: 20px 22px; color: var(--muted); background: var(--paper);
  font-size: 14px;
}

@media (max-width: 900px) {
  .stats .grid, .grid-cards, .grid-2, .split, .job { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .hero { padding: 56px 0 48px; }
  .section { padding: 56px 0; }
}
@media (max-width: 640px) {
  .wrap { width: calc(100% - 32px); }
  nav.primary a { padding: 6px 8px; font-size: 11px; }
}


/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-email {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0;
  line-height: 1.2;
}
.contact-email a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.contact-email a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.social-link:hover { color: var(--gold); }
.social-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 32rem;
}
.contact-form .hp {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  opacity: 0;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 10px 0 12px;
  border-radius: 0;
  line-height: 1.4;
}
.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.contact-form .btn {
  border: none;
  cursor: pointer;
  align-self: flex-start;
  font-family: inherit;
  margin-top: 8px;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}
