/* =========================================================
   ALICIA FOODS — Editorial Luxury Redesign
   Palette: warm ivory / near-black / burnt saffron / cardamom
   ========================================================= */

:root {
  /* Palette locked to the Alicia logo — dark forest green + leaf */
  --bg: #F5EFE6;
  --bg-2: #EBE3D5;
  --ink: #14361F;         /* logo dark green */
  --ink-2: #1E4A2C;
  --muted: #6B7A5A;
  --line: rgba(20, 54, 31, 0.14);
  --accent: #2D7A3E;      /* leaf green */
  --accent-2: #14361F;
  --gold: #B8A268;        /* muted olive-gold */

  /* Single font family — Fraunces everywhere; weights + tracking do the work */
  --serif: "Fraunces", Georgia, serif;
  --sans:  "Fraunces", Georgia, serif;
  --mono:  "Fraunces", Georgia, serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --pad: clamp(24px, 5vw, 96px);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}

/* All small caps / label uses of --mono now render as tracked-out Fraunces small caps */
.eyebrow, .hero__eyebrow, .hero__meta, .hero__side, .hero__scroll,
.loader__caption, .nav__menu, .nav__cta, .pillar__num, .product__label,
.product__title small, .stat__label, .step__num, .strip__attr,
.contact__info dt, .form__field label, .form__submit,
.footer__col h4, .footer__meta {
  font-variant: small-caps;
  font-weight: 500;
  font-feature-settings: "smcp", "cpsp", "ss01";
}

@media (pointer: coarse) {
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none !important; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: none; border: none; background: none; color: inherit; }
@media (pointer: coarse) { button { cursor: pointer; } }

/* ========== GRAIN OVERLAY ========== */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.08;
  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.1 0 0 0 0 0.08 0 0 0 0 0.06 0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ========== CURSOR ========== */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  transition: width .3s var(--ease), height .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
  mix-blend-mode: difference;
  border-color: #fff;
}
.cursor.hover {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.1);
}
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 4px; height: 4px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10001;
  mix-blend-mode: difference;
}

/* ========== LOADER ========== */
.loader {
  position: fixed; inset: 0;
  background: var(--ink);
  color: var(--bg);
  z-index: 9999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 24px;
  transition: opacity .8s var(--ease), visibility .8s var(--ease);
}
.loader.done { opacity: 0; visibility: hidden; }
.loader__logo {
  width: clamp(180px, 24vw, 280px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transform-origin: center center;
  animation: logoGrow 1.6s cubic-bezier(0.16, 1, 0.3, 1) .1s forwards;
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}
.loader__logo img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  display: block;
  filter: none;
}
@keyframes logoGrow {
  0%   { opacity: 0; transform: scale(0); }
  15%  { opacity: 1; }
  85%  { opacity: 1; transform: scale(1.03); }
  100% { opacity: 1; transform: scale(1); }
}

