@import url('https://fonts.googleapis.com/css2?family=Just+Another+Hand&family=Montserrat:wght@400;500;600&display=swap');

:root {
  --ink:#28232b;
  --muted:#6f6871;
  --paper:#faf8f5;
  --cream:#f1ece7;
  --accent:#6b4b72;
  --line:#ddd4dc;
}

* { box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  margin:0; color:var(--ink); background:var(--paper);
  font-family:Montserrat,Arial,sans-serif; line-height:1.7;
}
.site-header {
  display:flex; justify-content:space-between; align-items:center;
  padding:24px 6%; border-bottom:1px solid var(--line); background:rgba(250,248,245,.96);
  position:sticky; top:0; z-index:10;
}
.logo { color:var(--ink); text-decoration:none; font:700 28px "Cormorant Garamond",serif; letter-spacing:.3px; }
.logo span { color:var(--accent); }
nav { display:flex; gap:24px; }
nav a { color:var(--ink); text-decoration:none; font-size:13px; font-weight:600; }
nav a:hover { color:var(--accent); }

.hero {
  min-height:78vh; display:flex; flex-direction:column; justify-content:center;
  padding:100px 10%; background:linear-gradient(135deg,#f3eee9,#faf8f5 55%,#eee6ef);
}
.eyebrow { color:var(--accent); font-size:11px; font-weight:600; letter-spacing:2.5px; margin:0 0 18px; }
h1,h2,h3 { font-family:"Just Another Hand",cursive; line-height:1.05; }
.tagline { display:block; width:max-content; margin-left:0.65em; color:var(--accent); font-family:"Just Another Hand",cursive; font-size:0.62em; font-weight:400; font-style:normal; line-height:1; white-space:nowrap; }

h1 {
  font-family:"Just Another Hand",cursive;
  font-size:clamp(62px,8vw,108px);
  max-width:1100px;
  margin:0 0 25px;
  font-weight:400;
  line-height:.9;
}
h1 em { font-weight:500; }
h2 { font-size:clamp(42px,5vw,62px); margin:0 0 22px; }
h3 { font-size:31px; margin:0 0 12px; }
.hero-copy { max-width:650px; font-size:18px; color:var(--muted); margin:0 0 30px; }
.button {
  display:inline-block; align-self:flex-start; padding:13px 23px; background:var(--accent);
  color:white; text-decoration:none; font-size:12px; font-weight:600; letter-spacing:.8px;
  border-radius:2px;
}
.section { padding:100px 10%; max-width:1300px; margin:auto; }
.intro { text-align:center; max-width:900px; }
.intro p:last-child { color:var(--muted); font-size:18px; }
.cards { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:45px; }
.cards article { background:white; border:1px solid var(--line); padding:34px; }
.cards p { color:var(--muted); margin:0; }
.gallery-section { background:var(--cream); max-width:none; }
.gallery-intro { max-width:720px; color:var(--muted); font-size:17px; margin:-4px 0 42px; }
.gallery-grid { max-width:1180px; margin:auto; columns:3 280px; column-gap:22px; }
.gallery-item { break-inside:avoid; margin:0 0 22px; background:white; border:1px solid var(--line); overflow:hidden; }
.gallery-item img { display:block; width:100%; height:auto; }
.gallery-item figcaption { padding:13px 16px 15px; font-size:12px; font-weight:600; letter-spacing:.4px; color:var(--ink); }
.market-box { margin-top:30px; padding:28px; border-left:4px solid var(--accent); background:white; max-width:650px; }
.contact { text-align:center; max-width:850px; }
.contact .button { margin-top:12px; }
footer { text-align:center; padding:35px 6%; border-top:1px solid var(--line); color:var(--muted); font-size:11px; }

@media (max-width:800px) {
  .site-header { align-items:flex-start; gap:15px; flex-direction:column; }
  nav { gap:13px; flex-wrap:wrap; }
  .hero { min-height:70vh; padding:75px 7%; }
  .section { padding:75px 7%; }
  .cards { grid-template-columns:1fr; }
}

/* Header brand label: same size as the original eyebrow, moved under the logo. */
.site-header .brand-block {
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
.site-header .header-eyebrow {
  color:var(--accent);
  font-size:11px;
  font-weight:600;
  letter-spacing:2.5px;
  margin:2px 0 0 1.05em;
  line-height:1.1;
}


.market-event + .market-event { margin-top:28px; padding-top:28px; border-top:1px solid var(--line); }
.market-event h3 { margin:0 0 8px; font-family:"Just Another Hand",cursive; font-size:30px; font-weight:400; }
.market-event p { margin:5px 0; }


.market-photos { margin-top:55px; }
.market-photos h3 { margin:0 0 8px; font-family:"Just Another Hand",cursive; font-size:36px; font-weight:400; }
.market-photos-intro { color:var(--muted); margin:0 0 28px; }
.market-gallery { margin-top:0; }


.contact-links {
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

/* Multi-page layout */
.home-preview { text-align:center; max-width:820px; margin:auto; }
.home-preview > p:not(.eyebrow) { color:var(--muted); max-width:680px; margin:0 auto; }
.home-links { display:flex; justify-content:center; flex-wrap:wrap; gap:14px; margin-top:30px; }
.button-secondary { background:transparent; color:var(--ink); border:1px solid var(--line); }
.home-about {
  text-align:center;
  max-width:820px;
  margin:auto;
  border-top:1px solid var(--line);
}
.home-about > p:not(.eyebrow) {
  color:var(--muted);
  max-width:700px;
  margin-left:auto;
  margin-right:auto;
}
.home-about .button {
  margin-top:18px;
}
.site-footer { padding:34px 24px 44px; text-align:center; color:var(--muted); font-size:12px; letter-spacing:.4px; }
@media (max-width:700px) {
  .site-nav { flex-wrap:wrap; gap:12px 16px; }
}

.site-nav a { text-decoration:none; }
.site-nav a:hover { color:var(--accent); }

/* What We Make visual cards */
.make-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:45px;
}
.make-card {
  background:white;
  border:1px solid var(--line);
  overflow:hidden;
}
.make-image {
  aspect-ratio:4/3;
  overflow:hidden;
  background:#f3f1ed;
}
.make-image img,
.make-secondary-image img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.make-copy {
  padding:28px 30px 30px;
}
.make-copy h3 { margin-top:0; }
.make-copy p { color:var(--muted); margin:0; }
.make-secondary-image {
  aspect-ratio:16/10;
  overflow:hidden;
  border-top:1px solid var(--line);
}
@media (max-width:800px) {
  .make-grid { grid-template-columns:1fr; }
}


/* Version 38: actual logo and workshop photos */
.logo { display:flex; align-items:center; }
.logo img { display:block; width:68px; height:68px; object-fit:contain; }
.workshop-section { text-align:center; border-top:1px solid var(--line); }
.workshop-intro { max-width:720px; margin:0 auto 38px; color:var(--muted); font-size:17px; }
.workshop-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; max-width:1180px; margin:0 auto; }
.workshop-grid figure { margin:0; background:white; border:1px solid var(--line); overflow:hidden; }
.workshop-grid img { display:block; width:100%; aspect-ratio:4/3; object-fit:cover; }
.workshop-grid figcaption { padding:14px 16px 16px; font-size:12px; font-weight:600; letter-spacing:.5px; }
@media (max-width:800px) { .workshop-grid { grid-template-columns:1fr; } .logo img { width:60px; height:60px; } }


/* Version 39: restore text brand name; place the real lightning-tree logo in the Home hero. */
.site-header .logo {
  display:inline;
  color:var(--ink);
  text-decoration:none;
  font:700 28px "Cormorant Garamond",serif;
  letter-spacing:.3px;
}
.site-header .logo span { color:var(--accent); }
.hero {
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(420px, 650px);
  align-items:center;
  gap:45px;
}
.hero-content { max-width:760px; }
.hero-logo-wrap {
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-logo {
  display:block;
  width:min(42vw, 650px);
  height:auto;
  max-width:650px;
}
.about-visuals {
  max-width:1180px;
  margin:10px auto 0;
  padding:0 10%;
  display:grid;
  grid-template-columns:1.35fr .8fr .8fr;
  grid-template-rows:auto auto;
  gap:22px;
}
.about-photo {
  margin:0;
  overflow:hidden;
  background:white;
  border:1px solid var(--line);
}
.about-photo img {
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.about-photo-tall { grid-row:1 / span 2; min-height:620px; }
.about-photo:not(.about-photo-tall) { min-height:300px; }
.about-photo-materials { grid-column:2 / span 2; min-height:300px; }

@media (max-width:1000px) {
  .hero { grid-template-columns:1fr; gap:35px; }
  .hero-logo-wrap { order:2; }
  .hero-logo { width:min(70vw, 560px); }
  .about-visuals { grid-template-columns:1fr 1fr; padding:0 7%; }
  .about-photo-tall { grid-row:auto; min-height:360px; }
  .about-photo-materials { grid-column:auto; }
}
@media (max-width:700px) {
  .hero { padding:75px 7%; }
  .hero-logo { width:min(82vw, 430px); }
  .about-visuals { grid-template-columns:1fr; padding:0 7%; }
  .about-photo, .about-photo-tall, .about-photo-materials { min-height:0; }
}

/* Version 40: use the supplied workshop photos intact; visuals fill the open space around the existing About copy. */
.about-layout {
  max-width:1300px;
  margin:0 auto;
  padding:80px 6%;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1.15fr);
  gap:28px;
  align-items:start;
}
.about-copy {
  padding:35px 25px 35px 0;
  max-width:720px;
  margin:0;
}
.about-photo {
  margin:0;
  overflow:hidden;
  background:transparent;
  border:1px solid var(--line);
}
.about-photo img {
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
}
.about-photo-burnie { grid-column:2; grid-row:1; }
.about-photo-bambu { grid-column:1; grid-row:2; }
.about-photo-materials { grid-column:2; grid-row:2; }
@media (max-width:900px) {
  .about-layout { grid-template-columns:1fr 1fr; padding:65px 7%; }
  .about-copy { grid-column:1 / -1; padding:0; max-width:900px; }
  .about-photo-burnie { grid-column:1 / -1; grid-row:auto; }
  .about-photo-bambu, .about-photo-materials { grid-row:auto; }
}
@media (max-width:700px) {
  .about-layout { grid-template-columns:1fr; padding:55px 7%; }
  .about-copy, .about-photo-burnie, .about-photo-bambu, .about-photo-materials { grid-column:auto; grid-row:auto; }
}

/* Keep the large logo in the Home hero, with its circular artwork on transparent corners. */
.hero-logo { width:min(42vw,650px); max-width:650px; height:auto; }

/* Version 41: workshop journal / What’s New page */
.journal-intro{text-align:center;max-width:950px;padding-bottom:55px}.journal-intro h1{margin-bottom:25px}.journal-lede{max-width:760px;margin:0 auto;color:var(--muted);font-size:18px}.journal-entry{background:var(--cream);border-top:1px solid var(--line);padding:85px 7% 100px}.journal-entry-head{max-width:850px;margin:0 auto 75px;text-align:center}.journal-entry-head h2{margin-bottom:18px}.journal-entry-head>p:not(.eyebrow){color:var(--muted);font-size:17px}.journal-story{max-width:1180px;margin:0 auto 55px;display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.1fr);gap:45px;align-items:center}.journal-copy{max-width:650px}.journal-copy h3{font-size:44px;margin-bottom:18px}.journal-copy p:not(.eyebrow){color:var(--muted)}.journal-photo{background:white;border:1px solid var(--line);overflow:hidden}.journal-photo img{display:block;width:100%;height:auto}.journal-photo-grid{max-width:1180px;margin:0 auto 90px;display:grid;gap:22px}.journal-photo-grid figure{margin:0;background:white;border:1px solid var(--line);overflow:hidden}.journal-photo-grid img{display:block;width:100%;height:auto}.three-up{grid-template-columns:repeat(3,1fr)}.voice-grid,.bookmarks-grid{grid-template-columns:repeat(2,1fr)}.journal-video{max-width:900px;margin:0 auto 100px;text-align:center}.journal-video h3{font-size:46px;margin-bottom:8px}.journal-video>p:not(.eyebrow){color:var(--muted);margin-bottom:28px}.journal-video video{display:block;width:100%;max-height:720px;background:#17131a;border:1px solid var(--line)}.journal-closing{max-width:760px;margin:0 auto;padding-top:15px;text-align:center;color:var(--muted);font-size:18px}.journal-closing strong{color:var(--ink)}
@media(max-width:850px){.journal-entry{padding:70px 7% 80px}.journal-story{grid-template-columns:1fr;gap:28px;margin-bottom:45px}.journal-copy{max-width:none}.three-up,.voice-grid,.bookmarks-grid{grid-template-columns:1fr}.journal-photo-grid{margin-bottom:70px}.journal-video{margin-bottom:75px}}
