/* ==========================================================================
   AltaCoco Home — site styles
   Warm-neutral editorial palette, serif headlines, sans body.
   ========================================================================== */

:root {
  --bg: #f8f5f0;
  --bg-alt: #f1ece4;
  --surface: #fffdf9;
  --ink: #2a2622;
  --ink-soft: #5d574f;
  --muted: #8a8279;
  --line: #e3dcd1;
  --accent: #9b6a4d;
  --accent-ink: #7c5238;
  --sand: #e8dfd2;
  --clay: #d9c3b2;
  --sage: #cfd3c4;
  --stone: #d8d3cb;
  --oat: #ede4d6;

  --serif: "Fraunces", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --max: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent-ink); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 62ch;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.1rem;
}

.measure { max-width: 66ch; }
.muted { color: var(--muted); }
.small { font-size: 0.9rem; }

ul.clean { list-style: none; padding: 0; margin: 0; }

/* Layout ---------------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section { padding-block: clamp(64px, 9vw, 128px); }
.section--tight { padding-block: clamp(40px, 6vw, 80px); }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--ink); color: #efe9e0; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #f6f1ea; }
.section--dark .lede, .section--dark .muted { color: #cfc6ba; }
.section--dark .eyebrow { color: #d5b39c; }

.section-head { margin-bottom: clamp(32px, 5vw, 64px); max-width: 60ch; }
.section-head--center { margin-inline: auto; text-align: center; }

.grid { display: grid; gap: clamp(24px, 3vw, 40px); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
.split--reverse > :first-child { order: 2; }

@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); }
  .split { grid-template-columns: minmax(0, 1fr); }
  .split--reverse > :first-child { order: 0; }
}

/* Buttons --------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.95em 1.6em;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { background: var(--accent-ink); border-color: var(--accent-ink); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.section--dark .btn--ghost { color: #f6f1ea; border-color: #f6f1ea; }
.section--dark .btn--ghost:hover { background: #f6f1ea; color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px 16px; margin-top: 2rem; }

.link {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: border-color .2s ease, color .2s ease;
}
.link::after { content: "\2192"; font-size: 1.05em; transition: transform .2s ease; }
.link:hover { color: var(--accent-ink); border-color: var(--accent-ink); }
.link:hover::after { transform: translateX(3px); }

/* Header ---------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 245, 240, 0.92);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.brand {
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: 0.01em;
  color: var(--ink);
  white-space: nowrap;
}
.brand span { color: var(--accent); }

.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 32px); }
.nav a {
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--ink); }
.nav .btn { padding: 0.7em 1.3em; font-size: 0.76rem; margin-left: 8px; border-bottom: 0; color: #fff; }
.nav .btn:hover { color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle svg { display: block; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    left: 0; right: 0; top: 76px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 24px;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav a[aria-current="page"] { border-bottom-color: var(--line); color: var(--accent-ink); }
  .nav .btn { margin: 20px 0 0; justify-content: center; border-bottom: 1px solid var(--ink); }
}

/* Placeholder imagery --------------------------------------------------- */

.ph {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand);
  aspect-ratio: 4 / 3;
}
.ph--portrait { aspect-ratio: 4 / 5; }
.ph--wide { aspect-ratio: 16 / 9; }
.ph--square { aspect-ratio: 1 / 1; }
.ph--tall { aspect-ratio: 3 / 4; }
.ph--hero { aspect-ratio: 5 / 6; }
.ph::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 20% 10%, rgba(255,255,255,0.45), transparent 60%),
    radial-gradient(90% 70% at 90% 100%, rgba(0,0,0,0.06), transparent 60%);
}
.ph-sand { background: var(--sand); }
.ph-clay { background: var(--clay); }
.ph-sage { background: var(--sage); }
.ph-stone { background: var(--stone); }
.ph-oat { background: var(--oat); }
.ph-ink { background: #3a3430; }
.ph-ink .ph-label { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.3); }
.ph-label {
  position: absolute;
  left: 14px; bottom: 12px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(42, 38, 34, 0.55);
  border: 1px solid rgba(42, 38, 34, 0.18);
  padding: 4px 8px;
  border-radius: 2px;
  background: rgba(255,255,255,0.35);
}
.ph-mark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0.32;
}
.ph-mark svg { width: 34%; max-width: 160px; height: auto; }
/* Real photo layer: sits over the placeholder and takes over when the file exists.
   A missing file removes itself (onerror), leaving the placeholder visible. */
.ph-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

/* Hero ------------------------------------------------------------------ */

.hero { padding-block: clamp(48px, 7vw, 104px); }
.hero .split { align-items: center; }
.hero h1 { max-width: 14ch; }
.hero .lede { margin-top: 1.4rem; }

