/* =========================================
   hunterbabcock.com — main styles
   Wall metaphor: warm linen, picture frames
   ========================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --wall: #E2DDD4;
  --wall-dark: #D4CEBE;
  --frame-gold: #8B6914;
  --frame-gold-light: #C4971A;
  --frame-dark: #1A1A18;
  --frame-white: #F7F5F0;
  --ink: #1E1E1C;
  --ink-mid: #5A5956;
  --ink-light: #9A9890;
  --green: #173D24;
  --green-light: #2B4931;
  --sage: #A5A975;
  --linen: #E4E6DD;
  --serif: 'Playfair Display', 'Palatino Linotype', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--wall);
  color: var(--ink);
  min-height: 100vh;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(0,0,0,0.018) 28px, rgba(0,0,0,0.018) 29px),
    repeating-linear-gradient(90deg, transparent, transparent 28px, rgba(0,0,0,0.018) 28px, rgba(0,0,0,0.018) 29px);
}

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 58px;
  background: rgba(226, 221, 212, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.nav-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 2px;
  background: rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 3px;
}

.nav-link {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-mid);
  text-decoration: none;
  padding: 5px 13px;
  border-radius: 16px;
  transition: all 0.15s;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  background: var(--ink);
  color: #F1EFE8;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--wall);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 8px 24px 16px;
  gap: 2px;
  position: sticky;
  top: 58px;
  z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* ---- WALL LAYOUT ---- */
.wall {
  padding: 36px 32px 60px;
  max-width: 1280px;
  margin: 0 auto;
}

.wall-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: flex-start;
}

/* ---- SHELF ---- */
.wall-shelf {
  height: 7px;
  background: #B8B2A8;
  border-radius: 3px;
  margin: 8px 0 28px;
  position: relative;
  box-shadow: 0 3px 0 rgba(0,0,0,0.12), 0 1px 0 rgba(255,255,255,0.3) inset;
}
.shelf-shadow {
  position: absolute;
  top: 7px; left: 0; right: 0;
  height: 14px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.07), transparent);
}

/* ---- FRAME BASE ---- */
.frame {
  position: relative;
  overflow: hidden;
}

.frame-wrap {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  transform: rotate(var(--rot, 0deg));
}
.frame-wrap::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 14px;
  background: #9A9890;
  z-index: 1;
}
.frame-wrap::after {
  content: '';
  position: absolute;
  top: -19px;
  left: 50%;
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  background: #888;
  border-radius: 50%;
  border: 2px solid #666;
  z-index: 1;
}

/* Frame styles */
.frame-ornate {
  border: 7px solid var(--frame-gold);
  box-shadow:
    inset 0 0 0 2px var(--frame-gold-light),
    inset 0 0 0 4px var(--frame-gold),
    3px 5px 14px rgba(0,0,0,0.3);
}

.frame-mat {
  border: 10px solid var(--frame-white);
  outline: 1px solid #C8C5BE;
  box-shadow: 2px 4px 10px rgba(0,0,0,0.22);
}

.frame-thin {
  border: 3px solid var(--ink);
  box-shadow: 2px 4px 10px rgba(0,0,0,0.25);
}

.frame-white {
  border: 8px solid var(--frame-white);
  outline: 1px solid #C8C5BE;
  box-shadow: 2px 4px 8px rgba(0,0,0,0.18);
}

.frame-canvas {
  border: 3px solid #C8C5BE;
  background: #FAFAF8;
  box-shadow: 2px 3px 8px rgba(0,0,0,0.14);
}

.frame-dark {
  border: 3px solid var(--frame-dark);
  background: var(--green);
  box-shadow: 2px 3px 8px rgba(0,0,0,0.25);
}

.frame-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 12px 10px;
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
  font-family: var(--serif);
  font-size: 11px;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  text-align: center;
  letter-spacing: 0.04em;
}

.art-label {
  font-size: 10px;
  color: var(--ink-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ---- HERO CARD ---- */
.hero-card {
  background: #F5F2EC;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 3px;
  padding: 36px 40px;
  box-shadow: 1px 3px 8px rgba(0,0,0,0.1);
  flex: 1;
  min-width: 0;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-mid);
  margin-bottom: 28px;
  max-width: 480px;
}

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

.btn-primary {
  background: var(--green);
  color: #F1EFE8;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 20px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--green-light); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
  padding: 9px 20px;
  border-radius: 20px;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.18);
  transition: background 0.15s;
}
.btn-ghost:hover { background: rgba(0,0,0,0.05); }