.loader__mark {
  font-family: var(--serif);
  font-size: clamp(56px, 10vw, 120px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.03em;
  overflow: hidden;
}
.loader__mark span {
  display: inline-block;
  transform: translateY(100%);
  animation: rise 1s var(--ease) forwards;
}
.loader__mark span:nth-child(2) { animation-delay: .1s; }
.loader__mark span:nth-child(3) { animation-delay: .2s; }
.loader__mark span:nth-child(4) { animation-delay: .3s; }
.loader__mark span:nth-child(5) { animation-delay: .4s; }
.loader__mark span:nth-child(6) { animation-delay: .5s; }
@keyframes rise { to { transform: translateY(0); } }
.loader__bar {
  width: 220px; height: 1px;
  background: rgba(245, 239, 230, 0.2);
  position: relative;
  overflow: hidden;
}
.loader__bar::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--bg);
  transform-origin: left;
  animation: fill 2.1s cubic-bezier(0.4, 0, 0.6, 1) forwards;
  animation-delay: .2s;
}
@keyframes fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.loader__caption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInCaption .7s var(--ease) 1s forwards;
}
@keyframes fadeInCaption {
  to { opacity: 0.6; }
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), padding .4s var(--ease);
  color: #fff;
}
.nav.scrolled {
  color: var(--ink);
  background: rgba(245, 239, 230, 0.85);
  backdrop-filter: blur(20px);
  padding: 14px var(--pad);
  border-bottom: 1px solid var(--line);
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  height: 72px;
  width: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg);
  transition: transform .4s var(--ease);
}
.nav__logo img {
  /* Original logo file — fit entirely inside the circle, nothing cropped */
  height: 78%;
  width: 78%;
  object-fit: contain;
  display: block;
  background: transparent;
  padding: 0;
  filter: none;
}
.nav__logo:hover { transform: scale(1.04); }
.nav__menu {
  display: flex;
  gap: 44px;
  list-style: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.nav__menu a {
  position: relative;
  padding: 4px 0;
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav__menu a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta {
  padding: 12px 26px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.nav__cta:hover {
  background: currentColor;
}
.nav__cta:hover span { color: var(--bg); }
.nav.scrolled .nav__cta:hover span { color: var(--bg); }

@media (max-width: 780px) {
  .nav__menu { display: none; }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 0 var(--pad);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s var(--ease-in-out) infinite alternate;
}
@keyframes heroZoom { to { transform: scale(1.15); } }
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(26,20,16,0.35) 0%, rgba(26,20,16,0.15) 40%, rgba(26,20,16,0.75) 100%),
    linear-gradient(90deg, rgba(26,20,16,0.55) 0%, transparent 60%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding-bottom: 120px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
}
.hero__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.9;
}
.hero__eyebrow::before {
  content: "";
  width: 32px; height: 1px;
  background: currentColor;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(52px, 9vw, 156px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 40px;
  color: #F5EFE6; /* fallback if gradient fails */
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
}
/* Only the italic "world's" gets the moving gradient sheen.
   Rest of the headline stays solid cream (#F5EFE6). */
.hero__title .mask > span em {
  background: linear-gradient(90deg,
    #F5EFE6 0%,
    #F5EFE6 20%,
    #2D7A3E 40%,
    #B8A268 50%,
    #2D7A3E 60%,
    #F5EFE6 80%,
    #F5EFE6 100%
  );
  background-size: 300% 100%;
  background-position: 100% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: heroSheen 5s linear infinite;
}
@keyframes heroSheen {
  0%   { background-position: 200% 50%; }
  100% { background-position: -100% 50%; }
}
.hero__title .mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.12em; /* room for descenders inside the clip */
}
.hero__title .mask > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0s);
}
.loaded .hero__title .mask > span { transform: translateY(0); }

.hero__meta {
  display: flex;
  gap: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
}
.hero__meta div span {
  display: block;
  opacity: 0.6;
  margin-bottom: 4px;
}
.hero__side {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.7;
}
.hero__scroll {
  position: absolute;
  right: var(--pad);
  bottom: 40px;
  z-index: 3;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.8;
}
.hero__scroll::after {
  content: "";
  width: 40px; height: 1px;
  background: currentColor;
  animation: scrollLine 2s var(--ease-in-out) infinite;
  transform-origin: left;
}
@keyframes scrollLine { 0%,100% { transform: scaleX(0.4); } 50% { transform: scaleX(1); } }

/* ========== MARQUEE ========== */
.marquee {
  background: var(--ink);
  color: var(--bg);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.marquee__track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll 44s linear infinite;
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 34px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.01em;
}
.marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.marquee__track span::after {
  content: "✦";
  color: var(--accent);
  font-style: normal;
  font-size: 0.6em;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========== SECTION BASE ========== */
section {
  padding: clamp(80px, 12vw, 180px) var(--pad);
  position: relative;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: currentColor;
}

/* ========== SCROLL PROGRESS BAR ========== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  z-index: 200;
  will-change: transform;
  transition: transform .1s linear;
}

/* ========== CURSOR "VIEW" STATE (over products) ========== */
.cursor.cursor-view {
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.9);
}
.cursor.cursor-view::after {
  content: "View";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--serif);
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.1em;
  font-variant: small-caps;
  font-feature-settings: "smcp";
}