.page-hero { padding-block: clamp(56px, 8vw, 112px) clamp(32px, 5vw, 64px); }
.page-hero h1 { max-width: 16ch; }
.page-hero .lede { margin-top: 1.3rem; }
.page-hero + .section--tight { padding-top: 0; }

.byline {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(42, 38, 34, 0.14);
  max-width: 46ch;
}
.byline strong { color: var(--ink); font-weight: 600; }

/* Cards ----------------------------------------------------------------- */

.card { display: flex; flex-direction: column; gap: 14px; }
.card .ph { margin-bottom: 6px; }
.card h3 { margin-bottom: 0.25em; }
.card p { color: var(--ink-soft); }
.card .link { margin-top: auto; align-self: flex-start; }
.card-tag {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.service {
  padding: 32px 0 0;
  border-top: 1px solid var(--line);
}
.service .num {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 14px;
  display: block;
}
.service h3 { margin-bottom: 0.5em; }
.service p { color: var(--ink-soft); margin-bottom: 1.2em; }

.point h3 { font-size: 1.35rem; margin-bottom: 0.4em; }
.point p { color: var(--ink-soft); }
.point::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 20px;
}

/* Brand list ------------------------------------------------------------ */

.brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 36px;
  margin-top: 2rem;
}
.brand-list li {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--ink-soft);
}
.brand-list li.more { color: var(--muted); font-style: italic; }
.disclaimer { font-size: 0.82rem; color: var(--muted); max-width: 60ch; margin-top: 2.5rem; }

/* Checklists ------------------------------------------------------------ */

.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li {
  position: relative;
  padding-left: 22px;
  padding-block: 6px;
  color: var(--ink-soft);
}
.checklist li::before {
  content: "";
  position: absolute; left: 0; top: 17px;
  width: 8px; height: 1px;
  background: var(--accent);
}
.checklist--cols { columns: 2; column-gap: 32px; }
@media (max-width: 640px) { .checklist--cols { columns: 1; } }

/* Detailed services (Services page) ------------------------------------ */

.service-block {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 96px);
  padding-block: clamp(40px, 6vw, 72px);
  border-top: 1px solid var(--line);
}
.service-block:last-of-type { border-bottom: 1px solid var(--line); }
.service-block .num { font-family: var(--serif); color: var(--muted); display: block; margin-bottom: 12px; }
.service-block h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); }
.service-block .lede { font-size: 1.05rem; }
.service-block h4 {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
}
.service-block .aside > * + * { margin-top: 28px; }
@media (max-width: 760px) { .service-block { grid-template-columns: minmax(0, 1fr); } }

/* Lookbook -------------------------------------------------------------- */

.concept {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(36px, 5vw, 64px);
}
.concept:nth-child(even) > .concept-media { order: 2; }
.concept + .concept { border-top: 1px solid var(--line); }
.concept-media { display: grid; grid-template-columns: 2fr 1fr; gap: 12px; }
.concept-media .ph:first-child { grid-row: span 2; aspect-ratio: 4 / 5; }
.concept-media .ph:not(:first-child) { aspect-ratio: 1 / 1; }
.concept-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  padding: 5px 10px;
  border-radius: 2px;
  margin-bottom: 18px;
  background: var(--surface);
}
.concept .num { font-family: var(--serif); color: var(--muted); display: block; margin-bottom: 8px; }
.concept h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); }
.concept h4 {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 24px 0 8px;
}
@media (max-width: 760px) {
  .concept { grid-template-columns: minmax(0, 1fr); }
  .concept:nth-child(even) > .concept-media { order: 0; }
}

/* Editor's Choice ------------------------------------------------------- */

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 0.8rem;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-soft);
  transition: border-color .2s ease, color .2s ease;
}
.chip:hover, .chip.is-active { border-color: var(--ink); color: var(--ink); }

.pick { display: flex; flex-direction: column; gap: 10px; }
.pick .ph { margin-bottom: 8px; }
.pick .card-tag { margin-bottom: -2px; }
.pick h3 { font-size: 1.35rem; margin: 0; }
.pick p { color: var(--ink-soft); margin: 0; }
.pick .meta {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  margin-top: 2px;
}
.pick .link { margin-top: 10px; align-self: flex-start; }

.notice {
  font-size: 0.85rem;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  padding: 14px 18px;
  border-radius: var(--radius);
  max-width: 70ch;
}

/* Product post ---------------------------------------------------------- */

