/* =========================
   TOKENS
========================= */
:root {
  --sand:      #ede5d8;
  --sand-mid:  #e2d5c3;
  --cream:     #f9f5f0;
  --white:     #ffffff;
  --ink:       #1c1814;
  --ink-mid:   #3a342e;
  --muted:     #5f554e;
  --accent:    #b5431a;   /* Marseille terracotta */
  --accent-2:  #4a7c59;   /* Provence green */
  --gold:      #c99a3c;
  --line:      rgba(28,24,20,0.09);
  --shadow-sm: 0 4px 16px rgba(28,24,20,0.06);
  --shadow-md: 0 10px 40px rgba(28,24,20,0.10);
  --r-xl:      28px;
  --r-lg:      20px;
  --r-md:      14px;
  --container: 1200px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

/* =========================
   RESET
========================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; border: none; background: none; cursor: pointer; }
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 8px;
}
.container {
  width: min(var(--container), 92%);
  margin: 0 auto;
}

/* =========================
   BUTTONS
========================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.97rem;
  border-radius: 999px;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  font-size: 0.97rem;
  color: var(--ink-mid);
  padding: 14px 4px;
  border-bottom: 1.5px solid var(--ink-mid);
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--accent); border-color: var(--accent); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--accent); color: #fff; }

/* =========================
   HERO WRAP — shared by both pages
========================= */
.hero-wrap {
  background: var(--sand);
  position: relative;
  /* The soft wave at the bottom that blends into cream */
}
.hero-wrap::after {
  content: '';
  display: block;
  height: 80px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
  margin-top: -1px;
}

/* =========================
   HEADER / NAV
========================= */
.site-header {
  padding-top: 1.4rem;
  position: relative;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.15;
}
.brand-main {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.brand-sub {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.brand-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink-mid);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.2s;
}
.nav-links a:hover::after,
.nav-links a.nav-active::after { width: 100%; }
.nav-links a.nav-active { color: var(--accent); }

.nav-cta {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 11px 22px;
  border-radius: 999px;
  transition: opacity 0.2s;

    white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-cta:hover { opacity: 0.86; }

/* =========================
   HERO (homepage)
========================= */
.hero {
  padding: 2.8rem 0 0;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(400px, 500px);
  gap: 56px;
  align-items: start;
}

.hero-left {
  padding-top: 4rem;
  max-width: 520px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--accent-2);
}

.hero-left h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 1.6rem;
  font-weight: 600;
}
.hero-left h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-text {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-mid);
  max-width: 420px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 2.2rem;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-trust span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  background: rgba(255,255,255,0.6);
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

/* =========================
   HERO IMAGES
========================= */
.hero-right {
  padding-top: 1.2rem;
}

.hero-images {
  display: grid;
  grid-template-columns: repeat(3, 160px);
  grid-template-rows: 80px 176px 80px 176px;
  gap: 10px;
  width: fit-content;
  margin-left: auto;
}

.gallery {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.gallery-1 { grid-column: 1; grid-row: 2 / span 2; }
.gallery-2 { grid-column: 2; grid-row: 1 / span 2; }
.gallery-3 { grid-column: 3; grid-row: 1 / span 2; }
.gallery-4 { grid-column: 3; grid-row: 3 / span 2; }
.gallery-5 { grid-column: 2; grid-row: 3 / span 2; }

.gallery img {
  transition: transform 0.5s ease;
}
.gallery:hover img { transform: scale(1.04); }

.hero-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 1rem;
  margin-left: auto;
  width: fit-content;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-mid);
  backdrop-filter: blur(8px);
}

/* =========================
   SECTION SHARED
========================= */
.section { padding: 100px 0; }

.section,
section[id] {
  scroll-margin-top: 90px;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: var(--accent);
}

.section-heading { max-width: 720px; margin-bottom: 52px; }
.section-heading.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading.center .section-label { justify-content: center; }
.section-heading.center .section-label::before { display: none; }

.section-heading h2,
.contact-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.section-description {
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.65;
}
/* text wrap improvement */
.info-card p,
.service-card p,
.dest-info p,
.section-description,
.hero-text,
.contact-item span,
.promise-item,
.contact-left .section-description {
  color: var(--muted);
}
/* =========================
   ABOUT
========================= */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  clear: both;
  position: relative;
  z-index: 2;
}
.about-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  height: auto;
  margin-bottom: 52px;
  overflow: hidden;
}

.about-photos img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 18px;
}