.btn-ghost-sm {
  display: inline-block;
  background: transparent;
  color: var(--ink-mid);
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.14);
  margin-top: 10px;
  transition: background 0.15s;
}
.btn-ghost-sm:hover { background: rgba(0,0,0,0.05); }

/* ---- ROW SPECIFIC ---- */
.row-hero {
  align-items: stretch;
}
.row-hero .frame-wrap { align-self: stretch; }
.row-hero .frame-ornate {
  width: 240px;
  height: 100%;
  min-height: 260px;
}
.art-col .frame-mat {
  width: 130px;
  height: 165px;
}

/* ---- PROJECT CARDS ---- */
.project-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 200px;
  max-width: 220px;
}

.section-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 2px;
}

.project-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s;
}
.project-card:hover { transform: translateY(-2px); }

.project-inner {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 140px;
  justify-content: space-between;
}

.proj-tag {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-weight: 500;
}

.proj-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
}

.proj-desc {
  font-size: 11px;
  color: var(--ink-mid);
  line-height: 1.5;
}

.proj-link {
  font-size: 10px;
  color: var(--green);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hh-card { background: var(--green); }
.hh-inner { background: var(--green); }
.hh-tag { color: rgba(165,169,117,0.8); }
.hh-name { color: #E4E6DD; }
.hh-desc { color: rgba(228,230,221,0.65); }
.hh-link { color: var(--sage); }

/* ---- CORKBOARD ---- */
.corkboard-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.corkboard {
  background: #C49A6C;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(0,0,0,0.025) 8px, rgba(0,0,0,0.025) 16px);
  border: 8px solid #8B6530;
  border-radius: 2px;
  box-shadow:
    inset 0 0 0 2px #A07540,
    2px 4px 12px rgba(0,0,0,0.28);
  padding: 14px 14px 10px;
  width: 230px;
}

.cork-posts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

.cork-note {
  background: #FFFDE8;
  padding: 10px 12px 10px;
  border-radius: 1px;
  box-shadow: 1px 2px 4px rgba(0,0,0,0.18);
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.15s;
}
.cork-note:hover { transform: translateY(-1px); }

.pushpin {
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 40% 35%, #FF6666, #CC2222);
  border-radius: 50%;
  box-shadow: 0 2px 3px rgba(0,0,0,0.35);
}
.pushpin::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 5px;
  background: #888;
  border-radius: 1px;
}

.note-title {
  font-size: 12px;
  font-weight: 500;
  color: #2C2C2A;
  line-height: 1.4;
  margin-bottom: 3px;
}

.note-meta {
  font-size: 10px;
  color: #888780;
  line-height: 1.3;
}

.cork-more {
  display: block;
  text-align: right;
  font-size: 10px;
  color: #7A5A30;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.cork-more:hover { color: #5A3A10; }

/* ---- PORTRAIT + NEWSLETTER ---- */
.portrait-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.portrait-frame {
  width: 118px;
  height: 148px;
}

.newsletter-card {
  --rot: 1deg;
}

.newsletter-inner {
  background: #F5F2EC;
  border: 1px dashed #B4B2A9;
  padding: 13px 14px;
  width: 120px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 1px 2px 5px rgba(0,0,0,0.1);
}

.nl-title {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--ink);
  font-style: italic;
}

.nl-sub {
  font-size: 10px;
  color: var(--ink-mid);
  line-height: 1.5;
}

.nl-cta {
  font-size: 10px;
  font-weight: 500;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
}
.nl-cta:hover { color: var(--green-light); }

/* ---- BIKING FRAME ---- */
.biking-frame-wrap {
  flex: 1;
  min-width: 0;
  --rot: 0.5deg;
}
.biking-frame {
  width: 100%;
  height: 240px;
  position: relative;
}
.biking-img { object-position: center 30%; }
.biking-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 12px 10px;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  display: flex;
  justify-content: flex-end;
}
.race-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ---- BOTTOM ROW ---- */
.row-bottom {
  align-items: stretch;
  gap: 16px;
}

.about-strip {
  background: var(--ink);
  border-radius: 3px;
  padding: 0;
  box-shadow: 2px 4px 10px rgba(0,0,0,0.22);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  min-width: 0;
  flex: 1.2;
}

