/* ==========================================================================
   Furdi.site — Soft Energy
   Pure HTML5 + CSS3
   ========================================================================== */

:root {
  --bg-ivory: #F7F3EC;
  --bg-sand: #EDE5D8;
  --accent-terracotta: #E85D3F;
  --accent-apricot: #F29A4A;
  --accent-gold: #F4C98A;
  --accent-rose: #D9B7A2;
  --espresso: #24221F;
  --text-main: #24221F;
  --text-muted: #77716A;

  --furdi-sunset: linear-gradient(135deg, #E85D3F 0%, #F29A4A 52%, #F4C98A 100%);
  --furdi-atmosphere: radial-gradient(
    circle at 70% 30%,
    rgba(242, 154, 74, 0.30) 0%,
    rgba(232, 93, 63, 0.08) 38%,
    transparent 70%
  );

  --border: 1px solid rgba(36, 34, 31, 0.12);
  --border-accent: rgba(232, 93, 63, 0.55);

  --radius-btn: 12px;
  --radius-panel: 18px;
  --radius-large: 28px;

  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-secondary: "Manrope", sans-serif;
  --font-body: "Inter", sans-serif;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 128px;

  --container: 1200px;
  --nav-h: 72px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 12px 32px rgba(36, 34, 31, 0.12);
}

/* Reset ------------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-main);
  background: var(--bg-ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

em {
  font-style: normal;
}

:focus-visible {
  outline: 2px solid var(--accent-terracotta);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-2);
  z-index: 1000;
  padding: var(--space-1) var(--space-2);
  background: var(--espresso);
  color: var(--bg-ivory);
  border-radius: var(--radius-btn);
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
}

.skip-link:focus {
  top: var(--space-2);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.label {
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.gradient-text {
  background: var(--furdi-sunset);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    color 0.35s var(--ease),
    background-position 0.45s var(--ease);
}

.btn--primary {
  background-image: var(--furdi-sunset);
  background-size: 140% 140%;
  background-position: 0% 50%;
  color: var(--espresso);
  border: 1px solid transparent;
}

.btn--primary:hover {
  transform: translateY(-2px);
  background-position: 100% 50%;
  box-shadow: var(--shadow-soft);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background: transparent;
  color: var(--espresso);
  border: 1px solid var(--espresso);
}

.btn--secondary:hover {
  border-color: var(--accent-terracotta);
  color: var(--accent-terracotta);
}

/* Section heads ----------------------------------------------------------- */

.section-head {
  margin-bottom: var(--space-5);
}

.section-head__title {
  margin-top: var(--space-2);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

/* 1. Navigation ----------------------------------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: var(--border);
}

.nav__inner {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
  min-height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-2);
}

.nav__brand {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  justify-self: start;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  transition: color 0.3s var(--ease);
}

.nav__brand-main {
  font-size: 1.25rem;
}

.nav__brand-dot {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.nav__brand:hover {
  color: var(--accent-terracotta);
}

.nav__field {
  justify-self: center;
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.nav__discover {
  justify-self: end;
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s var(--ease);
}

.nav__discover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent-terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav__discover:hover {
  color: var(--accent-terracotta);
}

.nav__discover:hover::after {
  transform: scaleX(1);
}

.nav__mobile {
  display: none;
  align-items: center;
  gap: var(--space-3);
  justify-self: end;
}

.nav__mobile-field {
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.nav__menu {
  position: relative;
}

.nav__menu-toggle {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--espresso);
  transition: color 0.3s var(--ease);
}

.nav__menu-toggle::-webkit-details-marker {
  display: none;
}

.nav__menu-toggle:hover {
  color: var(--accent-terracotta);
}

.nav__menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 16px);
  min-width: 200px;
  padding: var(--space-2);
  background: var(--bg-ivory);
  border: var(--border);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 4px;
}

.nav__menu-panel a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.nav__menu-panel a:hover {
  background: var(--bg-sand);
  color: var(--accent-terracotta);
}

/* 2. Hero ----------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  padding: var(--space-7) 0 var(--space-6);
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 72% 45%,
    rgba(242, 154, 74, 0.20),
    transparent 50%
  );
  pointer-events: none;
}

.hero__grid {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: var(--space-6);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content .label {
  margin-bottom: var(--space-3);
  animation: fade-up 0.9s var(--ease) both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9.5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.hero__title span {
  display: block;
  animation: fade-up 0.95s var(--ease) both;
}

.hero__title span:nth-child(1) { animation-delay: 0.05s; }
.hero__title span:nth-child(2) { animation-delay: 0.12s; }
.hero__title span:nth-child(3) { animation-delay: 0.2s; }

.hero__lead {
  max-width: 420px;
  margin-top: var(--space-4);
  color: var(--text-muted);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.7;
  animation: fade-up 1s var(--ease) 0.28s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-5);
  animation: fade-up 1s var(--ease) 0.36s both;
}

.hero__art {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  animation: fade-up 1.1s var(--ease) 0.2s both;
}

.hero__watermark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 11rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  color: rgba(36, 34, 31, 0.04);
  pointer-events: none;
  user-select: none;
}

/* Furdi Organic Form */
.sculpture {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
  animation: sculpture-float 8s ease-in-out infinite;
}

.sculpture__circle {
  position: absolute;
  inset: 12% 18% 22% 14%;
  background: var(--accent-terracotta);
  border-radius: 58% 42% 48% 52% / 52% 46% 54% 48%;
  box-shadow: 0 24px 60px rgba(232, 93, 63, 0.22);
}

.sculpture__curve {
  position: absolute;
  width: 58%;
  height: 46%;
  right: 6%;
  bottom: 18%;
  background: var(--accent-apricot);
  border-radius: 70% 30% 60% 40% / 40% 60% 40% 60%;
  clip-path: polygon(12% 0%, 100% 18%, 88% 100%, 0% 72%);
  transform: rotate(18deg) scale(1.05);
  opacity: 0.95;
}

.sculpture__ring {
  position: absolute;
  inset: 6% 10% 10% 6%;
  border: 18px solid rgba(247, 243, 236, 0.72);
  border-radius: 50%;
  transform: rotate(-12deg);
  animation: sculpture-rotate 22s linear infinite;
}

.sculpture__line {
  position: absolute;
  width: 72%;
  height: 1px;
  left: 14%;
  top: 54%;
  background: var(--espresso);
  transform: rotate(-28deg);
  opacity: 0.75;
}

.hero__micro {
  position: absolute;
  left: 0;
  bottom: 8%;
  display: grid;
  gap: 8px;
}

.hero__micro li {
  font-family: var(--font-secondary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.hero__scroll {
  position: absolute;
  right: max(24px, calc((100% - var(--container)) / 2));
  bottom: var(--space-4);
  z-index: 2;
  font-family: var(--font-secondary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  transition: color 0.3s var(--ease);
}

.hero__scroll:hover {
  color: var(--accent-terracotta);
}

/* 3. Statement ------------------------------------------------------------ */

.statement {
  background: var(--bg-sand);
  padding: var(--space-8) 0;
}

.statement__inner {
  max-width: 820px;
}

.statement__title {
  margin-top: var(--space-3);
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.statement__title span {
  display: block;
}

.statement__rule {
  width: 72px;
  height: 2px;
  margin: var(--space-5) 0;
  background: var(--accent-terracotta);
}

.statement__text {
  max-width: 620px;
  color: var(--text-muted);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.75;
}

/* 4. Core Values ---------------------------------------------------------- */

.values {
  padding: var(--space-7) 0;
  background: var(--bg-ivory);
}

.value-row {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: var(--space-3);
  align-items: center;
  padding: var(--space-4) var(--space-3);
  border-top: var(--border);
  transition:
    background 0.35s var(--ease),
    padding-left 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.value-row:last-child {
  border-bottom: var(--border);
}

.value-row::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent-terracotta);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease);
}

.value-row:hover {
  background: rgba(237, 229, 216, 0.55);
  padding-left: calc(var(--space-3) + 8px);
}

.value-row:hover::after {
  transform: scaleY(1);
}

.value-row__num {
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.value-row__title {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  transition: transform 0.35s var(--ease), color 0.35s var(--ease);
}

.value-row:hover .value-row__title {
  transform: translateX(6px);
  color: var(--accent-terracotta);
}

.value-row__desc {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 16px;
}

.value-row__arrow {
  font-size: 1.5rem;
  transition: transform 0.35s var(--ease), color 0.35s var(--ease);
}

.value-row:hover .value-row__arrow {
  transform: translateX(8px);
  color: var(--accent-terracotta);
}

/* 5. Featured Experiences ------------------------------------------------- */

.experiences {
  padding: var(--space-8) 0;
  background:
    var(--furdi-atmosphere),
    var(--bg-ivory);
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.exp-panel {
  display: flex;
  flex-direction: column;
  padding: var(--space-3);
  background: var(--bg-ivory);
  border: var(--border);
  border-radius: var(--radius-panel);
  transition:
    border-color 0.35s var(--ease),
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.exp-panel:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(36, 34, 31, 0.06);
}

.exp-panel__visual {
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-large);
  margin-bottom: var(--space-3);
  position: relative;
  overflow: hidden;
}

.exp-panel__visual--01 {
  background:
    radial-gradient(circle at 30% 40%, var(--accent-terracotta) 0 28%, transparent 29%),
    radial-gradient(circle at 70% 65%, var(--accent-apricot) 0 18%, transparent 19%),
    var(--bg-sand);
}

.exp-panel__visual--02 {
  background:
    linear-gradient(135deg, transparent 42%, var(--accent-apricot) 42% 58%, transparent 58%),
    radial-gradient(circle at 50% 50%, transparent 0 34%, var(--accent-rose) 35% 48%, transparent 49%),
    var(--bg-sand);
}

.exp-panel__visual--03 {
  background:
    radial-gradient(circle at 55% 45%, var(--espresso) 0 4%, transparent 5%),
    conic-gradient(from 210deg at 50% 50%, var(--accent-terracotta), var(--accent-apricot), var(--accent-gold), var(--accent-terracotta)),
    var(--bg-sand);
  opacity: 1;
}

.exp-panel__visual--03::after {
  content: "";
  position: absolute;
  inset: 18%;
  background: var(--bg-sand);
  border-radius: 50%;
}

.exp-panel__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}

.exp-panel__meta time {
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.exp-panel__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: var(--space-2);
}

.exp-panel__desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: var(--space-3);
  flex-grow: 1;
}

.exp-panel__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s var(--ease), gap 0.3s var(--ease);
}

.exp-panel__link:hover {
  color: var(--accent-terracotta);
  gap: 14px;
}

/* 6. Signature Composition ------------------------------------------------ */

.signature {
  position: relative;
  min-height: 90vh;
  display: grid;
  place-items: center;
  padding: var(--space-8) var(--space-3);
  overflow: hidden;
  background: var(--furdi-sunset);
  background-size: 160% 160%;
  animation: gradient-shift 14s ease-in-out infinite alternate;
}

.signature__orb {
  position: absolute;
  width: min(90vw, 820px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(247, 243, 236, 0.16);
  border: 1px solid rgba(247, 243, 236, 0.22);
  animation: orb-breathe 10s ease-in-out infinite;
}

.signature__title {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  color: var(--espresso);
}

.signature__title span {
  display: block;
}

/* 7. Stories -------------------------------------------------------------- */

.stories {
  padding: var(--space-8) 0;
  background: var(--bg-ivory);
}

.story-list {
  border-top: var(--border);
}

.story-row {
  display: grid;
  grid-template-columns: 64px 100px 1fr auto;
  gap: var(--space-3);
  align-items: center;
  padding: var(--space-4) var(--space-2);
  border-bottom: var(--border);
  position: relative;
  transition:
    background 0.35s var(--ease),
    transform 0.35s var(--ease),
    padding-left 0.35s var(--ease);
}

.story-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-terracotta);
  transform: translateY(-50%) scale(0);
  transition: transform 0.35s var(--ease);
}

.story-row:hover {
  background: var(--bg-sand);
  transform: translateX(4px);
  padding-left: var(--space-3);
}

.story-row:hover::before {
  transform: translateY(-50%) scale(1);
}

.story-row__num {
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.story-row__cat {
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent-terracotta);
}

.story-row__title {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.story-row__desc {
  display: block;
  margin-top: 8px;
  max-width: 520px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.story-row__arrow {
  font-size: 1.5rem;
  transition: transform 0.35s var(--ease), color 0.35s var(--ease);
}

.story-row:hover .story-row__arrow {
  transform: translateX(8px);
  color: var(--accent-terracotta);
}

/* 8. Archive -------------------------------------------------------------- */

.archive {
  padding: 0 0 var(--space-8);
  background: var(--bg-ivory);
}

.archive__heading {
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: var(--space-4);
  color: var(--text-muted);
}

.archive-list {
  border-top: var(--border);
}

.archive-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-2);
  border-bottom: var(--border);
  position: relative;
  transition: background 0.3s var(--ease), padding-left 0.3s var(--ease);
}

.archive-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent-terracotta);
  transform: scaleY(0);
  transition: transform 0.3s var(--ease);
}