@media (max-width: 700px) {
  .about-photos {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .about-photos img {
    aspect-ratio: 4/3;
  }
}
.info-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.25s, box-shadow 0.25s;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.info-card h3,
.service-card h3,
.dest-info h3 {
  font-family: var(--font-body);
  font-weight: 600;
}
.info-card p { color: var(--muted); font-size: 0.97rem; }


/* =========================
   CARD HOVER CONSISTENCY
========================= */

.info-card,
.service-card,
.dest-card,
.review-card,
.contact-item,
.step-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover,
.service-card:hover,
.dest-card:hover,
.review-card:hover,
.contact-item:hover,
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* =========================
   SERVICES
========================= */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 40px;
}

.service-card {
  background: var(--white);
  padding: 32px 28px;
  transition: background 0.2s;
}
.service-card:hover { background: var(--cream); }

.service-number {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 10px;
  line-height: 1;
}

.service-card h3 {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.service-card p { color: var(--muted); font-size: 0.96rem; }

.services-cta { text-align: center; }

/* =========================
   REVIEWS
========================= */
.reviews { background: var(--sand); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  transition: opacity 0.3s ease;
}

.reviews-grid.fade {
  opacity: 0;
}

.review-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
}

.stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-card p {
  font-family: var(--font-body);
  font-size: 1.12rem;
  font-style: normal;
  line-height: 1.75;
  margin-bottom: 16px;
  color: var(--ink);
  text-wrap: pretty;
}

.reviewer {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
}
.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.reviews-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.reviews-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--white);
  font-size: 1.6rem;
  color: var(--ink-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.reviews-arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.08);
}

.reviews-page {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  min-width: 36px;
  text-align: center;
}
/* =========================
   CONTACT
========================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.contact {
  padding-bottom: 120px;
}
.contact-left h2 { margin-bottom: 14px; }

.contact-note {
  margin-top: 2rem;
  padding: 16px 20px;
  background: var(--sand);
  border-radius: var(--r-md);
  font-size: 0.95rem;
  color: var(--ink-mid);
}


/* =========================
   FOOTER
========================= */
.site-footer {
  background: var(--ink);
  padding: 36px 0 80px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--sand);
}
.footer-brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.footer-nav {
  display: flex;
  gap: 24px;
}
.footer-nav a {
  font-size: 0.88rem;
  color: rgba(237,229,216,0.55);
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--sand); }

.footer-copy {
  font-size: 0.84rem;
  color: rgba(237,229,216,0.4);
}

/* =========================
   DESTINATIONS PAGE
========================= */
.hero-wrap--destinations::after {
  height: 60px;
}

.dest-hero {
  padding: 3rem 0 2rem;
  position: relative;
  z-index: 1;
}

.dest-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 11vw, 7rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 10px 0 16px;
}
.dest-hero-title em {
  font-style: italic;
  color: var(--accent);
}

.dest-hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 500px;
}

.dest-section { padding: 80px 0; }
.dest-section--alt { background: var(--white); }

.dest-section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.dest-section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

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

.dest-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.28s, box-shadow 0.28s;
}
.dest-section--alt .dest-card {
  background: var(--cream);
}
.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.dest-img {
  height: 220px;
  overflow: hidden;
}
.dest-img img {
  transition: transform 0.5s ease;
}
.dest-card:hover .dest-img img { transform: scale(1.06); }

