@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --cream: #f3ebdd;
  --paper: #faf6ee;
  --charcoal: #211f1c;
  --espresso: #302720;
  --rust: #a24e32;
  --brass: #b18a56;
  --line: rgba(48, 39, 32, .2);
  --white: #fffdf8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--charcoal);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--rust);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: .95;
}
h1 { font-size: clamp(4.4rem, 9vw, 8.6rem); letter-spacing: -.055em; }
h2 { font-size: clamp(3.2rem, 6vw, 5.6rem); letter-spacing: -.04em; }
h3 { font-size: 2rem; }
.lead { max-width: 710px; font-size: clamp(1.1rem, 2vw, 1.35rem); }
.muted { color: #675c52; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(250, 246, 238, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 600;
  letter-spacing: -.035em;
}
.nav-links { display: flex; align-items: center; gap: 26px; font-size: .92rem; }
.nav-links a { padding: 31px 0 27px; border-bottom: 3px solid transparent; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--rust); border-color: var(--rust); }
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--line);
  color: var(--charcoal);
  font-size: 1.35rem;
}

.hero {
  min-height: calc(100vh - 87px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  align-self: center;
  padding: 80px max(48px, calc((100vw - 1180px) / 2));
  padding-right: 60px;
}
.hero-rule { width: min(430px, 100%); margin: 28px 0; border-top: 1px solid var(--rust); }
.hero-role { color: var(--rust); font-size: clamp(1.1rem, 2vw, 1.45rem); }
.hero-tagline {
  max-width: 600px;
  margin: 28px 0 38px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.05;
}
.hero-photo {
  min-height: 700px;
  background: var(--charcoal);
  overflow: hidden;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.actions { display: flex; flex-wrap: wrap; gap: 15px; }
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid var(--charcoal);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: .2s ease;
}
.button.primary { color: white; background: var(--rust); border-color: var(--rust); }
.button:hover { color: white; background: var(--charcoal); transform: translateY(-2px); }
.button.primary:hover { background: #803b28; border-color: #803b28; }

.section { padding: 110px 0; }
.section.alt { background: var(--cream); }
.section.dark { color: var(--white); background: var(--charcoal); }
.section-head {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 50px;
}
.section-head p { margin: 0; }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.project-card {
  display: flex;
  min-height: 550px;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  transition: .25s ease;
}
.project-card:hover { transform: translateY(-6px); box-shadow: 0 18px 38px rgba(48,39,32,.12); }
.project-card img { width: 100%; height: 300px; object-fit: cover; }
.project-card img[src$="john-jed-live.jpg"],
.project-card img[src$="john-jed-portrait.jpg"],
.gallery img[src$="john-jed-live.jpg"] {
  object-position: center top;
}
.project-card .contain { padding: 25px; background: var(--charcoal); object-fit: contain; }
.project-card-body { display: flex; flex: 1; flex-direction: column; padding: 28px; }
.project-card-body p { color: #675c52; }
.project-card-body .text-link { margin-top: auto; color: var(--rust); font-weight: 700; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split-media { position: relative; }
.split-media img { width: 100%; max-height: 680px; object-fit: cover; }
.split-media::after {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 55%;
  height: 55%;
  border: 1px solid var(--brass);
  content: "";
  z-index: -1;
}
.milestones { display: grid; gap: 0; margin: 35px 0; border-top: 1px solid var(--line); }
.milestone { display: grid; grid-template-columns: 90px 1fr; gap: 25px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.milestone strong { color: var(--rust); }

.quote {
  max-width: 920px;
  margin: auto;
  text-align: center;
}
.quote blockquote {
  margin: 0 0 26px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
}

.social-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.social-link { padding: 10px 16px; border: 1px solid currentColor; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.social-link:hover { color: var(--rust); }
.page-hero { padding: 110px 0 75px; background: var(--cream); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(4rem, 8vw, 7.4rem); }
.page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.gallery img { width: 100%; height: 330px; object-fit: cover; }
.fact-list { display: grid; gap: 14px; margin: 30px 0; padding: 0; list-style: none; }
.fact-list li { padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.contact-card { padding: 42px; background: var(--cream); border: 1px solid var(--line); }
.contact-card a { color: var(--rust); font-weight: 700; }
.form { display: grid; gap: 18px; }
.form label { display: grid; gap: 7px; font-size: .82rem; font-weight: 700; }
.form input, .form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  color: var(--charcoal);
  background: white;
  font: inherit;
}
.form textarea { min-height: 150px; resize: vertical; }
.site-footer { padding: 50px 0; color: #d8cfc3; background: #171512; }
.footer-grid { display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.footer-brand { color: white; font-family: "Cormorant Garamond", serif; font-size: 2.4rem; }
.small { font-size: .78rem; }

@media (max-width: 900px) {
  .menu-button { display: block; }
  .nav-links {
    position: absolute;
    top: 86px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 22px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 0; border: 0; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 70px 24px; }
  .hero-photo { min-height: 540px; }
  .section-head, .split, .page-grid { grid-template-columns: 1fr; gap: 34px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card { min-height: 0; }
  .gallery img { height: 250px; }
}

@media (max-width: 560px) {
  .wrap { width: min(100% - 30px, 1180px); }
  .section { padding: 78px 0; }
  .hero-photo { min-height: 430px; }
  .project-card img { height: 260px; }
  .gallery { grid-template-columns: 1fr; }
  .footer-grid { align-items: start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
