/* ========================================================================
   ESTRIBO VIEJO — Landing
   Paleta: Kraft #A9866F · Forest #1E6347 · Dark Brown #563E32 · Cream #F6EAD8
   ======================================================================== */

:root {
  --kraft: #a9866f;
  --kraft-deep: #8e6c57;
  --forest: #1e6347;
  --forest-deep: #154a35;
  --brown: #563e32;
  --brown-soft: #3d2c23;
  --cream: #f6ead8;
  --cream-warm: #efdfc6;
  --cream-deep: #e6d4b8;
  --ink: #2a1f18;
  --line: rgba(86, 62, 50, 0.18);
  --line-strong: rgba(86, 62, 50, 0.35);

  --font-serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 1px 2px rgba(42, 31, 24, 0.05),
    0 12px 32px -12px rgba(42, 31, 24, 0.18);
  --shadow-strong: 0 30px 60px -28px rgba(42, 31, 24, 0.45),
    0 6px 12px -6px rgba(42, 31, 24, 0.18);

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

::selection {
  background: var(--forest);
  color: var(--cream);
}

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.07;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.2 0 0 0 0 0.15 0 0 0 0 0.1 0 0 0 1 0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.6'/></svg>");
}

/* ---------- Container helper ---------- */
.section,
.hero,
.footer__inner,
.nav,
.marquee {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ============================ NAVIGATION ============================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
  background: rgba(246, 234, 216, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(246, 234, 216, 0.88);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--brown);
}

.nav__logo {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.nav__word {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.01em;
}

.nav__links {
  display: flex;
  gap: 28px;
}

.nav__links a {
  color: var(--brown);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.01em;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--forest);
  transition: right 0.35s var(--ease-out);
}

.nav__links a:hover {
  color: var(--forest);
}
.nav__links a:hover::after {
  right: 0;
}

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

.nav__ig {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: var(--brown);
  border: 1px solid var(--line-strong);
  background: transparent;
  text-decoration: none;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease),
    background 0.25s var(--ease), transform 0.25s var(--ease);
}

.nav__ig:hover {
  color: var(--forest);
  border-color: var(--forest);
  background: rgba(30, 99, 71, 0.06);
  transform: translateY(-1px);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.nav__cta:hover {
  background: var(--forest-deep);
  transform: translateY(-1px);
}

@media (max-width: 820px) {
  .nav__links {
    display: none;
  }
}

@media (max-width: 480px) {
  .nav__cta {
    display: none;
  }
}

/* ============================ HERO ============================ */
.hero {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: clamp(120px, 16vh, 180px);
  padding-bottom: clamp(80px, 12vh, 140px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  background: rgba(30, 99, 71, 0.08);
  color: var(--forest);
  border: 1px solid rgba(30, 99, 71, 0.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--forest);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.4); }
}

.display {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6.4vw, 5.2rem);
  font-weight: 350;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  color: var(--brown);
  font-variation-settings: "opsz" 120;
}

.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
  font-variation-settings: "opsz" 144;
}

.display .ink {
  position: relative;
  white-space: nowrap;
}

.display .ink::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 6%;
  height: 14%;
  background: rgba(169, 134, 111, 0.32);
  z-index: -1;
  border-radius: 4px;
  transform: skew(-3deg);
}

.lede {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  max-width: 46ch;
  color: var(--brown-soft);
  margin: 0 0 36px;
  line-height: 1.65;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    border-color 0.25s var(--ease), color 0.25s var(--ease);
  cursor: pointer;
}

.btn--primary {
  background: var(--brown);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--ink);
  transform: translateY(-2px);
}
.btn--primary svg {
  transition: transform 0.25s var(--ease-out);
}
.btn--primary:hover svg {
  transform: translateX(3px);
}

.btn--ghost {
  background: transparent;
  color: var(--brown);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
}

/* Hero visual */
.hero__visual {
  position: relative;
}

.hero__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  background: var(--cream-deep);
  transform: rotate(1.2deg);
  transition: transform 0.6s var(--ease-out);
}

.hero__frame:hover {
  transform: rotate(0deg) scale(1.01);
}