/* ========== PRODUCT CARD 3D TILT — smoothing ========== */
.product {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1);
}
.product__img {
  transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* ========== HERO PARALLAX — smoothing ========== */
.hero__bg img {
  will-change: transform;
}
.hero__title {
  will-change: transform, opacity;
  transition: opacity .3s ease-out;
}

/* Hero title char-reveal removed — mask-based reveal on .mask > span handles it, works with gradient text fill */

.h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.h2 em { font-style: italic; color: var(--accent); }

/* ========== ABOUT ========== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 120px);
  align-items: start;
}
.about__label {
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-weight: 500;
  position: sticky;
  top: 100px;
}
.about__body p {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.35;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  text-wrap: pretty;
}
.about__body p em {
  font-style: italic;
  color: var(--accent);
}
.about__body p:last-child {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
}
@media (max-width: 780px) {
  .about { grid-template-columns: 1fr; }
  .about__label { position: static; }
}

/* ========== PILLARS ========== */
.pillars {
  background: var(--ink);
  color: var(--bg);
}
.pillars .eyebrow { color: var(--gold); }
.pillars .h2 em { color: var(--gold); }
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid rgba(245,239,230,0.15);
}
.pillar {
  padding: 40px 32px 40px 0;
  border-right: 1px solid rgba(245,239,230,0.15);
  position: relative;
  overflow: hidden;
  transition: background .5s var(--ease);
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(245,239,230,0.03); }
.pillar__num {
  font-family: var(--mono);
  font-size: 13px;
  opacity: 0.55;
  margin-bottom: 60px;
  letter-spacing: 0.22em;
  font-weight: 500;
}
.pillar__title {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  transition: transform .5s var(--ease);
}
.pillar:hover .pillar__title { transform: translateX(8px); color: var(--gold); }
.pillar__body {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(245, 239, 230, 0.72);
}
@media (max-width: 980px) {
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .pillar:nth-child(2) { border-right: none; }
  .pillar { border-bottom: 1px solid rgba(245,239,230,0.15); }
}
@media (max-width: 560px) {
  .pillars__grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; }
}

/* ========== PRODUCTS ========== */
.products__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.products__lede {
  max-width: 380px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-2);
  border-radius: 4px;
  cursor: none;
  transition: transform .6s var(--ease);
}
.product:hover { transform: translateY(-6px); }

@media (max-width: 900px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .products__grid { grid-template-columns: 1fr; }
}

