:root {
  --ink: #10100f;
  --ink-soft: #181816;
  --cream: #f4f0e8;
  --cream-2: #ebe4d8;
  --paper: #faf8f3;
  --gold: #c89543;
  --gold-soft: #d9af68;
  --text: #20201d;
  --muted: #706d66;
  --white: #fff;
  --display: "Coldiac", "Bodoni 72", Didot, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --wrap: min(1220px, calc(100vw - 48px));
}

/*
  Coldiac is intentionally the primary display face.
  For a live commercial site, add your licensed Coldiac webfont files and uncomment:

  @font-face {
    font-family: "Coldiac";
    src: url("assets/fonts/coldiac.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
  }
*/

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.wrap { width: var(--wrap); margin-inline: auto; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 18px max(24px, calc((100vw - 1220px) / 2));
  color: white;
  background: linear-gradient(to bottom, rgba(10,10,9,.88), rgba(10,10,9,.25));
  transition: background .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(15,15,14,.94);
  backdrop-filter: blur(12px);
}
.brand { width: max-content; line-height: 1; letter-spacing: .11em; }
.brand-main {
  display: block;
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: .17em;
}
.brand-sub {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 7px;
  font-size: 9px;
  letter-spacing: .29em;
  color: var(--gold-soft);
}
.brand-sub i { width: 19px; height: 1px; background: currentColor; }
.nav { display: flex; justify-content: center; gap: 30px; text-transform: uppercase; font-size: 11px; letter-spacing: .13em; font-weight: 650; }
.nav a { opacity: .88; transition: color .2s, opacity .2s; }
.nav a:hover { color: var(--gold-soft); opacity: 1; }
.menu-toggle { display: none; background: transparent; color: white; border: 1px solid rgba(255,255,255,.4); padding: 9px 12px; text-transform: uppercase; letter-spacing: .12em; font-size: 10px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-gold { background: var(--gold); color: #16130d; border-color: var(--gold); }
.button-gold:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.button-outline { border-color: var(--gold); color: var(--gold-soft); background: rgba(0,0,0,.1); }
.button-outline:hover { background: var(--gold); color: #15120d; }
.button-ghost { border-color: rgba(255,255,255,.55); color: white; background: rgba(0,0,0,.18); }
.button-ghost:hover { border-color: white; background: rgba(255,255,255,.08); }

.hero {
  position: relative;
  min-height: 800px;
  height: 93vh;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
  background: #181713;
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; }
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9,9,8,.83) 0%, rgba(9,9,8,.49) 32%, rgba(9,9,8,.08) 63%, rgba(9,9,8,.12) 100%),
    linear-gradient(0deg, rgba(8,8,7,.26), transparent 45%);
}
.hero-content { position: relative; z-index: 2; padding-top: 72px; }
.eyebrow { margin: 0 0 18px; color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-size: 11px; font-weight: 750; }
.hero h1, h2 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -.015em;
}
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(54px, 7.1vw, 102px); }
.hero-copy { max-width: 510px; margin: 28px 0 0; font-size: 17px; color: rgba(255,255,255,.89); }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }

.section { padding: 110px 0; }
.section-light { background: var(--cream); }
.section-dark { background: var(--ink); color: white; }
.section h2 { margin: 0 0 26px; font-size: clamp(42px, 5vw, 70px); }
.section-intro p:not(.eyebrow), .about-copy p { color: #595750; }
.work-grid { display: grid; grid-template-columns: .7fr 1.8fr; gap: 70px; align-items: start; }
.section-intro { position: sticky; top: 125px; padding-top: 12px; }
.section-intro h2 { max-width: 340px; }
.section-intro p { max-width: 360px; }
.text-link { display: inline-flex; gap: 10px; margin-top: 18px; color: #9c6f2d; text-transform: uppercase; letter-spacing: .14em; font-size: 11px; font-weight: 750; }
.project-mosaic { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.project { position: relative; grid-column: span 2; min-height: 320px; overflow: hidden; background: #ddd4c5; margin: 0; }
.project-wide { grid-column: span 3; min-height: 390px; }
.project img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.22,.61,.36,1); }
.project:hover img { transform: scale(1.025); }
.project figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 38px 20px 18px;
  color: white;
  background: linear-gradient(transparent, rgba(10,10,9,.78));
}
.project figcaption span { display: block; font-family: var(--display); font-size: 24px; }
.project figcaption small { display: block; margin-top: 2px; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; opacity: .8; }

.centered-heading { text-align: center; max-width: 900px; margin: 0 auto 56px; }
.centered-heading h2 { font-size: clamp(38px, 4.6vw, 64px); }
.service-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid rgba(201,149,67,.35); border-bottom: 1px solid rgba(201,149,67,.35); }
.service-card { position: relative; padding: 36px 28px 38px; border-right: 1px solid rgba(201,149,67,.35); }
.service-card:last-child { border-right: 0; }
.service-no { color: var(--gold); font-family: var(--display); font-size: 14px; }
.service-card h3 { min-height: 80px; margin: 19px 0 12px; font-family: var(--display); font-weight: 400; font-size: 25px; line-height: 1.08; }
.service-card p { margin: 0; color: rgba(255,255,255,.67); font-size: 13px; line-height: 1.65; }

