/* ============================================
   Annabelle Body — The Cultivator Brand Direction
   Burgundy & soft pink editorial · Cormorant Garamond + DM Sans
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Cultivator Palette — burgundy & soft pink editorial */
  --cream: #FDF8F8;
  --cream-dark: #F4EAEB;
  --parchment: #F9F0F1;
  --harvest: #722F37;
  --harvest-light: #9B4D55;
  --harvest-deep: #5A1F26;
  --clay: #A4545E;
  --clay-light: #C48B92;
  --sage: #E8C4CA;
  --sage-light: #F2DCE0;
  --sage-muted: #F5E6E9;
  --wheat: #D4A0A8;
  --wheat-light: #EACDD1;
  --charcoal: #2C2528;
  --charcoal-light: #5A4E52;
  --charcoal-muted: #7A7075;
  --rosegold: #B76E79;
  --rosegold-light: #D4A08F;
  --rosegold-shimmer: #E8C4B8;
  --off-white: #FDFAFB;
  --white: #FFFFFF;

  /* Typography — Cultivator Direction */
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-accent: 'Caveat', cursive;

  --container: 1200px;
  --nav-height: 80px;

  --shadow-sm: 0 2px 8px rgba(44, 40, 37, 0.06);
  --shadow-md: 0 4px 20px rgba(44, 40, 37, 0.08);
  --shadow-lg: 0 8px 40px rgba(44, 40, 37, 0.1);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.section-eyebrow,
.verifood-content .section-eyebrow,
.about-content .section-eyebrow {
  font-family: var(--font-accent);
  font-size: 3.2rem;
  color: var(--rosegold);
  margin-bottom: 8px;
}

.section-title {
  margin-bottom: 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: var(--harvest);
  color: var(--white);
  border-color: var(--harvest);
}

.btn-primary:hover {
  background: var(--harvest-deep);
  border-color: var(--harvest-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--clay);
  color: var(--white);
  border-color: var(--clay);
}

.btn-secondary:hover {
  background: var(--clay-light);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--harvest);
  border-color: var(--harvest);
}

.btn-outline:hover {
  background: var(--harvest);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(253, 248, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
}

.nav-logo:hover {
  color: var(--harvest);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--charcoal-light);
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rosegold);
  transition: var(--transition);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--harvest);
}

.nav-cta {
  background: var(--harvest);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius-xl);
}

.nav-cta:hover {
  background: var(--harvest-deep);
  transform: translateY(-1px);
}

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- Title Slide (fixed behind page) ---------- */
.title-slide {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  background: radial-gradient(ellipse at center, var(--cream) 0%, var(--sage-light) 55%, var(--sage) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.title-slide-inner {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Both name lines — stacked centered, behind photo */
.title-name-first,
.title-name-last {
  position: absolute;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(7rem, 16vw, 18rem);
  line-height: 0.9;
  color: var(--harvest);
  letter-spacing: -0.02em;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
}

/* "Annabelle" — upper, perfectly centered */
.title-name-first {
  top: calc(var(--nav-height) + 6vh);
  left: 50%;
  transform: translateX(-50%);
}

/* "Body" — lower, nudged right so photo covers it with B half visible */
.title-name-last {
  top: calc(var(--nav-height) + 6vh + clamp(7rem, 16vw, 18rem));
  left: 50%;
  transform: translateX(-8%);
  font-size: clamp(6.5rem, 15vw, 16rem);
}

/* Photo — centered, overlaps the text, anchored to bottom */
.title-slide-photo {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.title-photo {
  height: 80vh;
  max-height: 820px;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 20px 60px rgba(44, 37, 40, 0.25));
}

/* Taglines at the bottom corners */
.title-slide-taglines {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  padding: 0 60px;
  pointer-events: none;
}

.title-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  color: var(--charcoal);
  max-width: 320px;
  line-height: 1.5;
}

.title-tagline em {
  color: var(--harvest);
  font-style: italic;
}

.title-tagline-left {
  text-align: left;
}

.title-tagline-right {
  text-align: right;
  margin-left: auto;
}

/* Page content sits on top and scrolls over the title slide */
.page-content {
  position: relative;
  z-index: 1;
  margin-top: 100vh;
  background: var(--off-white);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-height);
  background: linear-gradient(160deg, var(--cream) 0%, var(--parchment) 50%, var(--cream-dark) 100%);
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--wheat);
  top: -200px;
  right: -100px;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--sage);
  bottom: -100px;
  left: -100px;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: var(--harvest-light);
  top: 40%;
  left: 60%;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-accent);
  font-size: 3.2rem;
  color: var(--rosegold);
  margin-bottom: 16px;
}

.hero-title {
  margin-bottom: 24px;
  color: var(--charcoal);
}