.product__img {
  position: absolute; inset: 0;
  overflow: hidden;
}
.product__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter .6s var(--ease);
  filter: brightness(0.85) saturate(1.05);
}
.product:hover .product__img img {
  transform: scale(1.08);
  filter: brightness(0.7) saturate(1.15);
}
.product__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,20,16,0.75) 100%);
}
.product__label {
  position: absolute;
  top: 24px; left: 24px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
.product__label::before {
  content: attr(data-num) " ";
  color: var(--gold);
  margin-right: 8px;
}
.product__title {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}
.product__title small {
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 400;
  padding-bottom: 8px;
}
.product__arrow {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background .4s var(--ease), transform .4s var(--ease), border-color .4s var(--ease);
}
.product:hover .product__arrow {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(-45deg);
}

@media (max-width: 900px) {
  .product:nth-child(n) { grid-column: span 12; aspect-ratio: 4/3; }
}

/* ========== GLOBAL REACH ========== */
.reach {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.reach__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
  margin-top: 40px;
}
.reach__map {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  padding: 30px;
}
.reach__map svg {
  width: 100%; height: 100%;
}
.reach__map .dot {
  fill: var(--accent);
  animation: pulse 2.5s var(--ease-in-out) infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.reach__map .dot:nth-child(2n) { animation-delay: .5s; }
.reach__map .dot:nth-child(3n) { animation-delay: 1s; }
.reach__map .dot:nth-child(4n) { animation-delay: 1.5s; }
@keyframes pulse {
  0%, 100% { r: 3; opacity: 1; }
  50% { r: 6; opacity: 0.4; }
}
.reach__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 32px;
}
.stat {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.stat__num {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat__num sup {
  font-size: 0.35em;
  color: var(--accent);
  font-weight: 500;
  top: -1.4em;
}
.stat__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}
@media (max-width: 900px) {
  .reach__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ========== PROCESS ========== */
.process {
  background: var(--ink);
  color: var(--bg);
}
.process .eyebrow { color: var(--gold); }
.process .h2 em { color: var(--gold); }
.process__list {
  margin-top: 60px;
  border-top: 1px solid rgba(245,239,230,0.15);
}
.step {
  display: grid;
  grid-template-columns: 100px 1fr 2fr 100px;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(245,239,230,0.15);
  align-items: center;
  transition: padding .5s var(--ease), background .5s var(--ease);
  cursor: none;
}
.step:hover {
  padding: 60px 20px;
  background: rgba(245,239,230,0.02);
}
.step__num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 500;
}
.step__title {
  font-family: var(--serif);
  font-size: clamp(34px, 4.2vw, 60px);
  font-weight: 300;
  letter-spacing: -0.02em;
  transition: transform .5s var(--ease), color .5s var(--ease);
}
.step:hover .step__title {
  transform: translateX(12px);
  color: var(--gold);
}
.step__body {
  color: rgba(245,239,230,0.72);
  font-size: 17px;
  line-height: 1.6;
  max-width: 520px;
}
.step__arrow {
  justify-self: end;
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  opacity: 0.4;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.step:hover .step__arrow { opacity: 1; transform: translateX(12px); color: var(--gold); }
@media (max-width: 800px) {
  .step { grid-template-columns: 60px 1fr; gap: 20px; }
  .step__body, .step__arrow { grid-column: 1 / -1; }
  .step__arrow { justify-self: start; }
}

/* ========== FEATURE STRIP ========== */
.strip {
  padding: 0;
  height: 60vh;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.strip img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.strip::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(26,20,16,0.55);
  z-index: 1;
}
.strip__quote {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 var(--pad);
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.strip__quote::before, .strip__quote::after {
  color: var(--gold);
  font-style: normal;
  display: inline-block;
  margin: 0 8px;
}
.strip__quote::before { content: "❝"; }
.strip__quote::after { content: "❞"; }
.strip__attr {
  position: relative;
  z-index: 2;
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ========== CONTACT ========== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 40px;
}
.contact__info h3 {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 40px;
}
.contact__info h3 em { font-style: italic; color: var(--accent); }
.contact__info dl {
  border-top: 1px solid var(--line);
}
.contact__info dt {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 24px;
  font-weight: 500;
}
.contact__info dd {
  padding: 8px 0 24px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
}
.contact__info dd a { transition: color .3s var(--ease); }
.contact__info dd a:hover { color: var(--accent); }

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
}
.form__field { position: relative; }
.form__field.full { grid-column: 1 / -1; }
.form__field label {
  position: absolute;
  top: 16px; left: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: transform .3s var(--ease), color .3s var(--ease);
  pointer-events: none;
}
.form__field input,
.form__field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 16px 0 12px;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  outline: none;
  transition: border-color .3s var(--ease);
  border-radius: 0;
}
.form__field textarea {
  resize: none;
  min-height: 120px;
}
.form__field input:focus,
.form__field textarea:focus {
  border-color: var(--accent);
}
.form__field input:focus + label,
.form__field textarea:focus + label,
.form__field input:not(:placeholder-shown) + label,
.form__field textarea:not(:placeholder-shown) + label {
  transform: translateY(-24px) scale(0.85);
  transform-origin: left;
  color: var(--accent);
}
.form__submit {
  grid-column: 1 / -1;
  margin-top: 24px;
  padding: 20px 40px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background .3s var(--ease), transform .3s var(--ease), padding .3s var(--ease);
  overflow: hidden;
  position: relative;
}
.form__submit:hover {
  background: var(--accent);
  padding-right: 56px;
}
.form__submit::after {
  content: "→";
  position: absolute;
  right: 24px;
  transform: translateX(20px);
  opacity: 0;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.form__submit:hover::after {
  transform: translateX(0);
  opacity: 1;
}

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .form { grid-template-columns: 1fr; }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 100px var(--pad) 40px;
}
.footer__top {
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245,239,230,0.15);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.footer__logo {
  width: clamp(120px, 16vw, 180px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .6s var(--ease);
}
.footer__logo img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  display: block;
}
.footer__logo:hover { transform: scale(1.03); }
.footer__bottom {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  font-size: 13px;
}
.footer__col h4 {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 8px; }
.footer__col a { opacity: 0.7; transition: opacity .3s var(--ease); }
.footer__col a:hover { opacity: 1; color: var(--gold); }
.footer__brand p {
  color: rgba(245,239,230,0.65);
  font-size: 15px;
  line-height: 1.65;
  max-width: 340px;
}
.footer__meta {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(245,239,230,0.15);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.5);
  flex-wrap: wrap;
}
@media (max-width: 780px) {
  .footer__bottom { grid-template-columns: 1fr 1fr; }
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ========== SELECTION ========== */
::selection { background: var(--accent); color: var(--bg); }
