/* ============================================================
   ORIGINS TRAVEL GROUP — Main Stylesheet
   ============================================================ */

/* ── Variables ── */
:root {
  --earth-dark:  #1C0E06;
  --earth:       #2C1A0E;
  --brown:       #6B3A1E;
  --amber:       #C87820;
  --gold:        #E0A030;
  --cream:       #F7F2EB;
  --cream-alt:   #EFE7D9;
  --border:      #DCCEB8;
  --muted:       #9A826A;
  --white:       #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --container:    1200px;
  --pad:          clamp(16px, 4vw, 32px);
  --section-py:   clamp(72px, 9vw, 120px);

  --ease:     cubic-bezier(0.25, 0.10, 0.25, 1.00);
  --ease-out: cubic-bezier(0.00, 0.00, 0.20, 1.00);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: var(--font-body);
  color: var(--earth);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img   { display: block; max-width: 100%; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
address { font-style: normal; }
button  { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Layout ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section       { padding: var(--section-py) 0; }
.section--alt  { background: var(--cream-alt); }

/* ── Typography ── */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.eyebrow--light { color: rgba(255,255,255,0.55); }

.heading-2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 500;
  line-height: 1.12;
  color: var(--earth);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.heading-2--light { color: var(--white); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}
.section-header--light .heading-2   { color: var(--white); }
.section-header--light .section-lead { color: rgba(255,255,255,0.7); }

.section-lead {
  font-size: 1.075rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 250ms var(--ease);
}
.btn--ghost {
  border: 1.5px solid rgba(255,255,255,0.55);
  color: var(--white);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* ── Tags ── */
.tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 100px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 350ms var(--ease), box-shadow 350ms var(--ease);
}
.nav--scrolled {
  background: rgba(28, 14, 6, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.07);
}

.nav__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.nav__logo-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.15);
  flex-shrink: 0;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}
.nav__logo-origins {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--white);
}
.nav__logo-sub {
  font-size: 0.57rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.5);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__link {
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 200ms;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--amber);
  transition: right 250ms var(--ease);
}
.nav__link:hover         { color: var(--white); }
.nav__link:hover::after  { right: 0; }
.nav__link--cta          { color: var(--amber); }
.nav__link--cta:hover    { color: var(--gold); }
.nav__link--cta::after   { background: var(--gold); }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  padding: 2px 0;
}
.nav__burger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: transform 280ms var(--ease), opacity 200ms;
}
.nav__burger.is-open span:nth-child(1) { transform: rotate(45deg) translate(4.7px, 4.7px); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(4.7px, -4.7px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28, 14, 6, 0.42) 0%,
    rgba(28, 14, 6, 0.62) 55%,
    rgba(28, 14, 6, 0.82) 100%
  );
}

.hero__content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 0 var(--pad);
  max-width: 820px;
}
.hero__icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.12);
  margin: 0 auto 28px;
}
.hero__eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(46px, 7.5vw, 92px);
  font-weight: 400;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  margin-bottom: 52px;
  letter-spacing: 0.03em;
}

/* Scroll hint */
.hero__scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 200ms;
}
.hero__scroll:hover   { color: rgba(255,255,255,0.75); }
.hero__scroll-text    { order: 1; }
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.55), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.55; transform: scaleY(1); }
  50%       { opacity: 0.25; transform: scaleY(0.6); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats { background: var(--earth); }
.stats__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: stretch;
}
.stats__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 16px;
  gap: 7px;
}
.stats__num {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 500;
  color: var(--amber);
  line-height: 1;
}
.stats__label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.stats__divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  margin: 20px 0;
  align-self: stretch;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about__content > p {
  color: var(--brown);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}
.about__lead {
  font-size: 1.1rem;
  color: var(--earth) !important;
  font-weight: 400;
  margin-bottom: 1.5rem !important;
}
.about__meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.about__meta-item {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 12px;
  font-size: 0.875rem;
}
.about__meta-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 1px;
}
.about__meta-value { color: var(--earth); }

.about__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about__logo-wrap {
  background: var(--cream-alt);
  border-radius: 50%;
  width: min(400px, 100%);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px;
  border: 1px solid var(--border);
}
.about__logo {
  width: 100%;
  mix-blend-mode: multiply;
}

/* ============================================================
   BRANDS GRID
   ============================================================ */
.brands__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.brand-card {
  position: relative;
  background: var(--white);
  border-radius: 4px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease), border-color 300ms;
}
.brand-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms var(--ease);
}
.brand-card:not(.brand-card--soon):hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 52px rgba(44, 26, 14, 0.11);
  border-color: transparent;
}
.brand-card:not(.brand-card--soon):hover::before { transform: scaleX(1); }

