/* ===== Lumi Liv — brand tokens ===== */
@font-face {
  font-family: "PlomPraeng";
  src: url("../fonts/PlomPraeng.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #F7F3E9;
  --cream-deep: #F1EADA;
  --brown: #6B4226;
  --brown-deep: #3D2414;
  --brown-ink: #2B1B0E;
  --gold: #A6923D;
  --rust: #B3402B;
  --white: #FFFDF8;

  --serif: "Fraunces", "Georgia", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;

  --container: 1280px;
  --gutter: clamp(24px, 6vw, 96px);
  --radius: 18px;
  --radius-pill: 999px;
}

@media (prefers-color-scheme: dark) {
  :root { color-scheme: light; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--brown-ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--rust);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition-duration: 0.01ms !important; }
}

/* ===== Nav / brand mark (minimal, no extra pages) ===== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  mix-blend-mode: normal;
  pointer-events: none;
}
.site-nav .brand {
  font-family: "PlomPraeng", var(--serif);
  font-weight: 400;
  letter-spacing: 0.04em;
  font-size: 1.3rem;
  color: var(--brown-ink);
  pointer-events: auto;
}
.site-nav .nav-cta {
  pointer-events: auto;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  background: transparent;
  color: var(--brown-ink);
  border: 1.5px solid var(--brown-ink);
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.site-nav .nav-cta:hover { background: var(--brown-ink); color: var(--white); }

/* ===== Hero — split layout with looping image columns ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}
.hero-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 110px var(--gutter) 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content { max-width: 560px; }
.hero-content .eyebrow { margin-bottom: 22px; display: block; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 24px;
  color: var(--brown-ink);
  white-space: pre-line;
}
.hero p {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.6;
  color: #4A3626;
  max-width: 480px;
  margin: 0 0 34px;
}
.btn-primary {
  display: inline-block;
  background: var(--rust);
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 15px 34px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.btn-primary:hover { background: #96331F; transform: translateY(-1px); }
.btn-primary:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: 3px;
}

/* looping image columns */
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  height: min(78vh, 720px);
  border-radius: 20px;
  overflow: hidden;
}
.hero-visual-col { position: relative; overflow: hidden; height: 100%; }
.hero-visual-track {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
.hero-visual-col.up .hero-visual-track { animation: scrollUp 26s linear infinite; }
.hero-visual-col.down .hero-visual-track { animation: scrollDown 30s linear infinite; }
@keyframes scrollUp { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes scrollDown { from { transform: translateY(-50%); } to { transform: translateY(0); } }

.hero-visual-tile {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: var(--cream-deep);
  flex-shrink: 0;
}
.hero-visual-col.up .hero-visual-tile:nth-child(4n+1) { aspect-ratio: 1/1; }
.hero-visual-col.up .hero-visual-tile:nth-child(4n+2) { aspect-ratio: 3/4; }
.hero-visual-col.up .hero-visual-tile:nth-child(4n+3) { aspect-ratio: 4/5; }
.hero-visual-col.up .hero-visual-tile:nth-child(4n+4) { aspect-ratio: 1/1; }
.hero-visual-col.down .hero-visual-tile:nth-child(4n+1) { aspect-ratio: 4/5; }
.hero-visual-col.down .hero-visual-tile:nth-child(4n+2) { aspect-ratio: 1/1; }
.hero-visual-col.down .hero-visual-tile:nth-child(4n+3) { aspect-ratio: 3/4; }
.hero-visual-col.down .hero-visual-tile:nth-child(4n+4) { aspect-ratio: 1/1; }
.hero-visual-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-visual-tile .placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--cream-deep), #E4DAC4);
  color: var(--brown);
  font-size: 0.72rem;
  text-align: center;
  padding: 10px;
}
.hero-visual-col.down { margin-top: 60px; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 100px; }
  .hero-visual { height: 46vh; order: -1; }
  .hero-content { max-width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-visual-col.up .hero-visual-track,
  .hero-visual-col.down .hero-visual-track { animation: none; }
}

/* ===== Section heading (shared) ===== */
.section-heading {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  padding: 90px var(--gutter) 30px;
  margin: 0;
}

