@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Work+Sans:wght@400;500;600&display=swap');

:root {
  --cream: #F7F1E4;
  --cream-2: #EEE4D0;
  --paper: #FCF9F2;
  --espresso: #2C2015;
  --espresso-soft: #4A3826;
  --walnut: #7C4E2C;
  --honey: #C1863F;
  --honey-deep: #9C6A2C;
  --river: #16232B;
  --river-2: #223541;
  --border: rgba(44, 32, 21, 0.14);
  --border-soft: rgba(44, 32, 21, 0.08);
  --shadow: 0 18px 40px rgba(44, 32, 21, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--espresso);
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--espresso);
  margin: 0;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: 'Work Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--walnut);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--honey);
  display: inline-block;
}

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 241, 228, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  max-width: 1160px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img { height: 42px; width: auto; }

.brand-name {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--espresso-soft);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a.active { color: var(--espresso); }

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--honey);
  border-radius: 2px;
}

.nav-cta {
  background: var(--espresso);
  color: var(--paper) !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--river); }

.nav-toggle { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 6px;
  font-size: 14.5px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--espresso);
  color: var(--paper);
}
.btn-primary:hover { background: var(--river); }

.btn-secondary {
  background: transparent;
  border-color: var(--espresso);
  color: var(--espresso);
}
.btn-secondary:hover { background: var(--cream-2); }

.btn-light {
  background: var(--paper);
  color: var(--espresso);
}
.btn-light:hover { background: var(--cream-2); }

.btn-outline-light {
  background: transparent;
  border-color: rgba(247,241,228,0.4);
  color: var(--paper);
}
.btn-outline-light:hover { background: rgba(247,241,228,0.08); }

/* ---------- River divider ---------- */
.river-divider {
  width: 100%;
  height: 46px;
  display: block;
}

/* ---------- Hero ---------- */
.hero {
  padding: 64px 32px 0;
}

.hero-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: 47px;
  line-height: 1.12;
  margin: 18px 0 20px;
}

.hero p.lead {
  font-size: 17.5px;
  color: var(--espresso-soft);
  max-width: 440px;
  margin: 0 0 30px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-image {
  position: relative;
}

.hero-image .frame {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image img { width: 100%; height: 580px; object-fit: cover; }

.hero-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--river);
  color: var(--paper);
  padding: 16px 20px;
  border-radius: 8px;
  font-family: 'Fraunces', serif;
  font-size: 14px;
  line-height: 1.4;
  max-width: 190px;
  box-shadow: var(--shadow);
}

.hero-badge b { display: block; font-size: 22px; font-weight: 500; }

/* ---------- Sections ---------- */
section { padding: 100px 0; }
.section-tight { padding: 70px 0; }

.section-head { max-width: 560px; margin-bottom: 52px; }
.section-head h2 { font-size: 34px; margin-top: 14px; }
.section-head p { color: var(--espresso-soft); font-size: 16px; margin-top: 14px; }

.section-head.center { max-width: 620px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

/* ---------- Craft grid (what he makes) ---------- */
.craft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.craft-card {
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 30px 24px;
}

.craft-card .icon {
  width: 40px; height: 40px;
  margin-bottom: 20px;
  color: var(--honey-deep);
}
.craft-card .icon svg { width: 100%; height: 100%; }

.craft-card h3 { font-size: 18px; margin-bottom: 8px; }
.craft-card p { font-size: 14.5px; color: var(--espresso-soft); margin: 0; }

/* ---------- Gallery preview / grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: var(--cream-2);
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-item.tall img { height: 520px; }

.gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  background: linear-gradient(to top, rgba(22,35,43,0.82), transparent);
  color: var(--paper);
  font-size: 14px;
}

/* ---------- Dark band (craft statement) ---------- */
.river-band {
  background: var(--river);
  color: var(--paper);
  padding: 90px 0;
}

.river-band .eyebrow { color: var(--honey); }
.river-band .eyebrow::before { background: var(--honey); }

.river-band blockquote {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  line-height: 1.42;
  font-weight: 400;
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--paper);
}

/* ---------- About teaser / two column ---------- */
.two-col {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.two-col img {
  border-radius: 10px;
  width: 100%;
  height: 460px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.two-col.reverse { grid-template-columns: 1.15fr 0.85fr; }
.two-col.reverse .text-block { order: -1; }

.text-block p { color: var(--espresso-soft); font-size: 16px; margin: 16px 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--cream-2);
  border-radius: 14px;
  padding: 56px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-band h2 { font-size: 28px; max-width: 420px; }

/* ---------- Footer ---------- */
footer {
  background: var(--espresso);
  color: rgba(247,241,228,0.75);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(247,241,228,0.14);
}

.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 36px; }
.footer-brand span { font-family: 'Fraunces', serif; font-size: 18px; color: var(--paper); }

footer h4 {
  color: var(--paper);
  font-family: 'Work Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

footer ul { list-style: none; margin: 0; padding: 0; }
footer li { margin-bottom: 10px; font-size: 14.5px; }
footer a:hover { color: var(--paper); }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(247,241,228,0.5);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 64px 0 50px;
  border-bottom: 1px solid var(--border-soft);
}
.page-hero h1 { font-size: 42px; margin-top: 16px; }
.page-hero p { color: var(--espresso-soft); font-size: 16.5px; max-width: 560px; margin-top: 16px; }

/* ---------- Gallery page ---------- */
.full-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.full-gallery .gallery-item:nth-child(3n+2) { margin-top: 46px; }

.gallery-note {
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 30px 34px;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.gallery-note p { margin: 0; color: var(--espresso-soft); max-width: 520px; }

/* ---------- About page ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.value-card {
  border-top: 2px solid var(--honey);
  border-radius: 0;
  padding: 26px 0 0;
}
.value-card h3 { font-size: 17px; margin-bottom: 8px; }
.value-card p { font-size: 14.5px; color: var(--espresso-soft); margin: 0; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--espresso-soft);
}

.field input, .field select, .field textarea {
  width: 100%;
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--cream);
  color: var(--espresso);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--honey-deep);
}

.field textarea { resize: vertical; min-height: 120px; }

.form-note { font-size: 13px; color: var(--espresso-soft); margin-top: 14px; }

.contact-side .info-card {
  background: var(--river);
  color: var(--paper);
  border-radius: 12px;
  padding: 34px;
  margin-bottom: 20px;
}
.contact-side .info-card h3 { color: var(--paper); font-size: 18px; margin-bottom: 18px; }
.contact-side .info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  margin-bottom: 14px;
  color: rgba(247,241,228,0.9);
}
.contact-side .info-row svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--honey); }

.contact-side .social-card {
  background: var(--cream-2);
  border-radius: 12px;
  padding: 28px 34px;
}
.contact-side .social-card h4 { font-size: 15px; margin-bottom: 6px; }
.contact-side .social-card p { font-size: 14px; color: var(--espresso-soft); margin: 0 0 16px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero-grid, .two-col, .contact-grid { grid-template-columns: 1fr; }
  .two-col.reverse .text-block { order: 0; }
  .hero h1 { font-size: 34px; }
  .craft-grid { grid-template-columns: repeat(2, 1fr); }
  .full-gallery, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .full-gallery .gallery-item:nth-child(3n+2) { margin-top: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .hero-badge { display: none; }
}
