:root {
  --bg: #f6f0e8;
  --surface: #fff9f2;
  --surface-2: #121212;
  --text: #1f1b17;
  --muted: #6f6359;
  --line: rgba(31, 27, 23, 0.12);
  --accent: #b62420;
  --accent-dark: #8e1715;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  --radius: 28px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: var(--bg);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(246, 240, 232, 0.75);
  border-bottom: 1px solid rgba(31, 27, 23, 0.06);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 84px;
}
.brand img, .footer-logo { width: 104px; height: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.96rem;
}
.site-nav a:not(.btn):hover, .footer-actions a:hover { color: var(--accent); }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary, .btn-nav {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover, .btn-nav:hover { background: var(--accent-dark); }
.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.18); }
.btn-light {
  background: var(--white);
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media, .hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.82) 0%, rgba(7, 7, 7, 0.6) 45%, rgba(7, 7, 7, 0.22) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.55));
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 7rem 0 5rem;
  max-width: 760px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0 0 1rem;
  color: var(--accent);
}
.hero .eyebrow { color: #ffb3af; }

h1, h2, h3 { margin: 0; line-height: 1.02; }
h1, h2 { font-family: 'Playfair Display', serif; }
h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  max-width: 12ch;
}
h2 { font-size: clamp(2.25rem, 5vw, 4rem); }
h3 { font-size: 1.35rem; }

.hero-text,
.section-heading p,
.lead-copy p,
.story-copy p,
.cta-band-wrap p,
.faq-list p,
.usp-card p,
.bao-card p,
.footer-copy,
.site-footer p {
  line-height: 1.75;
}
.hero-text {
  max-width: 58ch;
  font-size: 1.1rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.92);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.section { padding: 6.5rem 0; }
.section-dark {
  background: var(--surface-2);
  color: var(--white);
}
.accent-section {
  background: linear-gradient(180deg, #fff7ef 0%, #f1dfd4 100%);
}

.section-grid,
.story-grid,
.faq-grid,
.cta-band-wrap,
.footer-grid {
  display: grid;
  gap: 2rem;
}
.intro-grid,
.faq-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}
.story-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}
.story-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 560px;
  object-fit: cover;
  width: 100%;
}

.lead-copy p, .story-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
}
.story-copy p:last-child, .lead-copy p:last-child { margin-bottom: 0; }

.section-dark .eyebrow,
.section-dark h2,
.section-dark p,
.section-dark h3,
.section-dark .country {
  color: var(--white);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2.5rem;
}
.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-heading p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.bao-grid,
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.bao-card,
.usp-card {
  border-radius: 24px;
  overflow: hidden;
}
.bao-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.bao-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.bao-card-content { padding: 1.5rem; }

.country {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #ffb3af;
  margin-bottom: 0.7rem;
}
.bao-card p,
.usp-card p {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.usp-card {
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(182, 36, 32, 0.1);
  padding: 1.75rem;
  box-shadow: 0 10px 30px rgba(97, 39, 33, 0.08);
}
.usp-card p { color: var(--muted); }

.section-cta { margin-top: 2.5rem; }
.section-cta p {
  max-width: 60ch;
  margin: 0 auto 1.35rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.cta-band {
  background: var(--accent);
  color: var(--white);
}
.cta-band-wrap {
  grid-template-columns: 1.2fr auto;
  align-items: center;
}
.cta-band .eyebrow { color: #ffd6d2; }
.cta-band p {
  margin: 1rem 0 0;
  max-width: 58ch;
}

.faq-list {
  display: grid;
  gap: 1rem;
}
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem 1.25rem;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  position: relative;
  padding-right: 1.5rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: -0.15rem;
  font-size: 1.4rem;
  color: var(--accent);
}
.faq-list details[open] summary::after { content: '–'; }
.faq-list p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.site-footer {
  background: #111;
  color: rgba(255, 255, 255, 0.86);
  padding: 4rem 0;
}
.footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  align-items: start;
}
.site-footer h3 {
  font-size: 1rem;
  margin-bottom: 0.8rem;
}
.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}
.footer-copy {
  margin-top: 1rem !important;
  max-width: 24ch;
}
.footer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 1rem;
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    background: rgba(255, 249, 242, 0.98);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .nav-toggle { display: block; }

  .intro-grid,
  .story-grid,
  .faq-grid,
  .cta-band-wrap,
  .footer-grid,
  .bao-grid,
  .usp-grid {
    grid-template-columns: 1fr;
  }

  .story-image img { min-height: 380px; }
}