.archive-row:hover {
  background: rgba(237, 229, 216, 0.65);
  padding-left: var(--space-3);
}

.archive-row:hover::before {
  transform: scaleY(1);
}

.archive-row__text {
  font-family: var(--font-secondary);
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: color 0.3s var(--ease);
}

.archive-row:hover .archive-row__text {
  color: var(--accent-terracotta);
}

.archive-row__arrow {
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}

.archive-row:hover .archive-row__arrow {
  transform: translateX(8px);
  color: var(--accent-terracotta);
}

/* 9. Final CTA ------------------------------------------------------------ */

.cta {
  position: relative;
  padding: var(--space-8) 0;
  background: var(--espresso);
  overflow: hidden;
}

.cta__glow {
  position: absolute;
  width: min(520px, 80vw);
  aspect-ratio: 1;
  left: 50%;
  bottom: -20%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(242, 154, 74, 0.28) 0%,
    rgba(232, 93, 63, 0.12) 40%,
    transparent 70%
  );
  pointer-events: none;
}

.cta__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  color: var(--bg-ivory);
}

.cta__title span {
  display: block;
}

.cta__text {
  max-width: 540px;
  margin: var(--space-4) auto var(--space-5);
  color: rgba(247, 243, 236, 0.72);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.7;
}

/* 10. Footer -------------------------------------------------------------- */