.about-grid { display: grid; grid-template-columns: .85fr 1.55fr; gap: 70px; align-items: center; }
.about-copy h2 { max-width: 560px; }
.about-copy p { max-width: 540px; }
.about-copy .emphasis { color: #25231f; font-family: var(--display); font-size: 25px; line-height: 1.25; }
.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; height: 520px; }
.detail-grid img { width: 100%; height: 100%; object-fit: cover; }

.process-section { background: var(--cream-2); }
.process-layout { display: grid; grid-template-columns: .8fr 1.5fr; gap: 90px; }
.process-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid #bdb4a5; }
.process-list li { display: grid; grid-template-columns: 64px 1fr; gap: 24px; padding: 26px 0; border-bottom: 1px solid #bdb4a5; }
.process-list > li > span { color: var(--gold); font-family: var(--display); font-size: 16px; }
.process-list h3 { margin: 0 0 5px; font-family: var(--display); font-size: 30px; font-weight: 400; }
.process-list p { margin: 0; color: #615d55; }

.process-photo-strip { padding-top: 0; background: var(--cream-2); }
.strip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; height: 430px; }
.strip-grid img { width: 100%; height: 100%; object-fit: cover; }

.contact-section { background: var(--ink-soft); color: white; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.4fr; gap: 90px; align-items: start; }
.contact-copy h2 { max-width: 520px; }
.contact-copy p { max-width: 520px; color: rgba(255,255,255,.68); }
.service-area { margin-top: 34px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.15); color: var(--gold-soft) !important; }
.estimate-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.estimate-form label { position: relative; display: block; }
.estimate-form label span { position: absolute; z-index: 1; top: 12px; left: 14px; font-size: 9px; text-transform: uppercase; letter-spacing: .13em; color: rgba(255,255,255,.53); }
.estimate-form input, .estimate-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 0;
  background: rgba(255,255,255,.02);
  color: white;
  outline: none;
  padding: 31px 14px 11px;
}
.estimate-form input { min-height: 64px; }
.estimate-form textarea { resize: vertical; min-height: 170px; }
.estimate-form input:focus, .estimate-form textarea:focus { border-color: var(--gold); }
.form-message { grid-column: 2; grid-row: 1 / span 3; }
.form-message textarea { height: 100%; }
.form-submit { grid-column: 2; justify-self: end; min-width: 220px; }
.form-status { grid-column: 1 / -1; margin: 0; color: var(--gold-soft); font-size: 13px; }

.footer { background: #090908; color: rgba(255,255,255,.68); padding: 28px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 30px; font-size: 11px; letter-spacing: .04em; }
.footer-brand { color: white; }
.footer .brand-main { font-size: 22px; }
.footer .brand-sub { font-size: 8px; }

@media (max-width: 1020px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; padding: 28px; background: rgba(15,15,14,.98); flex-direction: column; align-items: center; gap: 18px; }
  .nav.open { display: flex; }
  .menu-toggle { display: block; justify-self: end; }
  .header-cta { display: none; }
  .work-grid, .about-grid, .process-layout, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .section-intro { position: static; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card { border-bottom: 1px solid rgba(201,149,67,.35); }
  .detail-grid { height: 430px; }
  .form-message { grid-column: 1 / -1; grid-row: auto; }
  .form-submit { grid-column: 1 / -1; justify-self: stretch; }
}

@media (max-width: 720px) {
  :root { --wrap: min(100% - 32px, 1220px); }
  .site-header { padding: 14px 16px; }
  .brand-main { font-size: 21px; }
  .brand-sub { font-size: 7px; margin-top: 5px; }
  .hero { min-height: 720px; height: 90svh; align-items: flex-end; }
  .hero-image { object-position: center top; }
  .hero-shade { background: linear-gradient(0deg, rgba(8,8,7,.88) 0%, rgba(8,8,7,.57) 44%, rgba(8,8,7,.14) 77%); }
  .hero-content { padding: 0 0 60px; }
  .hero h1 { font-size: clamp(48px, 14vw, 70px); }
  .hero-copy { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 360px; }
  .section { padding: 76px 0; }
  .section h2 { font-size: clamp(38px, 11vw, 54px); }
  .project-mosaic { grid-template-columns: 1fr; gap: 8px; }
  .project, .project-wide { grid-column: 1; min-height: 330px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { border-right: 0; padding: 28px 0; }
  .service-card h3 { min-height: 0; }
  .detail-grid { grid-template-columns: 1fr; height: auto; }
  .detail-grid img { min-height: 280px; }
  .process-list li { grid-template-columns: 46px 1fr; gap: 14px; }
  .strip-grid { height: auto; grid-template-columns: 1fr; }
  .strip-grid img { height: 340px; }
  .estimate-form { grid-template-columns: 1fr; }
  .form-message, .form-submit { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
}