.post-hero { padding-block: clamp(40px, 6vw, 80px) 0; }
.post-hero h1 { max-width: 20ch; font-size: clamp(2rem, 4.2vw, 3.4rem); }
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.spec-table th, .spec-table td {
  text-align: left;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.spec-table th {
  width: 38%;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-right: 16px;
}
.post-body { max-width: 68ch; }
.post-body h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); margin-top: 2.2em; }
.post-body h2:first-child { margin-top: 0; }
.post-body p { color: var(--ink-soft); }
.post-body .callout {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.35;
  color: var(--ink);
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 1.5em 0;
}
.post-gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 12px; margin-block: 2.5rem; }
.post-gallery .ph:first-child { grid-row: span 2; aspect-ratio: auto; }
@media (max-width: 640px) {
  .post-gallery { grid-template-columns: 1fr 1fr; }
  .post-gallery .ph:first-child { grid-column: span 2; grid-row: auto; aspect-ratio: 4/3; }
}
.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.post-layout aside { position: sticky; top: 100px; }
@media (max-width: 860px) {
  .post-layout { grid-template-columns: minmax(0, 1fr); }
  .post-layout aside { position: static; }
}

/* Journal --------------------------------------------------------------- */

.journal-group { max-width: 820px; }
.journal-group + .journal-group { margin-top: clamp(40px, 6vw, 72px); }
.journal-group h2 {
  font-size: 1.1rem;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.article-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.article-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.article-list a, .article-list span.title {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--ink);
}
.article-list a:hover { color: var(--accent-ink); }
.article-list .status { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.article-list li.soon span.title { color: var(--ink-soft); }
.article-list .dek { font-size: 0.92rem; color: var(--ink-soft); margin: 6px 0 0; max-width: 60ch; }
.article-list .status { padding-top: 6px; }
.article-body .article-list a { font-size: 1.1rem; }
.post-layout aside .article-list a { font-size: 1.05rem; }
.post-layout aside .article-list li { padding: 12px 0; }

.article-body { max-width: 66ch; }
.article-body h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); margin-top: 2em; }
.article-body p, .article-body li { color: var(--ink-soft); }
.article-body ul { padding-left: 1.2em; }
.article-meta { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.2rem; }

/* FAQ ------------------------------------------------------------------- */

.faq { border-top: 1px solid var(--line); max-width: 780px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 40px 22px 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 4px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 1.3rem;
  color: var(--muted);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq .answer { padding: 0 0 24px; color: var(--ink-soft); max-width: 62ch; }

/* Forms ----------------------------------------------------------------- */

.form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 24px; }
.form .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); }
.field textarea { min-height: 150px; resize: vertical; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%235d574f' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-note { font-size: 0.84rem; color: var(--muted); }
.form-status { font-size: 0.92rem; color: var(--accent-ink); min-height: 1.4em; }
@media (max-width: 640px) { .form { grid-template-columns: minmax(0, 1fr); } }

.contact-grid { align-items: start; grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); }
@media (max-width: 760px) { .contact-grid { grid-template-columns: minmax(0, 1fr); } }
.contact-aside { padding-top: 6px; }
.contact-aside h3 { font-size: 1.2rem; }
.contact-aside .email { font-family: var(--serif); font-size: 1.4rem; color: var(--ink); }
.contact-aside p, .contact-aside address { color: var(--ink-soft); }
.contact-aside > * + * { margin-top: 26px; }

/* CTA band -------------------------------------------------------------- */

.cta-band { text-align: center; }
.cta-band h2 { max-width: 22ch; margin-inline: auto; }
.cta-band p { max-width: 52ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; }

/* Legal ----------------------------------------------------------------- */

.legal { max-width: 70ch; }
.legal h2 { font-size: 1.5rem; margin-top: 2em; }
.legal p, .legal li { color: var(--ink-soft); }

/* Footer ---------------------------------------------------------------- */

.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding-block: clamp(48px, 6vw, 80px) 32px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
}
.footer-grid .brand { font-size: 1.6rem; display: inline-block; margin-bottom: 10px; }
.footer-grid p, .footer-grid address { color: var(--ink-soft); margin-bottom: 0.6em; }
.footer-grid .email { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); }
.footer-grid h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { padding: 4px 0; }
.footer-grid li a { color: var(--ink-soft); }
.footer-grid li a:hover { color: var(--ink); }
.footer-bottom {
  margin-top: clamp(32px, 5vw, 56px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  max-width: 90ch;
}
.footer-bottom p { margin-bottom: 0.5em; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: minmax(0, 1fr); } }

/* Utilities ------------------------------------------------------------- */

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.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;
}

/* Reveal animation (subtle) -------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.is-visible { opacity: 1; transform: none; }
}
