/* =========================================================
   MARBLE — a personal website stylesheet
   Palette: warm ivory · deep vein · soft gold · shadow
   Type:    Cormorant Garamond (display) + Inter (body)
   ========================================================= */

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

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

body {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ---------- TOKENS ---------- */
:root {
  --ivory:      #f5f1ea;
  --ivory-2:    #ece6da;
  --stone:      #d9d1c1;
  --stone-2:    #bdb3a0;
  --vein:       #8b7e66;
  --ink:        #1e1c17;
  --ink-soft:   #3a362e;
  --muted:      #77705f;
  --gold:       #a8894a;
  --gold-soft:  #c9a86a;
  --shadow-lg:  0 30px 60px -20px rgba(30, 28, 23, 0.25),
                0 10px 20px -10px rgba(30, 28, 23, 0.15);
  --shadow-md:  0 12px 30px -12px rgba(30, 28, 23, 0.25);
  --radius:     4px;

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Inter", system-ui, sans-serif;

  --gutter: clamp(1.5rem, 4vw, 4rem);
  --max:    1280px;
}

/* ---------- MARBLE BACKGROUNDS ---------- */
body {
  background:
    radial-gradient(1200px 800px at 10% 0%, #ffffff 0%, transparent 60%),
    radial-gradient(1000px 700px at 90% 20%, #efe9dd 0%, transparent 55%),
    radial-gradient(800px 600px at 50% 100%, #e2d9c6 0%, transparent 60%),
    linear-gradient(180deg, #f7f3ec 0%, #ede6d7 100%);
  background-attachment: fixed;
}

.marble-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='1200' height='1200'>\
<defs>\
<filter id='n'>\
<feTurbulence type='fractalNoise' baseFrequency='0.008 0.02' numOctaves='4' seed='7'/>\
<feColorMatrix values='0 0 0 0 0.55  0 0 0 0 0.5  0 0 0 0 0.4  0 0 0 0.6 0'/>\
</filter>\
</defs>\
<rect width='100%' height='100%' filter='url(%23n)' opacity='0.9'/>\
</svg>");
  background-size: 1200px 1200px;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'>\
<filter id='g'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='3'/></filter>\
<rect width='100%' height='100%' filter='url(%23g)'/>\
</svg>");
}

body > *:not(.marble-overlay):not(.grain) {
  position: relative;
  z-index: 2;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.05;
}

em {
  font-style: italic;
  color: var(--vein);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.lead {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  line-height: 1.4;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

/* ---------- LAYOUT ---------- */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
}

.section__head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  max-width: 900px;
}

.section__title {
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: rgba(245, 241, 234, 0.72);
  border-bottom: 1px solid rgba(139, 126, 102, 0.15);
}

.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav__logo-mark {
  color: var(--gold);
  font-size: 1.15rem;
  transition: transform 0.6s ease;
}
.nav__logo:hover .nav__logo-mark { transform: rotate(180deg); }

.nav__links {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
}

.nav__links a {
  position: relative;
  color: var(--ink-soft);
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 0.35s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 0 var(--gutter) 1.5rem;
  gap: 1rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  border-bottom: 1px solid rgba(139, 126, 102, 0.15);
}
.nav__mobile.is-open { display: flex; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  padding: clamp(4rem, 10vw, 8rem) var(--gutter) clamp(3rem, 6vw, 5rem);
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero__marble {
  position: absolute;
  right: -10%;
  top: 10%;
  width: 65%;
  height: 80%;
  z-index: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(200,186,158,0.5), transparent 60%),
    linear-gradient(135deg, #eee5d1 0%, #d8ccb0 100%);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: float 18s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-30px, 20px) scale(1.05); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 1.5rem 0 2rem;
}

.hero__line {
  display: block;
}
.hero__line--italic {
  font-style: italic;
  color: var(--vein);
  padding-left: clamp(1rem, 6vw, 5rem);
}

.hero__sub {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  max-width: 640px;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
}
.hero__sub strong {
  font-weight: 500;
  color: var(--ink);
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--ink);
  color: var(--ivory);
}
.btn--primary:hover {
  background: var(--vein);
  transform: translateY(-2px);
}
.btn--ghost {
  border-color: rgba(30, 28, 23, 0.25);
  color: var(--ink);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: rgba(30, 28, 23, 0.05);
  transform: translateY(-2px);
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(139, 126, 102, 0.25);
  max-width: 700px;
}
.hero__meta div {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.hero__meta span {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__meta strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--ink);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: var(--gutter);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  writing-mode: vertical-rl;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--muted), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background: var(--ink);
  animation: drip 2.4s ease-in-out infinite;
}
@keyframes drip {
  0%   { transform: translateY(0); }
  100% { transform: translateY(90px); }
}

/* ---------- MARQUEE ---------- */
.marquee {
  overflow: hidden;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(139, 126, 102, 0.2);
  border-bottom: 1px solid rgba(139, 126, 102, 0.2);
  background: rgba(255, 255, 255, 0.35);
}
.marquee__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 40s linear infinite;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  font-style: italic;
  color: var(--vein);
  white-space: nowrap;
}
.marquee__track span:nth-child(even) {
  color: var(--gold);
  font-style: normal;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- ABOUT ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.about__portrait-frame {
  aspect-ratio: 4 / 5;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.9), rgba(217,209,193,0.6)),
    var(--ivory-2);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  position: relative;
}
.about__portrait-frame::before {
  content: "";
  position: absolute;
  inset: 0.5rem;
  border: 1px solid rgba(139, 126, 102, 0.3);
  pointer-events: none;
}
.about__portrait-inner {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 40% 30%, rgba(255,255,255,0.9), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(139,126,102,0.35), transparent 60%),
    linear-gradient(135deg, #e8dfc8 0%, #b3a68a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(30,28,23,0.4);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
}
.about__caption {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
}

.about__body p {
  margin-bottom: 1.25rem;
  color: var(--ink-soft);
  max-width: 55ch;
}

.about__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(139, 126, 102, 0.25);
}
.about__facts > div {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.about__fact-num {
  font-family: var(--serif);
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.about__fact-label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- WORK ---------- */
.work__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(139, 126, 102, 0.25);
}

.work__item {
  display: grid;
  grid-template-columns: 60px 1fr 200px;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(139, 126, 102, 0.25);
  transition: padding 0.4s ease, background 0.4s ease;
  cursor: pointer;
  position: relative;
}
.work__item:hover {
  padding-left: 1rem;
  padding-right: 1rem;
  background: rgba(255,255,255,0.4);
}
.work__num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
}
.work__year {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.work__title {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 500;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}
.work__item:hover .work__title { color: var(--vein); }
.work__desc {
  color: var(--ink-soft);
  max-width: 55ch;
  margin-bottom: 0.75rem;
}
.work__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.work__tags li {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(139, 126, 102, 0.35);
  border-radius: 999px;
}

.work__thumb {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease;
}
.work__item:hover .work__thumb { transform: scale(1.05); }

.work__thumb--a {
  background:
    radial-gradient(circle at 30% 30%, #fff, transparent 55%),
    linear-gradient(135deg, #ded3ba 0%, #8b7e66 100%);
}
.work__thumb--b {
  background:
    radial-gradient(circle at 70% 40%, #fff, transparent 60%),
    linear-gradient(135deg, #e8dfc8 0%, #a89a7b 100%);
}
.work__thumb--c {
  background:
    radial-gradient(circle at 40% 70%, #fff, transparent 55%),
    linear-gradient(135deg, #d1c6ae 0%, #766b52 100%);
}
.work__thumb--d {
  background:
    radial-gradient(circle at 60% 30%, #fff, transparent 55%),
    linear-gradient(135deg, #f0e7d1 0%, #b39d76 100%);
}
.work__thumb--e {
  background:
    radial-gradient(circle at 50% 50%, #fff, transparent 60%),
    linear-gradient(135deg, #cec2a3 0%, #5a5140 100%);
}

/* ---------- PROCESS ---------- */
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.process__card {
  padding: 2.25rem 1.75rem;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(139, 126, 102, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}
.process__card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.8);
  box-shadow: var(--shadow-md);
}
.process__num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.process__card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.process__card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* ---------- WRITING ---------- */
.writing__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(139, 126, 102, 0.25);
}
.writing__item {
  display: grid;
  grid-template-columns: 140px 1fr 40px;
  gap: 2rem;
  align-items: baseline;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(139, 126, 102, 0.25);
  transition: padding 0.35s ease, background 0.35s ease;
}
.writing__item:hover {
  padding-left: 1rem;
  padding-right: 1rem;
  background: rgba(255,255,255,0.4);
}
.writing__date {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.writing__title {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  transition: color 0.3s ease;
}
.writing__item:hover .writing__title { color: var(--vein); }
.writing__excerpt {
  grid-column: 2;
  color: var(--ink-soft);
  margin-top: 0.5rem;
  max-width: 60ch;
  font-size: 0.95rem;
}
.writing__arrow {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}
.writing__item:hover .writing__arrow { transform: translateX(6px); }

/* ---------- QUOTE ---------- */
.quote {
  position: relative;
  padding: clamp(5rem, 12vw, 10rem) var(--gutter);
  text-align: center;
  overflow: hidden;
}
.quote__marble {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.9), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(139,126,102,0.4), transparent 60%),
    linear-gradient(135deg, #e8dfc8 0%, #b3a68a 100%);
  opacity: 0.4;
}
.quote blockquote {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.quote blockquote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.quote cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- CONTACT ---------- */
.contact {
  text-align: center;
}
.contact__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: center;
}
.contact__title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 0.5rem;
}
.contact__sub {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 55ch;
}
.contact__email {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  color: var(--gold);
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.contact__email:hover {
  color: var(--vein);
  border-color: var(--vein);
}
.contact__socials {
  display: flex;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.contact__socials a {
  transition: color 0.2s ease;
}
.contact__socials a:hover { color: var(--ink); }

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid rgba(139, 126, 102, 0.25);
  background: rgba(30, 28, 23, 0.03);
  padding: 4rem var(--gutter) 2rem;
  margin-top: 4rem;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(139, 126, 102, 0.2);
}
.footer__logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.footer__note {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 30ch;
}
.footer__label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.footer__col ul a {
  transition: color 0.2s ease;
}
.footer__col ul a:hover { color: var(--gold); }
.footer__base {
  max-width: var(--max);
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
}
.footer__base a:hover { color: var(--ink); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .hero__meta { grid-template-columns: 1fr; gap: 1.25rem; }
  .hero__scroll { display: none; }
  .about__grid { grid-template-columns: 1fr; }
  .about__portrait { max-width: 360px; }
  .work__item {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
  }
  .work__thumb {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .writing__item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .writing__excerpt { grid-column: 1; }
  .writing__arrow { display: none; }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer__base {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .about__facts { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__title { font-size: 3rem; }
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- SELECTION ---------- */
::selection {
  background: var(--gold);
  color: var(--ivory);
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--ivory-2);
}
::-webkit-scrollbar-thumb {
  background: var(--stone-2);
  border-radius: 999px;
  border: 2px solid var(--ivory-2);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--vein);
}