.about-img {
  width: 180px;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.about-text {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.about-name {
  font-family: var(--serif);
  font-size: 16px;
  color: #F1EFE8;
  font-style: italic;
}

.about-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.fact {
  font-size: 10px;
  color: var(--ink-light);
  background: rgba(255,255,255,0.06);
  padding: 3px 9px;
  border-radius: 10px;
  white-space: nowrap;
}

/* ---- CREATIVE ---- */
.creative-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.creative-grid {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

.creative-frame {
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.2s;
  flex: 1;
}
.creative-frame:hover { transform: rotate(0deg) translateY(-3px); }
.creative-frame .frame-img {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
}

.b-frame .frame-img { object-fit: contain; background: white; }

.creative-caption {
  font-size: 10px;
  color: var(--ink-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---- CONTACT CARD ---- */
.contact-card {
  background: var(--ink);
  border-radius: 3px;
  box-shadow: 2px 4px 10px rgba(0,0,0,0.22);
  text-decoration: none;
  transition: transform 0.15s;
  min-width: 170px;
}
.contact-card:hover { transform: translateY(-2px); }

.contact-inner {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  justify-content: center;
}

.contact-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.contact-name {
  font-family: var(--serif);
  font-size: 14px;
  color: #F1EFE8;
  font-style: italic;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-pill {
  font-size: 10px;
  color: var(--ink-light);
  background: rgba(255,255,255,0.06);
  padding: 3px 9px;
  border-radius: 10px;
  display: inline-block;
  width: fit-content;
}

.hh-pill {
  color: var(--sage);
  background: rgba(165,169,117,0.12);
}

/* ========== INNER PAGES ========== */
.page-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 32px 80px;
}

.page-hero {
  margin-bottom: 56px;
}

.page-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}

.page-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 20px;
}

.page-title em { color: var(--green); }

.page-intro {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-mid);
  max-width: 640px;
}

.prose-section {
  margin-bottom: 48px;
}

.prose-section h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 14px;
}

.prose-section p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-mid);
  margin-bottom: 14px;
}

.divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.1);
  margin: 40px 0;
}

/* About page */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

.about-photo-card {
  background: var(--frame-white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 2px 4px 10px rgba(0,0,0,0.12);
}

.about-photo-card img {
  width: 100%;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.about-photo-label {
  padding: 12px 14px;
  font-size: 11px;
  color: var(--ink-mid);
  font-style: italic;
  font-family: var(--serif);
  text-align: center;
}

.facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.fact-card {
  background: rgba(0,0,0,0.04);
  border-radius: 6px;
  padding: 10px 12px;
}

.fact-card-label {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 3px;
}

.fact-card-value {
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}

/* Work page */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.work-card {
  background: #F5F2EC;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 4px;
  padding: 22px 24px;
  box-shadow: 1px 2px 6px rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.work-card:hover {
  transform: translateY(-3px);
  box-shadow: 2px 5px 14px rgba(0,0,0,0.14);
}

.work-card.current { border-left: 3px solid var(--green); }

.wc-meta {
  display: flex;
  gap: 6px;
  align-items: center;
}

.wc-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.wc-status {
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 8px;
  font-weight: 500;
}
.wc-status.active {
  background: rgba(23,61,36,0.1);
  color: var(--green);
}
.wc-status.past {
  background: rgba(0,0,0,0.06);
  color: var(--ink-light);
}

.wc-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
}

.wc-role {
  font-size: 12px;
  color: var(--sage);
  font-weight: 500;
}

.wc-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-mid);
  flex: 1;
}

.wc-link {
  font-size: 11px;
  color: var(--green);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  align-self: flex-start;
}

/* Blog page */
.blog-header-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}

.blog-posts-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.blog-post-item {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
  transition: background 0.1s;
}
.blog-post-item:hover .bp-title { color: var(--green); }

.bp-date {
  font-size: 11px;
  color: var(--ink-light);
  white-space: nowrap;
  padding-top: 3px;
  min-width: 64px;
}

.bp-content { flex: 1; }

.bp-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.3;
  transition: color 0.15s;
}

.bp-desc {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.6;
}

.bp-arrow {
  font-size: 16px;
  color: var(--ink-light);
  padding-top: 4px;
  transition: transform 0.15s;
}
.blog-post-item:hover .bp-arrow { transform: translateX(3px); }