.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.02);
}

.hero__badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: var(--cream);
  color: var(--brown);
  padding: 12px 16px;
  border-radius: 12px;
  font-family: var(--font-serif);
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  line-height: 1;
  border: 1px solid var(--cream-deep);
}

.hero__badge span {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.hero__badge small {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--forest);
  margin-top: 4px;
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 110px;
  }
  .hero__visual {
    order: -1;
    max-width: 380px;
    margin: 0 auto;
  }
}

/* ============================ MARQUEE ============================ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 18px;
  padding-bottom: 18px;
  overflow: hidden;
  background: var(--cream-warm);
  padding-left: 0;
  padding-right: 0;
}

.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  will-change: transform;
}

.marquee__track span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  color: var(--brown);
  font-weight: 350;
}

.marquee__track span[aria-hidden] {
  color: var(--kraft);
  font-style: normal;
}

@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}

/* ============================ SECTIONS ============================ */
.section {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: clamp(80px, 12vh, 140px);
  padding-bottom: clamp(80px, 12vh, 140px);
}

.section--alt {
  max-width: none;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

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

.section__head {
  max-width: 820px;
  margin: 0 0 64px;
}

.section__index {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line-strong);
}

.h-display {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  font-weight: 350;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--brown);
  margin: 0 0 24px;
  font-variation-settings: "opsz" 96;
}

.h-display em {
  font-style: italic;
  color: var(--forest);
  font-weight: 400;
}

.section__intro {
  font-size: clamp(1rem, 1.2vw, 1.075rem);
  color: var(--brown-soft);
  max-width: 58ch;
  margin: 0;
  line-height: 1.7;
}

/* ============================ BENTO ============================ */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 16px;
}

.bento__item {
  background: var(--cream-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.4s var(--ease-out), border-color 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.bento__item:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}

.bento__item--feature {
  grid-column: span 3;
  grid-row: span 2;
  padding: 0;
  background: var(--brown);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  display: block;
}

.bento__item--feature .bento__media {
  position: absolute;
  inset: 0;
  flex: none;
  min-height: 0;
  z-index: 0;
}

.bento__item--feature .bento__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(86, 62, 50, 0) 60%,
    rgba(86, 62, 50, 0.85) 88%,
    rgba(86, 62, 50, 0.98) 100%
  );
  pointer-events: none;
}

.bento__item--feature .bento__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 28px 26px;
  z-index: 1;
}

.bento__item.bento__item--feature h3 {
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--cream);
  letter-spacing: -0.01em;
  text-shadow: 0 1px 8px rgba(42, 31, 24, 0.7);
}

.bento__item.bento__item--feature p {
  color: var(--cream);
  max-width: 42ch;
  margin: 0;
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(42, 31, 24, 0.7);
}

.bento__item--wide {
  grid-column: span 3;
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest-deep);
}

.bento__item:not(.bento__item--feature):not(.bento__item--wide) {
  grid-column: span 3;
}

.bento__media {
  flex: 1;
  overflow: hidden;
  min-height: 240px;
}

.bento__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.bento__item--feature:hover .bento__media img {
  transform: scale(1.04);
}

.bento__body {
  padding: 24px 28px 28px;
}

.bento__item h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 450;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--brown);
}

.bento__item p {
  margin: 0;
  color: var(--brown-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.bento__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(30, 99, 71, 0.1);
  color: var(--forest);
  display: grid;
  place-items: center;
}

.bento__icon svg {
  width: 22px;
  height: 22px;
}

.bento__quote {
  position: relative;
  padding: 8px 0;
  color: var(--cream);
}

.bento__quote .quote-mark {
  width: 28px;
  height: auto;
  color: rgba(246, 234, 216, 0.4);
  margin-bottom: 14px;
}

.bento__quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.4;
  font-weight: 350;
  color: var(--cream);
  margin: 0 0 18px;
}

.bento__quote footer {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246, 234, 216, 0.7);
  font-weight: 500;
}