.brand-card__logo-area {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 28px 24px;
  min-height: 200px;
}
.brand-card__logo {
  max-width: 190px;
  max-height: 185px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 24px 28px;
  border-top: 1px solid var(--border);
}
.brand-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding-top: 20px;
}
.brand-card__desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.68;
  flex: 1;
}
.brand-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--amber);
  margin-top: 4px;
  transition: color 200ms, gap 220ms var(--ease);
}
.brand-card__link:hover { color: var(--brown); gap: 10px; }
.brand-card__link--disabled {
  color: var(--border);
  cursor: default;
  pointer-events: none;
}

/* Coming Soon cards */
.brand-card--soon {
  background: var(--cream);
  border-style: dashed;
  border-color: var(--border);
}
.brand-card__badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--earth);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.brand-card__logo-area--placeholder {
  background: var(--cream-alt);
  min-height: 200px;
}
.brand-card__placeholder-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--brown);
  text-align: center;
  line-height: 1.25;
  opacity: 0.6;
}
.brand-card__placeholder-name span {
  color: var(--muted);
  font-weight: 400;
}

/* ============================================================
   APPROACH
   ============================================================ */
.approach {
  position: relative;
  overflow: hidden;
}
.approach__media {
  position: absolute;
  inset: 0;
}
.approach__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.approach__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(28,14,6,0.80), rgba(28,14,6,0.92));
}
.approach__content {
  position: relative;
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}
.approach__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-top: 16px;
}
.approach__pillar { text-align: center; }
.approach__pillar-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  color: var(--amber);
}
.approach__pillar-icon svg { width: 100%; height: 100%; }
.approach__pillar-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
}
.approach__pillar-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.78;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.contact__intro {
  color: var(--muted);
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.contact__item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  align-items: start;
}
.contact__item-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 2px;
}
.contact__item-value {
  font-size: 0.95rem;
  color: var(--earth);
  line-height: 1.65;
}
.contact__email {
  font-size: 1rem;
  font-weight: 500;
  color: var(--amber);
  word-break: break-all;
  transition: color 200ms;
}
.contact__email:hover { color: var(--brown); }
.contact__address { line-height: 1.85; }

.contact__visual { display: flex; justify-content: center; }
.contact__card {
  background: var(--cream-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 52px 40px;
  text-align: center;
  width: 100%;
  max-width: 380px;
}
.contact__logo {
  max-width: 190px;
  margin: 0 auto 28px;
  mix-blend-mode: multiply;
}
.contact__card-city {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--earth);
  margin-bottom: 16px;
}
.contact__card-reg {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.73rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  letter-spacing: 0.03em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--earth-dark);
  padding: 80px 0 0;
  color: rgba(255,255,255,0.6);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
  width: 190px;
  mix-blend-mode: screen;
  filter: brightness(1.1);
  margin-bottom: 14px;
}
.footer__tagline {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.footer__heading {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer__link {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.58);
  transition: color 200ms;
}
.footer__link:hover { color: var(--white); }
.footer__address {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.85;
  margin-top: 20px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.73rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.02em;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity  580ms var(--ease-out),
    transform 580ms var(--ease-out);
}
[data-animate].visible { opacity: 1; transform: none; }
[data-delay="75"]  { transition-delay: 75ms; }
[data-delay="150"] { transition-delay: 150ms; }
[data-delay="225"] { transition-delay: 225ms; }
[data-delay="300"] { transition-delay: 300ms; }

/* ============================================================
   RESPONSIVE — Tablet ≤ 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .brands__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .approach__pillars {
    gap: 36px;
  }
}

/* ── Mobile ≤ 768px ── */
@media (max-width: 768px) {
  /* Nav mobile */
  .nav__burger { display: flex; }
  .nav__menu {
    display: none;
    position: fixed;
    inset: 72px 0 0 0;
    background: rgba(28, 14, 6, 0.98);
    padding: 44px var(--pad);
    flex-direction: column;
    overflow-y: auto;
  }
  .nav__menu.is-open { display: flex; }
  .nav__list { flex-direction: column; align-items: flex-start; gap: 28px; }
  .nav__link { font-size: 1rem; letter-spacing: 0.1em; }

  /* About */
  .about__grid { grid-template-columns: 1fr; }
  .about__visual { order: -1; }
  .about__logo-wrap { width: min(280px, 85%); margin: 0 auto; }

  /* Brands */
  .brands__grid { grid-template-columns: 1fr; }

  /* Approach */
  .approach__pillars { grid-template-columns: 1fr; gap: 44px; }

  /* Contact */
  .contact__grid { grid-template-columns: 1fr; }
  .contact__card { max-width: 100%; padding: 36px 28px; }

  /* Stats */
  .stats__container { flex-wrap: wrap; }
  .stats__item      { flex: 0 0 50%; }
  .stats__divider   { display: none; }
  .stats__item:nth-child(1),
  .stats__item:nth-child(3) { border-bottom: 1px solid rgba(255,255,255,0.07); }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 6px; text-align: center; }
}

/* ── Small mobile ≤ 480px ── */
@media (max-width: 480px) {
  .hero__heading { font-size: 40px; }
  .about__meta-item { grid-template-columns: 1fr; gap: 3px; }
  .contact__item { grid-template-columns: 80px 1fr; }
}