.footer {
  background: var(--bg-sand);
  padding-bottom: var(--space-5);
}

.footer__divider {
  height: 2px;
  background: linear-gradient(90deg, var(--accent-terracotta), var(--accent-apricot));
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr;
  gap: var(--space-6);
  padding: var(--space-7) 0 var(--space-5);
}

.footer__logo {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.footer__logo-main {
  font-size: clamp(3rem, 8vw, 5.5rem);
}

.footer__logo-dot {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--text-muted);
}

.footer__tagline {
  margin-top: var(--space-3);
  max-width: 320px;
  font-family: var(--font-secondary);
  font-size: 18px;
  color: var(--text-muted);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  align-content: start;
  padding-top: var(--space-2);
}

.footer__col h3 {
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: var(--space-2);
  color: var(--text-muted);
}

.footer__col ul {
  display: grid;
  gap: 10px;
}

.footer__col a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  transition: color 0.3s var(--ease);
}

.footer__col a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--accent-terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.footer__col a:hover {
  color: var(--accent-terracotta);
}

.footer__col a:hover::after {
  transform: scaleX(1);
}

.footer__bottom {
  padding-top: var(--space-4);
  border-top: var(--border);
}

.footer__bottom p {
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

/* Animations -------------------------------------------------------------- */

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sculpture-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(2deg);
  }
}

