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

:root {
  --cream:       #FDF8F0;
  --cream-dark:  #F5EDE0;
  --orange:      #C8522A;
  --orange-light:#E8733A;
  --orange-pale: #F4A261;
  --brown:       #6B3A1F;
  --dark:        #1C1008;
  --dark-mid:    #3D2010;
  --white:       #FFFFFF;
  --grey:        #8A7060;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;
  --radius:      1.25rem;
  --radius-sm:   0.75rem;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.section__title em {
  font-style: italic;
  color: var(--orange);
}

.section__description {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 520px;
}

.section__header--center {
  text-align: center;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 3rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--primary:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 82, 42, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn--outline:hover {
  background: var(--dark);
  color: var(--cream);
  transform: translateY(-2px);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(253, 248, 240, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  padding: 0.875rem 2rem;
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-mid);
  position: relative;
  padding-bottom: 2px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: var(--transition);
}

.nav__links a:hover::after { width: 100%; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--cream);
  border-top: 1px solid rgba(0,0,0,0.08);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.nav__mobile.open { max-height: 300px; }

.nav__mobile-link {
  padding: 1rem 2rem;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav__mobile-link:hover { color: var(--orange); }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: 8rem 2rem 5rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: float 8s ease-in-out infinite;
}

.hero__blob--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #F4A261, #C8522A);
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}

.hero__blob--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #FFD6B0, #F4A261);
  bottom: -100px;
  left: 10%;
  animation-delay: 3s;
}

.hero__blob--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #6B3A1F, #3D2010);
  top: 40%;
  left: 50%;
  opacity: 0.15;
  animation-delay: 5s;
}

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

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--dark);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero__title em {
  font-style: italic;
  color: var(--orange);
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--dark-mid);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.5s;
}

.hero__scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 8rem 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--orange), transparent);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about__visual {
  display: flex;
  justify-content: center;
}

.about__frame {
  position: relative;
  width: 320px;
  height: 380px;
}

.about__avatar {
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-pale) 50%, var(--brown) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(200, 82, 42, 0.4);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 20px 60px rgba(200, 82, 42, 0.4); }
  50% { box-shadow: 0 25px 80px rgba(200, 82, 42, 0.6); }
}

.about__avatar-initials {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.05em;
}

.about__tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(253, 248, 240, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--cream);
  padding: 0.5rem 1rem;
  border-radius: 3rem;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.about__tag--1 { top: 0; right: 0; animation: tagFloat 5s ease-in-out infinite 0s; }
.about__tag--2 { bottom: 40px; left: -10px; animation: tagFloat 5s ease-in-out infinite 1.5s; }
.about__tag--3 { top: 50%; right: -20px; animation: tagFloat 5s ease-in-out infinite 3s; }

@keyframes tagFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.about__text .section__title,
.about__text .section__description,
.about__text p {
  color: var(--cream);
}

.about__text p {
  margin-bottom: 1.25rem;
  color: rgba(253, 248, 240, 0.75);
  font-size: 1rem;
}

.about__text p strong {
  color: var(--orange-pale);
}

.about__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stat__number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--orange-pale);
  line-height: 1;
}

.stat__label {
  display: block;
  font-size: 0.8rem;
  color: rgba(253, 248, 240, 0.5);
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about__frame {
    width: 280px;
    height: 320px;
  }
  .about__avatar {
    width: 240px;
    height: 240px;
  }
  .about__avatar-initials { font-size: 4rem; }
}

/* ============================================================
   JOURNEY
   ============================================================ */
.journey {
  padding: 8rem 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.journey__bg-text {
  position: absolute;
  font-family: var(--font-serif);
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 900;
  color: rgba(200, 82, 42, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -0.05em;
}

.journey__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.journey__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(200, 82, 42, 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.journey__card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--orange), var(--orange-pale));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.journey__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(200, 82, 42, 0.15);
  border-color: transparent;
}

.journey__card:hover::before { transform: scaleX(1); }

.journey__card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(200, 82, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--orange);
  transition: var(--transition);
}

.journey__card:hover .journey__card-icon {
  background: var(--orange);
  color: var(--white);
}

.journey__card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.journey__card p {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.7;
}

/* ============================================================
   BAND
   ============================================================ */
.band {
  background: var(--orange);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.band__track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  animation: ticker 20s linear infinite;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
}

.band__dot {
  color: rgba(255,255,255,0.5);
  font-size: 0.6rem;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   CONNECT
   ============================================================ */
.connect {
  padding: 8rem 0;
  background: var(--cream-dark);
}

.connect__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.connect__card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.connect__card--food {
  background: linear-gradient(135deg, #1C1008, #3D2010);
  color: var(--cream);
}

.connect__card--personal {
  background: var(--white);
  color: var(--dark);
  border-color: rgba(200, 82, 42, 0.2);
}

.connect__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.connect__card--food:hover {
  box-shadow: 0 16px 48px rgba(200, 82, 42, 0.3);
}

.connect__card-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
}

.connect__card--personal .connect__card-icon {
  background: rgba(200, 82, 42, 0.1);
  color: var(--orange);
}

.connect__card--food .connect__card-icon {
  background: rgba(255,255,255,0.1);
  color: var(--cream);
}

.connect__card-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.connect__card-handle {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
}

.connect__card-desc {
  font-size: 0.85rem;
  opacity: 0.7;
}

.connect__card-arrow {
  font-size: 1.25rem;
  opacity: 0.5;
  transition: var(--transition);
}

.connect__card:hover .connect__card-arrow {
  opacity: 1;
  transform: translateX(4px);
}

.connect__cta {
  text-align: center;
  padding: 3rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(200, 82, 42, 0.1);
}

.connect__cta p {
  font-size: 1.1rem;
  color: var(--grey);
  margin-bottom: 1.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  padding: 2.5rem 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange-pale);
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(253, 248, 240, 0.4);
}

.footer__socials {
  display: flex;
  gap: 1rem;
}

.footer__socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(253, 248, 240, 0.6);
  transition: var(--transition);
}

.footer__socials a:hover {
  background: var(--orange);
  color: var(--white);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 640px) {
  .hero { padding: 7rem 1.5rem 5rem; }
  .container { padding: 0 1.5rem; }
  .about { padding: 5rem 0; }
  .journey { padding: 5rem 0; }
  .connect { padding: 5rem 0; }
  .about__stats { gap: 1.5rem; }
  .hero__scroll { display: none; }
  .connect__cards { grid-template-columns: 1fr; }
  .footer__inner { justify-content: center; text-align: center; }
}