.dest-info {
  padding: 22px 22px 26px;
}
.dest-info h3 {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.dest-info p {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.6;
}

.dest-cta-section {
  padding: 80px 0;
  background: var(--sand);
}

.dest-cta-box {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.dest-cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.dest-cta-box p {
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 2rem;
}
.dest-cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-left { max-width: 100%; padding-top: 1.5rem; }
  .hero-images { margin-left: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid,
  .services-grid,
  .reviews-grid,
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {

  .hero {
    padding-top: 2rem;
  }

  .hero-left {
    padding-top: 1rem;
  }

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

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-wrap::after { height: 50px; }


  .hero-left h1 {
    font-size: clamp(2.6rem, 11vw, 3.8rem);
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-images {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
    width: 100%;
  }
  .gallery-1 { grid-column: 1; grid-row: 1; }
  .gallery-2 { grid-column: 2; grid-row: 1; }
  .gallery-3 { grid-column: 1; grid-row: 2; }
  .gallery-4 { grid-column: 2; grid-row: 2; }
  .gallery-5 { grid-column: 1 / span 2; grid-row: 3; height: 180px; 
}


  .hero-badge {
    margin-left: 0;
  }

  .about-grid,
  .services-grid,
  .reviews-grid,
  .contact-grid,
  .dest-grid {
    grid-template-columns: 1fr;
  }
.services-grid {
  border-radius: var(--r-lg);
}
  .section {
    padding: 68px 0;
  }

  .review-card {
    padding: 24px 20px;
  }

  .dest-img {
    height: 200px;
  }

  .float-socials {
    right: 16px;
    bottom: 16px;
  }

  .float-btn {
    width: 44px;
    height: 44px;
  }

  .footer-row {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-copy {
    margin-top: 6px;
  }

.dest-hero-title {
  font-size: clamp(2rem, 9vw, 3rem);
}

}
/* =========================
   FLOATING SOCIAL BUTTONS
========================= */
.float-socials {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}
/* tap feedback on mobile */
.contact-item:active,
.float-btn:active {
  transform: scale(0.97);
  opacity: 0.85;
}

.float-whatsapp  { background: #25d366; }
.float-facebook  { background: #1877f2; }
.contact-box {
  display: grid;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, transform 0.2s;
}
.contact-item:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.contact-icon--whatsapp { background: #e7f9ee; color: #25d366; }
.contact-icon--facebook { background: #e7f0fd; color: #1877f2; }
.contact-icon--tiktok   { background: #f0f0f0; color: #010101; }
.contact-icon--email    { background: #fef3e7; color: #e07b2a; }

.contact-item:hover .contact-icon--whatsapp { background: #d0f4e0; }
.contact-item:hover .contact-icon--facebook { background: #d0e4fb; }
.contact-item:hover .contact-icon--tiktok   { background: #e0e0e0; }
.contact-item:hover .contact-icon--email    { background: #fde8d0; }

.contact-item span {
  display: block;
  font-size: 0.83rem;
  color: var(--muted);
  margin-bottom: 2px;
}
.contact-item strong {
  font-size: 1rem;
  font-weight: 600;
}
.contact-promise {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.promise-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.97rem;
  color: var(--ink-mid);
}

.promise-item span {
  font-size: 1.1rem;
  flex-shrink: 0;
}
/* =========================
   HOW IT WORKS
========================= */
.howitworks { background: var(--white); }

.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
}

.step-card {
  flex: 1;
  background: var(--cream);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  border: 1px solid var(--line);
  transition: transform 0.25s, box-shadow 0.25s;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--accent);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 12px;
}

.step-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.step-card p { color: var(--muted); font-size: 0.95rem; }

.step-arrow {
  font-size: 1.8rem;
  color: var(--accent);
  opacity: 0.35;
  padding: 0 16px;
  flex-shrink: 0;
}

.steps-cta { text-align: center; }

/* =========================
   ABOUT — PORTRAIT
========================= */
.about-top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 52px;
  align-items: center;
  margin-bottom: 52px;
}

.about-portrait {
  position: relative;
  width: 220px;
}

.portrait-img {
  width: 220px;
  height: 270px;
  border-radius: 999px 999px var(--r-xl) var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.portrait-badge {
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.portrait-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

/* =========================
   FOOTER LOGO
========================= */
.footer-brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #f5f1ea;
  padding: 0;
}

/* =========================
   HAMBURGER NAV
========================= */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--white);
  cursor: pointer;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.burger-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-open span:nth-child(2) { opacity: 0; }
.burger-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-cta-mobile { display: none; }

/* =========================
   RESPONSIVE UPDATES
========================= */

@media (max-width: 700px) {

  /* Hamburger */
  .nav-burger { display: flex; }
  .nav-cta-desktop { display: none; }
  .nav-cta-mobile { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    z-index: 100;
  }
  .nav-links.nav-open { display: flex; }
  .nav-links li a {
    display: block;
    padding: 13px 24px;
    font-size: 1rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-links li:last-child a { border-bottom: none; }
.nav-cta-mobile a {
  color: #fff;
  font-weight: 700;
  display: block;
  margin: 8px 16px;
  text-align: center;
  border-radius: 999px;
}


  /* How it works — stack vertically */
  .steps-grid {
    flex-direction: column;
    gap: 16px;
  }
.step-arrow {
  transform: rotate(90deg);
  padding: 0;
  text-align: center;
  width: 100%;
  display: block;
}
  .step-card { width: 100%; }

  /* About portrait — center on mobile */
  .about-top {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 32px;
  }
  .about-intro .section-label {
    justify-content: center;
  }
  .about-intro .section-label::before { display: none; }

  /* Footer */
  .footer-brand-wrap { justify-content: center; }
}

@media (max-width: 1100px) {
  .about-top {
    grid-template-columns: 200px 1fr;
    gap: 36px;
  }
  .steps-grid { gap: 8px; }
  .step-arrow { padding: 0 8px; }
}
img.emoji {
  width: 1em;
  height: 1em;
  vertical-align: -0.1em;
}