/* ============================================================
   E S S K A Y — front page sections
   ============================================================ */

/* ---------- hero ---------- */
.hero { padding: clamp(2.5rem, 6vw, 6rem) 0 var(--space-section); overflow: hidden; position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 { font-size: var(--text-hero); margin: 1.1rem 0 1.4rem; }
.hero h1 em { font-style: normal; color: var(--rose-400); position: relative; white-space: nowrap; }
.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.06em;
  height: 0.28em;
  background: var(--rose-100);
  z-index: -1;
}
.hero p.lede { max-width: 46ch; color: var(--ink-soft); font-size: 1.05rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero-facts { display: flex; gap: 2.5rem; margin-top: 3rem; flex-wrap: wrap; }
.hero-facts div strong { display: block; font-family: var(--font-display); font-size: 1.5rem; }
.hero-facts div span { font-size: 0.78rem; color: var(--ink-soft); letter-spacing: 0.05em; }

.hero-visual { position: relative; display: grid; justify-items: center; }
.hero-visual .arch-main {
  width: min(380px, 78vw);
  aspect-ratio: 4 / 5;
  border-radius: 999px 999px 24px 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 8px solid #fff;
  background: var(--rose-100);
  rotate: 1.5deg;
}
.hero-visual .arch-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 8% -6% -6% 10%;
  background: var(--rose-100);
  border-radius: 999px 999px 30px 30px;
  rotate: -3deg;
  z-index: -1;
}
.float-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-lift);
  padding: 0.6rem;
  width: 130px;
  animation: floaty 7s ease-in-out infinite;
}
.float-card img { width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; border-radius: 10px; }
.float-card span { display: block; font-size: 0.68rem; font-weight: 700; text-align: center; padding-top: 0.45rem; }
.float-a { left: -4%; top: 12%; rotate: -6deg; }
.float-b { right: -2%; bottom: 6%; rotate: 5deg; animation-delay: -3.5s; }
@media (max-width: 860px) {
  .float-a { left: 0; }
  .float-b { right: 0; }
}
@keyframes floaty {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}

.hero .eyebrow, .hero h1, .hero p.lede, .hero-ctas, .hero-facts, .hero-visual {
  animation: rise 900ms var(--ease-out) both;
}
.hero h1 { animation-delay: 90ms; }
.hero p.lede { animation-delay: 180ms; }
.hero-ctas { animation-delay: 270ms; }
.hero-facts { animation-delay: 360ms; }
.hero-visual { animation-delay: 200ms; }
@keyframes rise {
  from { opacity: 0; translate: 0 30px; }
  to { opacity: 1; translate: 0 0; }
}

/* ---------- section scaffolding ---------- */
.section { padding-top: var(--space-section); position: relative; z-index: 1; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2.6rem; }
.section-head h2 { font-size: var(--text-h2); margin-top: 0.5rem; }
.link-more {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-bottom: 1.5px solid var(--rose-400);
  padding: 0.6em 0.1em 0.3em;
  white-space: nowrap;
}
.link-more:hover { color: var(--rose-600); }

/* ---------- category arches ---------- */
.cat-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(168px, 1fr);
  gap: 1.4rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--rose-300) transparent;
}
.cat-tile { scroll-snap-align: start; text-align: center; }
.cat-tile .arch {
  aspect-ratio: 3 / 4;
  border-radius: 999px 999px 14px 14px;
  overflow: hidden;
  background: var(--rose-100);
  transition: box-shadow var(--duration) var(--ease-out), translate var(--duration) var(--ease-out);
}
.cat-tile:hover .arch { box-shadow: var(--shadow-lift); translate: 0 -6px; }
.cat-tile .arch img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease-out); }
.cat-tile:hover .arch img { transform: scale(1.07); }
.cat-tile h3 { font-family: var(--font-body); font-weight: 700; font-size: 0.9rem; margin-top: 0.9rem; letter-spacing: 0.04em; }
.cat-tile span { font-size: 0.72rem; color: var(--ink-soft); }

/* ---------- values strip ---------- */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
@media (max-width: 900px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .values { grid-template-columns: 1fr; } }
.value-card {
  background: var(--rose-50);
  border: 1px solid var(--rose-200);
  border-radius: var(--radius-card);
  padding: 1.8rem 1.5rem;
  transition: translate var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
}
.value-card:hover { translate: 0 -5px; box-shadow: var(--shadow-soft); }
.value-card .glyph {
  width: 46px; height: 46px;
  border-radius: 999px 999px 8px 8px;
  background: var(--rose-100);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
  color: var(--rose-600);
}
.value-card h3 { font-family: var(--font-body); font-weight: 700; font-size: 0.98rem; }
.value-card p { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.4rem; }

/* ---------- instagram band ---------- */
.insta-band { text-align: center; }
.insta-band h2 { font-size: var(--text-h2); margin: 0.6rem 0 0.8rem; }
.insta-band > .wrap > p { color: var(--ink-soft); max-width: 50ch; margin-inline: auto; }
.insta-strip {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.8rem;
}
@media (max-width: 820px) { .insta-strip { grid-template-columns: repeat(3, 1fr); } }
.insta-strip a { border-radius: 14px; overflow: hidden; aspect-ratio: 1; background: var(--rose-100); position: relative; display: block; }
.insta-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease-out); }
.insta-strip a:hover img { transform: scale(1.08); }
.insta-strip a::after {
  content: '\2661';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: #fff;
  background: rgba(176, 140, 142, 0.45);
  opacity: 0;
  transition: opacity var(--duration) var(--ease-out);
}
.insta-strip a:hover::after { opacity: 1; }
.insta-band .insta-btn { margin-top: 2.4rem; background: var(--rose-400); border-color: var(--rose-400); color: #fff; }
.insta-band .insta-btn:hover { background: var(--rose-600); border-color: var(--rose-600); }
