:root {
  --cream: #f5f1ea;
  --paper: #f9f6f1;
  --ink: #1d1915;
  --muted: #6f675f;
  --line: #cfc6bb;
  --walnut: #241810;
  --warm: #b79c7a;
  --serif: Didot, "Bodoni 72", "Bodoni MT", "Times New Roman", serif;
  --body: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.wrap { width: min(1180px, calc(100% - 96px)); margin: 0 auto; }
.section { padding: 52px 0; }

.site-header {
  height: 78px;
  padding: 0 4.6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(248,245,240,.97);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(37,31,25,.08);
  backdrop-filter: blur(12px);
}
.brand, .footer-brand { text-decoration: none; display: inline-flex; flex-direction: column; }
.brand-name, .footer-brand > span {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: .075em;
  line-height: 1;
}
.brand-tag, .footer-brand small {
  margin-top: 7px;
  font-size: 7.5px;
  letter-spacing: .34em;
  font-weight: 600;
}
.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .14em;
  font-weight: 600;
  transition: opacity .2s ease;
}
.nav a:hover { opacity: .55; }
.nav-inquire {
  border: 1px solid #80766c;
  padding: 13px 22px;
  margin-left: 8px;
}
.menu-toggle { display: none; }

.hero {
  min-height: 580px;
  position: relative;
  color: #f8f4ee;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero.jpg");
  background-size: cover;
  background-position: center 58%;
  transform: scale(1.01);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12,9,7,.78) 0%, rgba(14,10,8,.56) 38%, rgba(10,8,6,.16) 71%, rgba(8,7,6,.37) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 62px;
  padding-bottom: 54px;
}
.eyebrow {
  margin: 0 0 18px;
  font-size: 10px;
  letter-spacing: .32em;
  font-weight: 650;
}
.light { color: rgba(255,255,255,.88); }
.hero h1, .story h2, .philosophy h2 {
  font-family: var(--serif);
  font-weight: 400;
  margin: 0;
  letter-spacing: -.02em;
}
.hero h1 { font-size: clamp(52px, 5.1vw, 74px); line-height: .95; max-width: 700px; }
.short-rule { display: block; width: 52px; height: 1px; background: #877d72; margin: 28px 0 24px; }
.light-rule { background: rgba(255,255,255,.55); }
.hero-categories {
  margin: 0;
  font-size: 10px;
  letter-spacing: .32em;
  font-weight: 550;
}
.hero-categories b { font-weight: 400; margin: 0 8px; color: #b8a68e; }
.hero-copy {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.52;
  max-width: 520px;
  margin: 25px 0 27px;
  color: rgba(255,255,255,.90);
}
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid #9f958a;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 9.5px;
  letter-spacing: .18em;
  font-weight: 650;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.outline-button:hover { background: var(--ink); color: white; border-color: var(--ink); }
.light-button { border-color: rgba(255,255,255,.58); }
.light-button:hover { background: white; color: var(--ink); border-color: white; }
.hero-mantra {
  position: absolute;
  z-index: 2;
  right: 6.5vw;
  bottom: 55px;
  text-align: right;
  display: grid;
  gap: 12px;
  font-size: 8px;
  line-height: 2.1;
  letter-spacing: .28em;
  font-weight: 650;
  color: rgba(255,255,255,.88);
}

.story { background: var(--paper); }
.story-grid {
  display: grid;
  grid-template-columns: 1.25fr .9fr .32fr;
  gap: 48px;
  align-items: stretch;
}
.story-copy { padding: 6px 0 12px; }
.story-copy h2 { font-size: clamp(35px, 3.2vw, 48px); line-height: 1.08; }
.story-copy > p:not(.eyebrow) {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.55;
  max-width: 520px;
  color: #3d3731;
  margin: 24px 0 24px;
}
.story-visual { min-height: 350px; overflow: hidden; }
.story-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.story-notes {
  padding: 32px 0 18px;
  font-size: 8px;
  letter-spacing: .28em;
  line-height: 1.75;
}
.story-notes p { margin: 0 0 13px; }
.story-notes em {
  display: block;
  margin-top: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.45;
  color: #75695d;
}

.works { padding-top: 22px; padding-bottom: 56px; }
.section-heading-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 17px; }
.section-heading-row > p { font-size: 8px; letter-spacing: .3em; }
.section-kicker { display: flex; align-items: center; gap: 20px; font-size: 9px; letter-spacing: .3em; font-weight: 650; }
.section-kicker i { width: 52px; height: 1px; background: #91877c; display: block; }
.works-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.work-card { min-width: 0; }
.work-image, .instrument-mark { height: 190px; overflow: hidden; background: #d7d0c7; }
.work-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.work-card:hover .work-image img { transform: scale(1.025); }
.work-card:nth-child(2) .work-image img { object-position: 50% 52%; }
.work-card:nth-child(4) .work-image img { object-position: 52% 50%; }
.work-card:nth-child(5) .work-image img { object-position: 50% 45%; }
.instrument-mark {
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 40%, #3b2b20 0%, #211711 67%, #15100d 100%);
}
.instrument-mark img { width: 88px; height: 88px; object-fit: contain; }
.work-card h3 { margin: 11px 0 5px; font-size: 9px; letter-spacing: .15em; font-weight: 700; }
.work-card p { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 13px; line-height: 1.45; color: #514940; }

.philosophy {
  position: relative;
  color: #f8f3ec;
  background: #241811;
  overflow: hidden;
}
.philosophy-grain {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21,13,8,.52), rgba(19,12,8,.32)),
    url("assets/walnut-detail.jpg") center 44% / cover no-repeat;
  filter: brightness(.48) saturate(.95);
  transform: scale(1.02);
}
.philosophy-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 80px;
  align-items: center;
  min-height: 250px;
  padding-top: 36px;
  padding-bottom: 36px;
}
.light-kicker { color: rgba(255,255,255,.88); }
.light-kicker i { background: rgba(255,255,255,.55); }
.philosophy h2 { font-size: clamp(38px, 4.1vw, 58px); margin-top: 24px; }
.philosophy-copy p { font-family: Georgia, "Times New Roman", serif; font-size: 15px; line-height: 1.6; margin: 0; color: rgba(255,255,255,.88); }
.philosophy-copy .philosophy-second { margin-top: 18px; color: rgba(255,255,255,.72); font-style: italic; }

.principles { background: var(--cream); border-bottom: 1px solid #e4ddd4; }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); padding-top: 31px; padding-bottom: 31px; }
.principles article { text-align: center; padding: 0 38px; position: relative; }
.principles article + article { border-left: 1px solid #cabfb4; }
.principle-icon { display: block; font-family: Georgia, serif; font-size: 35px; line-height: 1; margin-bottom: 10px; font-weight: 400; }
.principle-icon.tools { font-family: var(--body); font-weight: 200; transform: rotate(45deg); font-size: 33px; }
.principle-icon.infinity { font-size: 40px; }
.principles h3 { margin: 0 0 5px; font-size: 9px; letter-spacing: .22em; }
.principles p { margin: 0; font-family: Georgia, serif; color: #665e56; font-size: 13px; }

.commission { background: #f8f4ee; border-bottom: 1px solid #ddd5cb; }
.commission-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; padding-top: 35px; padding-bottom: 35px; }
.commission .eyebrow { margin-bottom: 9px; }
.commission p:not(.eyebrow) { margin: 0; max-width: 540px; font-family: Georgia, serif; font-size: 15px; line-height: 1.5; color: #443d36; }
.commission-button { min-width: 175px; }

.footer { background: #17130f; color: #f4eee6; }
.footer-grid { min-height: 110px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 40px; }
.footer-brand > span { font-size: 23px; }
.footer-links { display: flex; gap: 50px; }
.footer-links a { text-decoration: none; text-transform: uppercase; font-size: 8px; letter-spacing: .22em; }
.footer-links a:hover { opacity: .65; }
.footer-place { text-align: right; font-size: 8px; letter-spacing: .2em; line-height: 1.75; }

@media (max-width: 980px) {
  .wrap { width: min(100% - 48px, 900px); }
  .site-header { height: 70px; padding: 0 24px; }
  .nav { gap: 18px; }
  .nav a { font-size: 8.5px; }
  .nav-inquire { padding: 11px 14px; }
  .hero { min-height: 560px; }
  .hero-mantra { display: none; }
  .story-grid { grid-template-columns: 1fr 1fr; }
  .story-notes { display: none; }
  .works-grid { grid-template-columns: repeat(3, 1fr); row-gap: 30px; }
  .work-image, .instrument-mark { height: 220px; }
}

@media (max-width: 760px) {
  body.menu-open { overflow: hidden; }
  .wrap { width: min(100% - 36px, 640px); }
  .brand-name { font-size: 19px; }
  .brand-tag { font-size: 6.5px; }
  .menu-toggle {
    display: grid;
    place-content: center;
    gap: 7px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
  }
  .menu-toggle span { width: 24px; height: 1px; background: var(--ink); transition: transform .2s ease; }
  .nav {
    position: fixed;
    z-index: 90;
    inset: 70px 0 auto;
    background: #f8f5f0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 24px 28px 32px;
    border-top: 1px solid #ddd5ca;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
  }
  .menu-open .nav { display: flex; }
  .nav a { font-size: 11px; padding: 9px 0; }
  .nav-inquire { margin: 8px 0 0; text-align: center; padding: 14px; }
  .hero { min-height: 620px; }
  .hero-image { background-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(12,9,7,.86) 0%, rgba(12,9,7,.63) 65%, rgba(12,9,7,.30) 100%); }
  .hero-content { padding-top: 72px; padding-bottom: 50px; }
  .hero h1 { font-size: clamp(48px, 14vw, 68px); }
  .hero-copy { max-width: 390px; font-size: 15px; }
  .hero-categories { line-height: 1.8; letter-spacing: .23em; }
  .story-grid { grid-template-columns: 1fr; gap: 30px; }
  .story-visual { min-height: 420px; }
  .section-heading-row { align-items: flex-start; gap: 18px; }
  .section-heading-row > p { text-align: right; max-width: 170px; line-height: 1.5; }
  .works-grid { grid-template-columns: 1fr 1fr; gap: 26px 14px; }
  .work-image, .instrument-mark { height: 230px; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 28px; min-height: 400px; }
  .principles-grid { grid-template-columns: 1fr; padding-top: 8px; padding-bottom: 8px; }
  .principles article { padding: 24px 0; }
  .principles article + article { border-left: 0; border-top: 1px solid #cabfb4; }
  .commission-grid { grid-template-columns: 1fr; }
  .commission-button { justify-self: start; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; padding-top: 30px; padding-bottom: 30px; }
  .footer-links { gap: 32px; }
  .footer-place { text-align: left; }
}

@media (max-width: 470px) {
  .site-header { padding: 0 18px; }
  .wrap { width: calc(100% - 30px); }
  .hero { min-height: 590px; }
  .hero-content { padding-top: 58px; }
  .hero h1 { font-size: 49px; }
  .works-grid { grid-template-columns: 1fr; }
  .work-image, .instrument-mark { height: 285px; }
  .section-heading-row { display: block; }
  .section-heading-row > p { text-align: left; max-width: none; margin-top: 12px; }
  .philosophy-grid { padding-top: 45px; padding-bottom: 45px; }
}