/* ===== Services — a hand-stitched thread connecting each craft step ===== */
.services { background: var(--cream); padding-bottom: 100px; }
.services-intro {
  max-width: 560px;
  margin: -10px auto 70px;
  padding: 0 var(--gutter);
  text-align: center;
  font-size: 1.02rem;
  line-height: 1.6;
  color: #4A3626;
}
.stitch-timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
/* the thread itself: a dashed vertical line mimicking a running hand-stitch,
   drawn downward via JS as the section scrolls into view */
.stitch-thread {
  position: absolute;
  left: 50%;
  top: 8px;
  bottom: 8px;
  width: 0;
  border-left: 2px dashed var(--gold);
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  opacity: 0.6;
}
.stitch-node svg .draw {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
}
.stitch-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: center;
  gap: 0 36px;
  padding: 44px 0;
}
.stitch-item .stitch-node {
  grid-column: 2;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--brown-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.stitch-node {
  transition: transform 0.35s cubic-bezier(.22,.9,.3,1), border-color 0.35s ease;
}
.stitch-item:hover .stitch-node {
  transform: scale(1.1) rotate(-6deg);
  border-color: var(--rust);
}
.stitch-node svg { width: 26px; height: 26px; stroke: var(--brown-ink); fill: none; stroke-width: 1.5; transition: stroke 0.35s ease; }
.stitch-item:hover .stitch-node svg { stroke: var(--rust); }
.stitch-item .stitch-copy {
  grid-column: 1;
  text-align: right;
}
.stitch-item .stitch-media {
  grid-column: 3;
}
.stitch-item.flip .stitch-copy { grid-column: 3; text-align: left; }
.stitch-item.flip .stitch-media { grid-column: 1; }

.stitch-copy .num {
  font-family: var(--mono);
  color: var(--rust);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  display: block;
  margin-bottom: 8px;
}
.stitch-copy h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  margin: 0 0 10px;
  color: var(--brown-ink);
}
.stitch-copy p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4A3626;
  margin: 0;
}
.stitch-media {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream-deep);
  border: 1px solid rgba(107,66,38,0.15);
}
.stitch-media img { width: 100%; height: 100%; object-fit: cover; }
.stitch-media .placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; text-align: center; padding: 10px; color: var(--brown);
}

@media (max-width: 760px) {
  .stitch-thread { left: 27px; }
  .stitch-item, .stitch-item.flip {
    grid-template-columns: 56px 1fr;
    gap: 0 20px;
    padding: 32px 0;
  }
  .stitch-item .stitch-node, .stitch-item.flip .stitch-node {
    grid-column: 1; grid-row: 1;
    width: 44px; height: 44px;
  }
  .stitch-node svg { width: 20px; height: 20px; }
  .stitch-item .stitch-copy, .stitch-item.flip .stitch-copy {
    grid-column: 2; grid-row: 1;
    text-align: left;
  }
  .stitch-item .stitch-media, .stitch-item.flip .stitch-media {
    grid-column: 2; grid-row: 2;
    margin-top: 16px;
  }
}

/* ===== Gallery — compact masonry, varied aspect ratios for a curated feel ===== */
.gallery { padding-bottom: 30px; }
.gallery-grid {
  column-count: 4;
  column-gap: 10px;
  padding: 0 var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.gallery-tile {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream-deep);
  cursor: pointer;
  border: 1px solid transparent;
  break-inside: avoid;
  margin-bottom: 10px;
  transition: transform 0.5s cubic-bezier(.22,.9,.3,1), border-color 0.4s ease;
}
.gallery-tile:hover, .gallery-tile:focus-visible {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(43,27,14,0.18);
  z-index: 2;
}
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-tile .placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--cream-deep), #E8DFC9);
  color: var(--brown);
  font-family: var(--serif);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 12px;
}

/* six curated aspect ratios so tiles read as genuinely different sizes, not a repeating pattern */
.gallery-grid .g1 { aspect-ratio: 3 / 4; }
.gallery-grid .g2 { aspect-ratio: 1 / 1; }
.gallery-grid .g3 { aspect-ratio: 4 / 5; }
.gallery-grid .g4 { aspect-ratio: 4 / 3; }
.gallery-grid .g5 { aspect-ratio: 1 / 1; }
.gallery-grid .g6 { aspect-ratio: 3 / 4; }