/* Newsletter sidebar */
.nl-sidebar {
  background: var(--green);
  border-radius: 4px;
  padding: 28px 26px;
  color: #E4E6DD;
}

.nl-sidebar-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: #E4E6DD;
  margin-bottom: 10px;
}

.nl-sidebar-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(228,230,221,0.7);
  margin-bottom: 20px;
}

.nl-sidebar-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nl-input {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  color: #E4E6DD;
  font-family: var(--sans);
  outline: none;
}
.nl-input::placeholder { color: rgba(228,230,221,0.4); }

.nl-submit {
  background: #E4E6DD;
  color: var(--green);
  border: none;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--sans);
  transition: background 0.15s;
}
.nl-submit:hover { background: #fff; }

/* Hunter's House page */
.hh-page-hero {
  background: var(--green);
  border-radius: 4px;
  padding: 48px 48px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.hh-page-hero::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.hh-page-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}

.hh-page-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: #E4E6DD;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hh-page-sub {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(228,230,221,0.7);
  max-width: 540px;
  margin-bottom: 28px;
}

.hh-cta {
  display: inline-block;
  background: #E4E6DD;
  color: var(--green);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 24px;
  text-decoration: none;
  transition: background 0.15s;
}
.hh-cta:hover { background: #fff; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.pillar-card {
  background: #F5F2EC;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 4px;
  padding: 18px 14px;
  text-align: center;
}

.pillar-icon {
  font-size: 22px;
  margin-bottom: 8px;
  display: block;
}

.pillar-name {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 4px;
}

.pillar-desc {
  font-size: 11px;
  color: var(--ink-light);
  line-height: 1.4;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-mid);
  letter-spacing: 0.04em;
}

.form-input, .form-textarea {
  background: #F5F2EC;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 6px;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--ink);
  font-family: var(--sans);
  outline: none;
  transition: border-color 0.15s;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--green);
}
.form-textarea { min-height: 130px; resize: vertical; }

.contact-info-card {
  background: var(--ink);
  border-radius: 4px;
  padding: 32px 28px;
  color: #F1EFE8;
}

.ci-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: #F1EFE8;
  margin-bottom: 20px;
}

.ci-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ci-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ci-label {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.ci-value {
  font-size: 14px;
  color: #F1EFE8;
  text-decoration: none;
}

.ci-value:hover { color: var(--sage); }

/* ---- FOOTER (inner pages) ---- */
footer {
  text-align: center;
  padding: 32px;
  font-size: 12px;
  color: var(--ink-light);
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: 24px;
}

/* ====================================================
   HOMEPAGE REDESIGN — upscale gallery wall
   ==================================================== */

/* Minimal nav — homepage only */
.nav-minimal .nav-links,
.nav-minimal .nav-hamburger { display: none !important; }

/* ---- HOME HERO — bold quote print style ---- */
.home-hero {
  padding: 32px 0 24px;
  max-width: 1100px;
}

.home-hero .hero-headline {
  font-family: var(--sans);
  font-size: clamp(32px, 5.2vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 820px;
}

/* ---- UPSCALE GALLERY FRAME ---- */
/* Thick cream mat + thin dark outer frame + deep drop shadow */
.frame-gallery {
  border: 14px solid #F1EDE5;
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.09),   /* inner mat shadow at image edge */
    0 0 0 1px #C4BFB6,                   /* mat bevel line */
    0 0 0 4px #38332E,                   /* thin outer wood frame */
    8px 16px 40px rgba(0,0,0,0.28),      /* main drop shadow */
    0 3px 8px rgba(0,0,0,0.12);          /* ambient shadow */
}

/* Nail wire — slightly longer for bigger frames */
.photo-row .frame-wrap::before {
  height: 18px;
  top: -18px;
}
.photo-row .frame-wrap::after {
  top: -24px;
  width: 10px;
  height: 10px;
}

/* ---- PHOTO ROW ---- */
.photo-row {
  display: flex;
  gap: 22px;
  padding: 18px 0 44px;
  padding-left: 24px;
  align-items: flex-end;
  flex-wrap: nowrap;
  overflow-x: auto;
}

/* Individual frame sizes — 5 frames on the wall */
.grad-frame     { width: 162px; height: 206px; flex-shrink: 0; } /* portrait  */
.cycling-frame  { width: 220px; height: 164px; flex-shrink: 0; } /* landscape */
.breck-frame    { width: 158px; height: 200px; flex-shrink: 0; } /* portrait  */
.wedding-frame  { width: 230px; height: 170px; flex-shrink: 0; } /* landscape */
.pro-frame      { width: 158px; height: 200px; flex-shrink: 0; } /* portrait  */

.cycling-img { object-position: center 30%; }

/* Caption label below frame (like a gallery name plate) */
.gallery-label {
  font-family: var(--serif);
  font-size: 11px;
  font-style: italic;
  color: var(--ink-light);
  letter-spacing: 0.03em;
  text-align: center;
  margin-top: 10px;
}

/* ---- CONTENT ROW (projects + blog + breck) ---- */
.row-content {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.row-content .project-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 210px;
  max-width: 230px;
  flex-shrink: 0;
}

.row-content .corkboard-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.row-content .corkboard {
  width: 100%;
}

/* Big corkboard: 2-column post grid */
.corkboard-big .corkboard {
  padding: 22px 22px 14px;
}

.corkboard-big .cork-posts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px 14px;
  margin-bottom: 12px;
}