@media (max-width: 900px) {
  .bento {
    grid-template-columns: 1fr 1fr;
  }
  .bento__item,
  .bento__item--feature,
  .bento__item--wide {
    grid-column: span 2;
  }
  .bento__item--feature {
    grid-row: auto;
  }
}

/* ============================ SPLIT (familia) ============================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.split__media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-strong);
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}

.split__media:hover img {
  transform: scale(1.03);
}

.split__media figcaption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(42, 31, 24, 0.55);
  backdrop-filter: blur(6px);
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 500;
}

.split__copy p {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: var(--brown-soft);
  line-height: 1.75;
  margin: 0 0 18px;
}

.split__copy strong {
  color: var(--brown);
  font-weight: 500;
}

.meta {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  border-top: 1px solid var(--line);
}

.meta li {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.meta__k {
  color: var(--forest);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
}

.meta__v {
  color: var(--brown);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
}

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

/* ============================ GALLERY ============================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}

.gallery__item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  grid-column: span 2;
  grid-row: span 1;
  background: var(--cream-deep);
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item--wide {
  grid-column: span 4;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.3s var(--ease);
  filter: saturate(0.95);
}

.gallery__item:hover img {
  transform: scale(1.04);
  filter: saturate(1.05);
}

@media (max-width: 820px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
  .gallery__item,
  .gallery__item--tall,
  .gallery__item--wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery__item--tall {
    grid-row: span 2;
  }
}

/* ============================ CONTACT ============================ */
.contact {
  text-align: center;
}

.contact__inner {
  max-width: 760px;
  margin: 0 auto;
}

.contact .section__index {
  display: inline-block;
}

.contact .section__intro {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}

.ig-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px 12px 14px;
  background: linear-gradient(
    135deg,
    #d4a373 0%,
    #b56576 55%,
    #6d597a 100%
  );
  color: var(--cream);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(109, 89, 122, 0.18);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    filter 0.3s var(--ease);
}

.ig-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(109, 89, 122, 0.26);
  filter: brightness(1.03);
}

.ig-cta__icon {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  flex-shrink: 0;
}

.ig-cta__icon svg {
  width: 17px;
  height: 17px;
}

.ig-cta__text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.ig-cta__label {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  margin-bottom: 3px;
}

.ig-cta__value {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-style: italic;
  font-weight: 500;
}

.ig-cta__arrow {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.ig-cta__arrow svg {
  width: 11px;
  height: 11px;
}

.ig-cta:hover .ig-cta__arrow {
  transform: translateX(3px);
}

.contact__alt {
  margin: 26px 0 0;
  font-size: 14px;
  color: var(--brown-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.contact__alt a {
  color: var(--brown);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 1px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.contact__alt a:hover {
  color: var(--forest);
  border-color: var(--forest);
}

.contact__copy {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--brown-soft);
  cursor: pointer;
  padding: 0;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease),
    background 0.2s var(--ease);
}

.contact__copy:hover {
  color: var(--forest);
  border-color: var(--forest);
  background: rgba(30, 99, 71, 0.06);
}

.contact__hint {
  margin-top: 18px;
  font-size: 12px;
  color: var(--brown-soft);
  letter-spacing: 0.04em;
  transition: opacity 0.3s var(--ease), color 0.3s var(--ease);
}

.contact__hint.is-copied {
  color: var(--forest);
}

/* ============================ FOOTER ============================ */
.footer {
  border-top: 1px solid var(--line);
  background: var(--cream-warm);
  padding-top: 48px;
  padding-bottom: 36px;
}

.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__word {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--brown);
  font-weight: 450;
}

.footer__tag {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 500;
}

.footer__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--brown-soft);
}

.footer__meta a {
  color: var(--brown);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 1px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
  width: max-content;
}

.footer__meta a:hover {
  color: var(--forest);
  border-color: var(--forest);
}

.footer__ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line-strong);
}

.footer__ig svg {
  flex-shrink: 0;
}

.footer__copy {
  font-size: 12px;
  color: var(--brown-soft);
  text-align: right;
  letter-spacing: 0.02em;
}

@media (max-width: 820px) {
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .footer__copy {
    text-align: left;
  }
}

/* ============================ REVEAL ANIMATION ============================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
