/* ============================================
   TSHIMO — "Cultivate something real"
   Landing Page Styles
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --soil: #2C1810;
  --bark: #4A2C20;
  --terracotta: #C4673C;
  --copper: #D4845A;
  --sand: #E8D5B7;
  --cream: #F5EDE0;
  --sage: #7A9E7E;
  --deep-green: #2D5A3D;
  --leaf: #4CAF6A;
  --gold: #D4A843;
  --warm-white: #FEFBF6;
  --charcoal: #1A1A1A;

  --font-display: 'DM Serif Display', serif;
  --font-body: 'Outfit', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;
  --font-ui: 'Outfit', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--warm-white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Noise / Grain Texture Overlay --- */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.15;
  color: var(--soil);
  margin-bottom: 20px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--bark);
  max-width: 600px;
  line-height: 1.7;
}

/* --- Reveal-on-Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(44, 24, 16, 0.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.15);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 36px;
  width: auto;
  transition: height 0.4s ease;
}

.nav.scrolled .nav-logo img {
  height: 30px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--terracotta);
  transition: width 0.3s var(--ease-out-expo);
}

.nav-links a:hover {
  color: var(--copper);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-ui) !important;
  font-weight: 600 !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 10px 24px !important;
  background: var(--terracotta) !important;
  color: var(--cream) !important;
  border-radius: 100px;
  transition: background 0.3s ease, transform 0.3s ease !important;
}

.nav-cta:hover {
  background: var(--copper) !important;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sand);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--soil);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right 0.5s var(--ease-out-expo);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 0.9rem;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, var(--soil) 0%, var(--bark) 40%, var(--terracotta) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 20%, rgba(212, 132, 90, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(122, 158, 126, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, rgba(44, 24, 16, 0.4), transparent);
  pointer-events: none;
}

/* Floating organic shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: var(--sage);
  top: -200px;
  right: -150px;
  animation: floatSlow 20s ease-in-out infinite;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--copper);
  bottom: -100px;
  left: -100px;
  animation: floatSlow 25s ease-in-out infinite reverse;
}

.hero-shape-3 {
  width: 250px;
  height: 250px;
  background: var(--gold);
  top: 30%;
  left: 10%;
  animation: floatSlow 18s ease-in-out infinite 3s;
}

@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(20px, -30px) scale(1.03); }
  50% { transform: translate(-15px, 20px) scale(0.97); }
  75% { transform: translate(25px, 10px) scale(1.02); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.hero-logo {
  width: clamp(220px, 40vw, 380px);
  margin: 0 auto 32px;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  animation: heroFadeIn 1.2s var(--ease-out-expo) 0.3s forwards;
}

.hero-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--sand);
  font-weight: 400;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 1s var(--ease-out-expo) 0.7s forwards;
}

.hero-description {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--copper);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 1s var(--ease-out-expo) 1s forwards;
}

.hero-cta {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--terracotta);
  padding: 16px 40px;
  border-radius: 100px;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 1s var(--ease-out-expo) 1.2s forwards;
}

.hero-cta:hover {
  background: var(--copper);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196, 103, 60, 0.35);
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroFadeIn 1s var(--ease-out-expo) 1.6s forwards;
}

.scroll-indicator span {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--copper);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--sand);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

/* ============================================
   ABOUT / STORY SECTION
   ============================================ */
.about {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--warm-white);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual-card {
  background: linear-gradient(145deg, var(--soil), var(--bark));
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(196, 103, 60, 0.12), transparent 60%);
}

.about-phonetic {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--copper);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.about-word {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: var(--sand);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.about-meaning {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--sage);
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.about-origin {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  opacity: 0.7;
  position: relative;
  z-index: 1;
}

.about-accent-line {
  width: 60px;
  height: 2px;
  background: var(--terracotta);
  margin: 24px auto;
  position: relative;
  z-index: 1;
}

.about-text .section-subtitle {
  margin-bottom: 24px;
}

.about-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--deep-green);
  border-left: 3px solid var(--sage);
  padding-left: 20px;
  margin-top: 32px;
  line-height: 1.6;
}

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

/* ============================================
   FEATURES / PILLARS SECTION
   ============================================ */
.features {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--cream);
  position: relative;
}

.features-header {
  text-align: center;
  margin-bottom: 64px;
}

.features-header .section-subtitle {
  margin: 0 auto;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pillar-card {
  background: var(--warm-white);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
  border: 1px solid rgba(44, 24, 16, 0.06);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(44, 24, 16, 0.1);
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transition: height 0.4s var(--ease-out-expo);
}

.pillar-card:hover::before {
  height: 4px;
}

.pillar-card:nth-child(1)::before { background: var(--sage); }
.pillar-card:nth-child(2)::before { background: var(--terracotta); }
.pillar-card:nth-child(3)::before { background: var(--deep-green); }
.pillar-card:nth-child(4)::before { background: var(--gold); }

.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}