.corkboard-big .cork-note {
  padding: 14px 16px 12px;
}

.corkboard-big .cork-note:nth-child(1) { transform: rotate(-0.4deg); }
.corkboard-big .cork-note:nth-child(2) { transform: rotate(0.6deg); }
.corkboard-big .cork-note:nth-child(3) { transform: rotate(-0.8deg); }
.corkboard-big .cork-note:nth-child(4) { transform: rotate(0.3deg); }
.corkboard-big .cork-note:nth-child(5) { transform: rotate(-0.5deg); }

.corkboard-big .cork-note:hover { transform: translateY(-2px) rotate(0deg); }

.corkboard-big .note-title { font-size: 13px; }
.corkboard-big .note-meta  { font-size: 11px; }

/* Breck right-side portrait */
.breck-wall {
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 22px;
}
.breck-portrait {
  width: 148px;
  height: 188px;
}

/* ---- SITE FOOTER ---- */
.site-footer {
  border-top: 1px solid rgba(0,0,0,0.09);
  margin-top: 48px;
  padding: 30px 32px;
  background: transparent;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-name {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--ink-mid);
}

.footer-links {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 12px;
  color: var(--ink-mid);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.15s;
}
.footer-link:hover { color: var(--ink); }

/* ---- RESPONSIVE ---- */
/* Nav collapses to hamburger at 900px */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* Layout collapses to mobile at 700px */
@media (max-width: 700px) {
  .wall { padding: 24px 20px 48px; }
  .wall-row { flex-wrap: wrap; }
  .row-hero { flex-direction: column; }
  .row-hero .frame-ornate { width: 100%; height: 260px; min-height: 0; }
  .art-col { display: none; }
  .project-stack { max-width: 100%; min-width: 0; width: 100%; flex-direction: row; flex-wrap: wrap; }
  .project-card { flex: 1; min-width: 180px; }
  .corkboard { width: 100%; }
  .biking-frame-wrap { width: 100%; --rot: 0deg; }
  .row-bottom { flex-direction: column; }
  .about-strip { width: 100%; }
  .creative-block { width: 100%; }
  .about-layout { grid-template-columns: 1fr; }
  .blog-header-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .page-wrap { padding: 40px 20px 60px; }

  /* Homepage mobile */
  .home-hero { padding: 36px 0 28px; }
  .photo-row { gap: 14px; justify-content: flex-start; }
  .grad-frame     { width: 105px; height: 134px; }
  .cycling-frame  { width: 144px; height: 108px; }
  .breck-frame    { width: 102px; height: 130px; }
  .wedding-frame  { width: 150px; height: 112px; }
  .pro-frame      { width: 102px; height: 130px; }
  .frame-gallery  { border-width: 10px; }
  .row-content { flex-direction: column; }
  .row-content .project-stack { max-width: 100%; flex-direction: row; flex-wrap: wrap; }
  .row-content .corkboard { max-width: 100%; }
  .corkboard-big .cork-posts { grid-template-columns: 1fr 1fr; }
  .footer-inner { justify-content: center; text-align: center; }
  .footer-links { justify-content: center; gap: 16px; }
}