@media (max-width: 640px) {
  .section { padding: 4.75rem 0; }
  .hero { min-height: 78svh; }
  .hero-content { padding: 6rem 0 4rem; }
  .brand img, .footer-logo { width: 84px; }
  .btn, .btn-light, .btn-primary, .btn-secondary { width: 100%; }
  .hero-actions { width: 100%; }
}


/* Requested refinements */
.accent-section .eyebrow,
.accent-section h2,
.accent-section h3 {
  color: var(--accent);
}

.accent-section .section-heading p,
.accent-section .usp-card p {
  color: var(--muted);
}


.site-header {
  transition: min-height 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.nav-wrap {
  transition: min-height 0.25s ease, padding 0.25s ease;
  padding: 0.65rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
  border-radius: 18px;
  transition: padding 0.25s ease, transform 0.25s ease;
}

.brand img {
  transition: width 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled .nav-wrap {
  min-height: 50px;
  padding: 0.15rem 0;
}

.site-header.is-scrolled .brand {
  padding: 0.2rem 0.45rem;
}

.site-header.is-scrolled .brand img {
  width: 62px;
}

.site-header.is-scrolled .site-nav {
  font-size: 0.88rem;
}




/* Custom reveal animations based on the existing .wow hooks
   Replaces WOW.js + Animate.css without touching layout/navbar styles */
.js .wow {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.65s;
  will-change: opacity, transform;
}

.js .wow.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}

/* Stagger repeated items for a calmer effect */
.js .bao-grid .wow:nth-child(2),
.js .usp-grid .wow:nth-child(2),
.js .faq-list .wow:nth-child(2) { transition-delay: 0.05s; }

.js .bao-grid .wow:nth-child(3),
.js .usp-grid .wow:nth-child(3),
.js .faq-list .wow:nth-child(3) { transition-delay: 0.10s; }

.js .bao-grid .wow:nth-child(4),
.js .usp-grid .wow:nth-child(4),
.js .faq-list .wow:nth-child(4) { transition-delay: 0.15s; }

.js .bao-grid .wow:nth-child(5),
.js .usp-grid .wow:nth-child(5),
.js .faq-list .wow:nth-child(5) { transition-delay: 0.20s; }

.js .bao-grid .wow:nth-child(6),
.js .usp-grid .wow:nth-child(6) { transition-delay: 0.25s; }

/* Mobile: shorter travel + faster easing to prevent little flashes */
@media (max-width: 768px) {
  .js .wow {
    transform: translate3d(0, 10px, 0);
    transition-duration: 0.42s;
    transition-timing-function: ease-out;
    transition-delay: 0s !important;
  }

  .js .wow.is-visible {
    transition-duration: 0.42s;
    transition-timing-function: ease-out;
    transition-delay: 0s !important;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .js .wow,
  .js .wow.is-visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
  }
}


/* Inline SVG icons */
.icon-svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-block;
}

.contact-item .icon-svg {
  color: #ffb3af;
}


/* Icon alignment fix */
.contact-list {
  display: block;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  gap: 0.75rem;
  line-height: 1.4;
}

.contact-item span {
  display: inline-block;
  vertical-align: middle;
}

.icon-svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -1px;
}


/* Bottom-align icons with following text */
.contact-item {
  align-items: flex-end;
}

.icon-svg {
  align-self: flex-end;
  position: relative;
  top: 0;
  bottom: 0;
  margin-bottom: 0.08em;
}
