:root {
  --cream: #F5F0E6;
  --walnut: #5D3A1A;
  --walnut-dark: #3B2A1E;
  --brass: #B08D57;
  --gold-light: #F2DCAE;
  --body-text: #5A4632;

  --font-wordmark: 'Young Serif', serif;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Source Sans 3', sans-serif;
  --font-label: 'Oswald', sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--body-text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--walnut);
  margin: 0;
}

.eyebrow {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 14px;
}

.eyebrow-dark { color: var(--gold-light); }

/* Buttons */
.btn {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 0;
  display: inline-block;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: .25s;
}

.btn-primary {
  background: var(--brass);
  color: var(--walnut-dark);
  border-color: var(--brass);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: var(--walnut);
  border-color: var(--walnut);
}
.btn-outline:hover { background: var(--walnut); color: var(--cream); }

.btn-block { width: 100%; }

.btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 28px;
  border-bottom: 0.5px solid rgba(93, 58, 26, 0.15);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--cream);
  transition: padding .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  padding: 16px 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.wordmark {
  font-family: var(--font-wordmark);
  font-size: 17px;
  letter-spacing: 0.03em;
  color: var(--walnut);
  text-transform: uppercase;
  display: block;
}
.nav-logo {
  height: 64px;
  width: auto;
  display: block;
  transition: height .3s ease;
}
.site-header.scrolled .nav-logo { height: 44px; }

.site-nav {
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--walnut);
}

.nav-cta {
  border: 1px solid var(--brass);
  color: var(--brass);
  padding: 8px 16px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 6px;
}
.burger span {
  width: 26px;
  height: 2px;
  background: var(--walnut);
  transition: .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* Section shell */
main section {
  padding: clamp(80px, 11vw, 150px) clamp(20px, 6vw, 90px);
  border-top: 0.5px solid rgba(93, 58, 26, 0.15);
  max-width: 1180px;
  margin: 0 auto;
}

.site-header {
  padding-left: max(24px, calc((100% - 1180px) / 2));
  padding-right: max(24px, calc((100% - 1180px) / 2));
}

.site-footer .footer-top,
.site-footer .footer-bottom {
  margin: 0 auto;
  max-width: 1180px;
}

section h2 { font-size: clamp(36px, 5.5vw, 64px); margin-bottom: 36px; line-height: 1.1; }

.sec-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.sec-head .eyebrow { margin-bottom: 18px; }
.sec-head h2 {
  font-size: clamp(38px, 6vw, 76px);
  margin-bottom: 0;
}
.sec-head h2 em {
  font-style: italic;
  color: var(--brass);
  font-weight: 500;
}
.sec-head .sec-note {
  margin: 22px 0 0;
  font-size: 14px;
  color: var(--body-text);
}

.shorts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 700px;
  margin: 0 auto 40px;
}

.short-embed {
  aspect-ratio: 9/16;
  border: 1px solid var(--brass);
  background: var(--walnut-dark);
  overflow: hidden;
}
.short-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.divider {
  width: 46px;
  height: 1px;
  background: rgba(93, 58, 26, 0.35);
  margin: 26px auto 0;
  position: relative;
}
.divider::before {
  content: "\2756";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--brass);
  font-size: 11px;
  background: var(--cream);
  padding: 0 12px;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(90px, 12vw, 140px) clamp(20px, 5vw, 40px) clamp(64px, 8vw, 96px);
  border-top: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 44px;
}
.eyebrow-rule .rule {
  width: 44px;
  height: 1px;
  background: rgba(93, 58, 26, 0.4);
}
.eyebrow-rule .eyebrow { margin-bottom: 0; color: var(--walnut); }

.hero-logo {
  width: min(680px, 86vw);
  margin: 0 auto 44px;
}

.hero-copy {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--body-text);
  line-height: 1.75;
  max-width: 760px;
  margin: 0 auto 40px;
}