@media (max-width: 900px) {
  .gallery-grid { column-count: 3; }
}
@media (max-width: 640px) {
  .gallery-grid { column-count: 2; }
}
@media (max-width: 420px) {
  .gallery-grid { column-count: 1; }
  .gallery-grid .g1, .gallery-grid .g3, .gallery-grid .g6 { aspect-ratio: 4 / 3; }
}

/* ===== Accent banner strip (full-bleed, rationed accent moment) ===== */
.accent-banner {
  background: var(--rust);
  padding: 56px var(--gutter);
  text-align: center;
}
.accent-banner p {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  color: var(--white);
  margin: 0;
  max-width: 780px;
  margin-inline: auto;
}

/* ===== Wave dividers — thin brown line that draws itself as you scroll ===== */
.wave-divider {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  background: transparent;
}
.wave-divider svg { width: 100%; height: 44px; display: block; }
.wave-divider .wave-path {
  fill: none;
  stroke: var(--brown);
  stroke-width: 1.4;
  opacity: 0.65;
}

/* ===== Contact ===== */
.contact {
  position: relative;
  padding: 100px var(--gutter) 90px;
  overflow: hidden;
}
.contact-curve {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  z-index: -1;
  opacity: 0.6;
}
.contact-curve svg { width: 100%; height: 100%; }
.contact-curve path { fill: none; stroke: var(--brown); stroke-width: 1.4; opacity: 0.5; }

.contact-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 0 0 18px;
}
.contact > .contact-grid > .contact-left > p.lead {
  font-size: 1.05rem;
  color: #4A3626;
  margin: 0 0 32px;
  max-width: 420px;
}
.contact-actions { display: flex; gap: 14px; margin-bottom: 40px; flex-wrap: wrap; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--brown-ink);
  color: var(--brown-ink);
  background: transparent;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}
.btn-outline:hover { background: var(--brown-ink); color: var(--white); }
.btn-fill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--rust);
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: none;
  transition: background 0.3s ease, transform 0.3s ease;
}
.btn-fill:hover { background: #96331F; transform: translateY(-1px); }

.contact-info { list-style: none; margin: 0; padding: 0; }
.contact-info li {
  display: flex; gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(107,66,38,0.15);
  font-size: 0.95rem;
}
.contact-info li:first-child { border-top: none; }
.contact-info .label { color: var(--brown); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; min-width: 120px; }
.contact-info .value { color: var(--brown-ink); white-space: pre-line; line-height: 1.5; }
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--brown-ink);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  font-size: 0.75rem;
  transition: background 0.3s ease, color 0.3s ease;
}
.social-row a:hover { background: var(--brown-ink); color: var(--white); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(43,27,14,0.15);
  min-height: 420px;
  background: var(--cream-deep);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

footer.site-footer {
  text-align: center;
  padding: 30px var(--gutter) 40px;
  font-size: 0.8rem;
  color: var(--brown);
  letter-spacing: 0.04em;
}

/* ===== Nav pills + centered logo ===== */
.site-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1), background 0.35s ease, border-color 0.35s ease;
}
.site-nav.nav-hidden { transform: translateY(-110%); }
.site-nav.nav-solid {
  background: var(--brown);
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.site-nav.nav-solid .brand { color: var(--cream); }
.site-nav.nav-solid .nav-pill { color: var(--cream); border-color: var(--cream); }
.site-nav.nav-solid .nav-pill:hover { background: var(--cream); color: var(--brown); }
.site-nav.nav-solid .nav-cta { color: var(--cream); border-color: var(--cream); }
.site-nav.nav-solid .nav-cta:hover { background: var(--cream); color: var(--brown); }
.nav-links { display: flex; gap: 10px; pointer-events: auto; }
.nav-pill {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--brown-ink);
  border: 1.5px solid var(--brown-ink);
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.nav-pill:hover { background: var(--brown-ink); color: var(--white); }
.site-nav .brand { text-align: center; font-size: 1.3rem; transition: color 0.3s ease; }
.site-nav .nav-cta { justify-self: end; }
@media (max-width: 760px) {
  .nav-links { display: none; }
  .site-nav { grid-template-columns: 1fr auto; }
  .site-nav .brand { text-align: left; grid-column: 1; }
  .site-nav .nav-cta { grid-column: 2; }
}

/* ===== Founder note (mirrors hero: text + portrait) ===== */
.founder-note {
  padding: 100px var(--gutter);
  background: var(--cream);
}
.founder-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.founder-text h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 14px 0 22px;
}
.founder-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4A3626;
  white-space: pre-line;
  max-width: 480px;
  margin: 0 0 20px;
}
.founder-signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem !important;
  color: var(--brown-ink) !important;
  margin-bottom: 28px !important;
}
.founder-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-deep);
  border: 1px solid rgba(107,66,38,0.15);
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-photo .placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--brown);
  font-family: var(--serif);
  text-align: center;
  padding: 20px;
}
@media (max-width: 860px) {
  .founder-grid { grid-template-columns: 1fr; }
  .founder-photo { order: -1; max-width: 320px; margin: 0 auto; }
}