.pillar-card:nth-child(1) .pillar-icon { background: rgba(122, 158, 126, 0.12); color: var(--sage); }
.pillar-card:nth-child(2) .pillar-icon { background: rgba(196, 103, 60, 0.12); color: var(--terracotta); }
.pillar-card:nth-child(3) .pillar-icon { background: rgba(45, 90, 61, 0.12); color: var(--deep-green); }
.pillar-card:nth-child(4) .pillar-icon { background: rgba(212, 168, 67, 0.12); color: var(--gold); }

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--soil);
  margin-bottom: 12px;
}

.pillar-card p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.92rem;
  color: var(--bark);
  line-height: 1.7;
}

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

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

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--warm-white);
}

.how-header {
  text-align: center;
  margin-bottom: 72px;
}

.how-header .section-subtitle {
  margin: 0 auto;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--warm-white);
  background: var(--soil);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, background 0.3s ease;
}

.step:hover .step-number {
  transform: scale(1.1);
  background: var(--terracotta);
}

/* Connector line between steps */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 2px;
  background: linear-gradient(90deg, var(--terracotta), var(--sage));
  opacity: 0.3;
  z-index: 1;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--soil);
  margin-bottom: 8px;
}

.step p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--bark);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .step {
    max-width: 300px;
  }

  .step:not(:last-child)::after {
    top: auto;
    left: 50%;
    bottom: -24px;
    width: 2px;
    height: 24px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, var(--terracotta), var(--sage));
  }
}

/* ============================================
   SAFETY SECTION
   ============================================ */
.safety {
  padding: clamp(80px, 12vw, 140px) 0;
  background: linear-gradient(170deg, var(--soil) 0%, var(--bark) 50%, var(--deep-green) 100%);
  color: var(--sand);
  position: relative;
  overflow: hidden;
}

.safety::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(122, 158, 126, 0.06);
  pointer-events: none;
}

.safety-header {
  text-align: center;
  margin-bottom: 64px;
}

.safety-header .section-label {
  color: var(--sage);
}

.safety-header .section-title {
  color: var(--sand);
}

.safety-header .section-subtitle {
  color: var(--copper);
  margin: 0 auto;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.safety-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(232, 213, 183, 0.1);
  border-radius: 16px;
  padding: 36px 32px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(4px);
}

.safety-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(232, 213, 183, 0.2);
  transform: translateY(-4px);
}

.safety-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(122, 158, 126, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.safety-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--sand);
  margin-bottom: 10px;
}

.safety-card p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.92rem;
  color: var(--copper);
  line-height: 1.7;
}

.safety-tagline {
  text-align: center;
  margin-top: 56px;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--sage);
}

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

/* ============================================
   COMING SOON / WAITLIST SECTION
   ============================================ */
.waitlist {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--cream);
  text-align: center;
}

.waitlist-header {
  margin-bottom: 48px;
}

.waitlist-header .section-subtitle {
  margin: 0 auto;
}

.waitlist-form {
  max-width: 480px;
  margin: 0 auto 40px;
}

.form-group {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.form-group input[type="email"] {
  flex: 1;
  padding: 16px 24px;
  border: 2px solid rgba(44, 24, 16, 0.1);
  border-radius: 100px;
  background: var(--warm-white);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--soil);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input[type="email"]::placeholder {
  color: var(--copper);
  opacity: 0.6;
}

.form-group input[type="email"]:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(122, 158, 126, 0.15);
}

.form-submit {
  padding: 16px 32px;
  background: var(--deep-green);
  color: var(--cream);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
  border: none;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.form-submit:hover {
  background: var(--sage);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(45, 90, 61, 0.3);
}

.form-note {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--bark);
  opacity: 0.6;
}

.waitlist-cities {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}

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

.city-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sage);
  position: relative;
}

.city-dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--sage);
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
}

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

.city-name {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soil);
}

.city-status {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.78rem;
  color: var(--terracotta);
}

@media (max-width: 540px) {
  .form-group {
    flex-direction: column;
  }

  .form-submit {
    width: 100%;
    padding: 16px;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  color: var(--sand);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 32px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--copper);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--copper);
  transition: color 0.3s ease;
}

.footer-col ul a:hover {
  color: var(--sand);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(232, 213, 183, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--copper);
  opacity: 0.7;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--copper);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-bottom-links a:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   FORM SUCCESS STATE
   ============================================ */
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
}

.form-success.show {
  display: block;
  animation: heroFadeIn 0.6s var(--ease-out-expo) forwards;
}

.form-success-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--deep-green);
  margin-bottom: 8px;
}

.form-success p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--bark);
}