.hero-title em {
  color: var(--harvest);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-frame {
  width: 420px;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.hero-photo,
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-image-accent {
  position: absolute;
  width: 420px;
  height: 520px;
  border: 3px solid var(--harvest);
  border-radius: var(--radius-lg);
  top: 20px;
  left: calc(50% - 190px);
  z-index: 1;
  opacity: 0.3;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--harvest);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- Featured Bar ---------- */
.featured-bar {
  background: var(--white);
  padding: 40px 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.featured-label {
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--charcoal-muted);
  margin-bottom: 24px;
}

.featured-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.featured-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal-light);
  opacity: 0.45;
  transition: var(--transition);
}

.featured-logo:hover {
  opacity: 0.75;
}

/* ---------- Verifood Section ---------- */
.verifood-section {
  padding: 100px 0;
  background: var(--cream);
}

.verifood-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.verifood-tagline {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--harvest);
  margin-bottom: 20px;
}

.verifood-content p {
  color: var(--charcoal-light);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.verifood-stats {
  display: flex;
  gap: 32px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal-muted);
}

.verifood-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.verifood-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: default;
}

.verifood-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.verifood-card-1 { border-top: 3px solid var(--rosegold); }
.verifood-card-2 { border-top: 3px solid var(--rosegold-shimmer); }
.verifood-card-3 {
  border-top: 3px solid var(--wheat);
  grid-column: span 2;
}

.verifood-card-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
  color: var(--rosegold);
}

.verifood-card p {
  font-weight: 500;
  font-size: 0.95rem;
}

/* ---------- About Section ---------- */
.about-section {
  padding: 120px 0;
  background: var(--off-white);
}

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

.about-images {
  position: relative;
}

.about-image-main {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-content p {
  color: var(--charcoal-light);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-content em {
  color: var(--harvest);
  font-style: italic;
}

.about-content .btn {
  margin-top: 16px;
}

/* ---------- Experience / Timeline Section ---------- */
.experience-section {
  padding: 100px 0;
  background: var(--charcoal);
  color: var(--cream);
}

.experience-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.experience-header .section-eyebrow {
  color: var(--rosegold-shimmer);
}

.experience-header .section-title {
  color: var(--cream);
}

.experience-tagline {
  color: rgba(253, 248, 248, 0.65);
  font-size: 1.05rem;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 32px 0;
  position: relative;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 116px;
  top: 40px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rosegold);
  border: 2px solid var(--charcoal);
}

.timeline-date {
  font-family: var(--font-accent);
  font-size: 1.6rem;
  color: var(--rosegold-shimmer);
  text-align: right;
  padding-top: 4px;
}

.timeline-content h3 {
  color: var(--cream);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.timeline-location {
  font-size: 0.85rem;
  color: var(--harvest-light);
  margin-bottom: 10px;
}

.timeline-content p:last-child {
  color: rgba(253, 248, 248, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- Writing Section ---------- */
.writing-section {
  padding: 100px 0;
  background: var(--off-white);
}

.writing-header {
  text-align: center;
  margin-bottom: 50px;
}

.writing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.writing-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.writing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.writing-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.writing-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--white);
  transition: var(--transition);
}

.writing-card:hover .writing-placeholder {
  transform: scale(1.05);
}

.writing-card-content {
  padding: 28px 24px;
}

.writing-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rosegold);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.writing-card-content h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.writing-card-content p {
  color: var(--charcoal-light);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.writing-link {
  color: var(--harvest);
  font-weight: 500;
  font-size: 0.9rem;
}

.writing-link:hover {
  color: var(--harvest-deep);
}

/* ---------- Values / Quotes Section ---------- */
.values-section {
  padding: 80px 0;
  background: var(--cream);
}

.values-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.values-quotes {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}

.value-quote {
  border-left: 3px solid var(--rosegold);
  padding: 16px 0 16px 28px;
  text-align: left;
}

.value-quote p {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.5;
}

/* ---------- Contact Section ---------- */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--parchment) 0%, var(--cream-dark) 100%);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-content p {
  color: var(--charcoal-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--harvest);
  font-weight: 500;
  font-size: 1rem;
}

.contact-link:hover {
  color: var(--harvest-deep);
}

.contact-icon {
  font-size: 1.2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-input {
  padding: 14px 20px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--charcoal);
  outline: none;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--harvest);
}

.form-input::placeholder {
  color: var(--charcoal-muted);
}

.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%235A5350'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .btn {
  align-self: flex-start;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 80px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cream);
  display: inline-block;
  margin-bottom: 12px;
}

.footer-logo:hover {
  color: var(--wheat);
}

.footer-tagline {
  color: rgba(253, 248, 248, 0.55);
  max-width: 300px;
  line-height: 1.7;
}