/* ===== Occasions circle row ===== */
.occasions { padding: 40px var(--gutter) 100px; max-width: var(--container); margin: 0 auto; }
.occasions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: center;
  margin-top: 20px;
}
.occasion-item { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.occasion-circle {
  width: 130px; height: 130px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream-deep);
  border: 1.5px solid var(--brown-ink);
}
.occasion-circle img { width: 100%; height: 100%; object-fit: cover; }
.occasion-circle .placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; text-align: center; padding: 10px; color: var(--brown);
}
.occasion-label { font-size: 0.88rem; font-weight: 500; color: var(--brown-ink); }

/* ===== Lifestyle strip ===== */
.lifestyle { background: var(--cream-deep); }
.lifestyle-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.lifestyle-tile { aspect-ratio: 3/4; overflow: hidden; background: var(--cream); }
.lifestyle-tile img { width: 100%; height: 100%; object-fit: cover; }
.lifestyle-tile .placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--brown); font-size: 0.75rem; text-align: center; padding: 10px;
}
.lifestyle-cta {
  background: var(--rust);
  padding: 40px var(--gutter);
  text-align: center;
}
.lifestyle-cta p {
  color: var(--white);
  max-width: 640px;
  margin: 0 auto 22px;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.95;
}
.btn-outline.light {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline.light:hover { background: var(--white); color: var(--rust); }
@media (max-width: 700px) {
  .lifestyle-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Expanded footer ===== */
.site-footer-expanded {
  background: var(--cream);
  padding: 70px var(--gutter) 30px;
  border-top: 1px solid rgba(107,66,38,0.15);
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
}
.footer-col h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--rust);
  margin: 0 0 16px;
}
.footer-col p { font-size: 0.9rem; line-height: 1.6; color: #4A3626; margin: 0 0 18px; max-width: 320px; }
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--brown-ink);
  text-decoration: none;
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--rust); }
.newsletter-form { display: flex; max-width: 320px; border: 1.5px solid var(--brown-ink); border-radius: var(--radius-pill); overflow: hidden; }
.newsletter-form input {
  flex: 1; border: none; background: transparent; padding: 12px 16px; font-family: var(--sans); font-size: 0.88rem; color: var(--brown-ink);
}
.newsletter-form input:focus { outline: none; }
.newsletter-form button {
  border: none; background: var(--rust); color: var(--white);
  width: 44px; font-size: 1.1rem; cursor: pointer;
}
#footer-socials { display: flex; gap: 10px; }
#footer-socials a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--brown-ink);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 0.72rem;
  transition: background 0.3s ease, color 0.3s ease;
}
#footer-socials a:hover { background: var(--brown-ink); color: var(--white); }
.footer-bottom {
  max-width: var(--container);
  margin: 50px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(107,66,38,0.12);
  font-size: 0.8rem;
  color: var(--brown);
  text-align: center;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}