/* Shop journal */
.clip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}

.clip {
  background: var(--walnut-dark);
  aspect-ratio: 4/3;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  color: rgba(245, 240, 230, 0.85);
  font-size: 13px;
  border: 1px solid var(--brass);
}

.clip-featured {
  background: var(--walnut);
  aspect-ratio: 16/11;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
.clip-tag {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.clip-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 21px;
  color: var(--cream);
}

/* What we make */
.make-highlight {
  border-left: 2px solid var(--brass);
  padding-left: 28px;
  max-width: 620px;
}
.make-tag {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
  margin-bottom: 12px;
}
.make-highlight h3 {
  font-size: clamp(22px, 2.6vw, 28px);
  margin-bottom: 12px;
}
.make-highlight p {
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}
.make-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 14px;
  color: var(--brass);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-bottom: 8px;
}
.step-num {
  display: block;
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--brass);
  margin-bottom: 14px;
}
.step h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--body-text);
  margin: 0;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-top: 0.5px solid rgba(93, 58, 26, 0.2);
  padding: 20px 0;
}
.faq-list .faq-item:last-child {
  border-bottom: 0.5px solid rgba(93, 58, 26, 0.2);
}
.faq-item summary {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--walnut);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-label);
  font-size: 20px;
  color: var(--brass);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--body-text);
  margin: 14px 0 0;
  max-width: 600px;
}

/* Maker */
.maker {
  display: grid;
  grid-template-columns: minmax(0, 380px) 1fr;
  gap: 64px;
  align-items: center;
}

.maker-photo {
  background: var(--gold-light);
  aspect-ratio: 1;
  border: 0.5px solid rgba(93, 58, 26, 0.15);
  overflow: hidden;
}
.maker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.maker-copy h2 { font-size: clamp(36px, 5vw, 64px); margin-bottom: 24px; line-height: 1.1; }
.maker-copy p { font-size: 16px; line-height: 1.8; margin: 0 0 18px; }
.maker-copy .btn { margin-top: 14px; }

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact-intro h2 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  margin-bottom: 22px;
}
.contact-intro h2 em {
  font-style: italic;
  color: var(--brass);
}
.contact-intro p {
  font-size: 15px;
  line-height: 1.75;
  max-width: 360px;
  margin: 0 0 24px;
}
.contact-detail { font-size: 13px; color: var(--walnut); margin: 0 0 10px; display: flex; align-items: center; gap: 10px; }
.contact-detail .ic { width: 18px; height: 18px; color: var(--brass); flex-shrink: 0; }

.contact-form label {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: #fff;
  border: 0.5px solid rgba(93, 58, 26, 0.2);
  border-radius: 0;
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--body-text);
  margin-bottom: 20px;
}

.contact-form textarea { resize: vertical; min-height: 120px; }
.hp-field { position: absolute; left: -9999px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row input,
.form-row select { margin-bottom: 0; }

/* Footer */
.site-footer {
  background: var(--walnut);
  color: rgba(245, 240, 230, 0.85);
}

.footer-top {
  padding: 64px 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo { width: auto; height: 170px; margin-bottom: 20px; }

.site-social-row { display: flex; gap: 12px; }
.site-social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-social-row svg { width: 17px; height: 17px; }

.footer-links {
  display: flex;
  gap: 64px;
  font-size: 14px;
}
.footer-heading {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.footer-links a { display: block; line-height: 2.3; }

.footer-bottom {
  padding: 22px 28px;
  border-top: 0.5px solid rgba(245, 240, 230, 0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgba(245, 240, 230, 0.65);
}

/* Responsive */
@media (max-width: 720px) {
  .burger { display: flex; z-index: 61; position: relative; }
  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 74%;
    max-width: 300px;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transition: right .35s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    z-index: 60;
  }
  .site-nav.open { right: 0; }
  .maker, .contact { grid-template-columns: 1fr; }
  .clip-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
}