.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  color: var(--rosegold-shimmer);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col li,
.footer-col a {
  color: rgba(253, 248, 248, 0.55);
  font-size: 0.9rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(253, 248, 248, 0.35);
  font-size: 0.85rem;
}

/* ---------- Scroll Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ---------- Responsive Design ---------- */
@media (max-width: 1024px) {
  .verifood-inner {
    grid-template-columns: 1fr;
  }

  .writing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  /* --- Title Slide --- */

  /* Name at the top, just below nav */
  .title-name-first,
  .title-name-last {
    font-size: clamp(4.5rem, 19vw, 8rem) !important;
    top: auto !important;
    bottom: auto !important;
    left: 50% !important;
  }

  .title-name-first {
    top: calc(var(--nav-height) + 1vh) !important;
    transform: translateX(-50%);
  }

  .title-name-last {
    top: calc(var(--nav-height) + 1vh + clamp(4rem, 17vw, 7.5rem)) !important;
    transform: translateX(-8%);
    font-size: clamp(4rem, 17vw, 7rem) !important;
  }

  /* Photo: dominant, nearly full screen */
  .title-slide-photo {
    bottom: 0;
  }

  .title-photo {
    height: 92vh;
    max-height: none;
  }

  .title-slide-taglines {
    display: none;
  }

  /* --- Navigation --- */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    transform: translateY(-120%);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .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);
  }

  .nav-links a {
    font-size: 1rem;
    padding: 4px 0;
  }

  /* --- Hero --- */
  .hero {
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
    padding: 40px 20px;
  }

  .hero-image {
    order: -1;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-actions .btn {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  .hero-image-frame {
    width: 260px;
    height: 340px;
  }

  .hero-image-accent {
    width: 260px;
    height: 340px;
    left: calc(50% - 110px);
  }

  .hero-scroll {
    display: none;
  }

  .hero-eyebrow {
    font-size: 2.4rem;
  }

  /* --- Featured Bar --- */
  .featured-bar {
    padding: 28px 0;
  }

  .featured-logos {
    gap: 20px;
  }

  .featured-logo {
    font-size: 1rem;
  }

  /* --- Verifood --- */
  .verifood-section {
    padding: 70px 0;
  }

  .verifood-tagline {
    font-size: 1.4rem;
  }

  .verifood-stats {
    justify-content: center;
  }

  .verifood-visual {
    grid-template-columns: 1fr;
  }

  .verifood-card-3 {
    grid-column: span 1;
  }

  /* --- About --- */
  .about-section {
    padding: 70px 0;
  }

  .about-inner,
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-images {
    max-width: 320px;
    margin: 0 auto;
  }

  .about-image-main {
    aspect-ratio: 2 / 3;
  }

  .about-content {
    text-align: center;
  }

  .about-content .btn {
    margin-left: auto;
    margin-right: auto;
  }

  /* --- Experience / Timeline --- */
  .experience-section {
    padding: 70px 0;
  }

  .timeline::before {
    left: 0;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-left: 24px;
  }

  .timeline-item::after {
    left: -4px;
    top: 8px;
  }

  .timeline-date {
    text-align: left;
    font-size: 1.3rem;
  }

  /* --- Writing --- */
  .writing-section {
    padding: 70px 0;
  }

  .writing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* --- Values / Quotes --- */
  .values-section {
    padding: 60px 0;
  }

  .value-quote p {
    font-size: 1.35rem;
  }

  /* --- Contact --- */
  .contact-section {
    padding: 70px 0;
  }

  /* --- Footer --- */
  .footer {
    padding: 60px 0 32px;
  }

  .footer-links-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .section-eyebrow,
  .verifood-content .section-eyebrow,
  .about-content .section-eyebrow {
    font-size: 2.4rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  /* Title slide — small phones */
  .title-photo {
    height: 88vh;
  }

  /* Hero */
  .hero-inner {
    padding: 32px 16px;
    gap: 28px;
  }

  .hero-image-frame {
    width: 220px;
    height: 290px;
  }

  .hero-image-accent {
    width: 220px;
    height: 290px;
    left: calc(50% - 90px);
  }

  .hero-eyebrow {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  /* About */
  .about-images {
    max-width: 260px;
  }

  /* Featured */
  .featured-logos {
    flex-direction: column;
    gap: 12px;
  }

  /* Verifood */
  .verifood-stats {
    flex-direction: column;
    align-items: center;
  }

  .verifood-tagline {
    font-size: 1.2rem;
  }

  /* Values */
  .value-quote p {
    font-size: 1.15rem;
  }

  .value-quote {
    padding: 12px 0 12px 20px;
  }

  /* Contact */
  .contact-form .btn {
    align-self: stretch;
  }

  /* Footer */
  .footer-links-group {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-eyebrow,
  .verifood-content .section-eyebrow,
  .about-content .section-eyebrow {
    font-size: 2rem;
  }
}