@keyframes sculpture-rotate {
  from {
    transform: rotate(-12deg);
  }
  to {
    transform: rotate(348deg);
  }
}

@keyframes gradient-shift {
  from {
    background-position: 0% 40%;
  }
  to {
    background-position: 100% 60%;
  }
}

@keyframes orb-breathe {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

/* Responsive -------------------------------------------------------------- */

@media (max-width: 1024px) {
  .hero {
    padding: var(--space-6) 0 var(--space-5);
  }

  .hero__grid {
    gap: var(--space-5);
  }

  .hero__art {
    min-height: 420px;
  }

  .sculpture {
    width: min(100%, 360px);
  }

  .exp-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .story-row {
    grid-template-columns: 48px 80px 1fr auto;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .signature {
    min-height: 70vh;
  }
}

@media (max-width: 768px) {
  .container,
  .hero__grid,
  .nav__inner {
    width: min(100% - 48px, var(--container));
  }

  .nav__field,
  .nav__discover {
    display: none;
  }

  .nav__inner {
    grid-template-columns: 1fr auto;
  }

  .nav__mobile {
    display: flex;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .hero__art {
    min-height: 360px;
    order: 2;
  }

  .hero__content {
    order: 1;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__scroll {
    position: static;
    display: inline-flex;
    margin: var(--space-4) auto 0;
    width: min(100% - 48px, var(--container));
  }

  .hero__micro {
    left: 8%;
    bottom: 4%;
  }

  .value-row {
    grid-template-columns: 48px 1fr auto;
    padding: var(--space-3) var(--space-2);
  }

  .story-row {
    grid-template-columns: 40px 1fr auto;
    gap: var(--space-2);
  }

  .story-row__cat {
    display: none;
  }

  .footer__cols {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .cta .btn {
    width: 100%;
  }

  .statement,
  .experiences,
  .stories,
  .cta {
    padding-block: var(--space-6);
  }

  .signature {
    min-height: 60vh;
    padding: var(--space-6) var(--space-3);
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(3.25rem, 16vw, 4.5rem);
  }

  .statement__title {
    font-size: clamp(2.25rem, 12vw, 3.25rem);
  }

  .archive-row__text {
    letter-spacing: 0.04em;
  }
}

/* Reduced motion --------------------------------------------------------- */

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