/* ============================================================
   ARCADIA TRAVEL GROUP — Website Stylesheet
   ============================================================ */

/* --- Font Faces --- */
@font-face {
  font-family: 'PP Museum';
  src: url('fonts/PPMuseum-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PP Museum';
  src: url('fonts/PPMuseum-Ultrabold.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PP Museum';
  src: url('fonts/PPMuseum-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'PP Neue Montreal';
  src: url('fonts/PPNeueMontreal-Book.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PP Neue Montreal';
  src: url('fonts/PPNeueMontreal-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PP Neue Montreal';
  src: url('fonts/PPNeueMontreal-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PP Neue Montreal';
  src: url('fonts/PPNeueMontreal-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --- CSS Custom Properties --- */
:root {
  /* Arcadia palette — warm travel tones derived from GP brand */
  --navy:       #1A2028;
  --charcoal:   #2F3338;
  --warm-dark:  #1E2530;
  --slate:      #3A4553;
  --sand:       #F4F1EC;
  --cream:      #FAF8F5;
  --white:      #FFFFFF;
  --ocean:      #5BAAD4;
  --ocean-deep: #1A6FA8;
  --ocean-light:#E3F4FE;
  --amber:      #E8A840;
  --amber-soft: #F5D48A;
  --sage:       #7A9E7E;
  --terracotta: #C4755B;
  --gray-10:    #EAECEE;
  --gray-20:    #C8CDD3;
  --gray-40:    #9DA2A8;
  --gray-60:    #6B7279;

  /* Typography */
  --font-display: 'PP Museum', 'Georgia', serif;
  --font-body:    'PP Neue Montreal', 'Inter', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --content-max: 1200px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-weight: 900;
  font-size: clamp(42px, 6vw, 80px);
  color: var(--white);
}

h2 {
  font-weight: 900;
  font-size: clamp(32px, 4vw, 56px);
  color: var(--navy);
  margin-bottom: 24px;
}

h3 {
  font-weight: 400;
  font-size: clamp(22px, 2.5vw, 32px);
  color: var(--charcoal);
  margin-bottom: 16px;
}

h4 {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ocean);
}

.subtitle {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
  color: var(--gray-60);
}

p {
  margin-bottom: 1em;
  max-width: 680px;
}

.lead {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.65;
  color: var(--slate);
}

/* --- Layout --- */
.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}

.section {
  padding: var(--section-pad) 0;
}

.section--dark {
  background: var(--navy);
  color: var(--white);
}
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.75); }
.section--dark .label { color: var(--amber); }

.section--sand {
  background: var(--sand);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}

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

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(26, 32, 40, 0.95);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 2px 40px rgba(0,0,0,0.15);
}

.nav__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__logo svg {
  height: 32px;
  width: auto;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  color: var(--white);
  letter-spacing: -0.02em;
}

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

.nav__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
  letter-spacing: 0.3px;
}

.nav__link:hover { color: var(--white); }
.nav__link--active { color: var(--white); }

.nav__cta {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--navy);
  background: var(--amber);
  padding: 10px 24px;
  border-radius: 6px;
  transition: all 0.3s var(--ease-out);
}
.nav__cta:hover {
  background: var(--amber-soft);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 32, 40, 0.85) 0%,
    rgba(26, 37, 48, 0.6) 50%,
    rgba(26, 32, 40, 0.4) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 140px clamp(24px, 4vw, 60px) 80px;
}

.hero__tagline {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--amber);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}

.hero h1 {
  max-width: 800px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero__desc {
  font-size: clamp(17px, 1.6vw, 20px);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.7s forwards;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.9s forwards;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.btn--primary {
  background: var(--amber);
  color: var(--navy);
}
.btn--primary:hover {
  background: var(--amber-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 168, 64, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
}

.btn--dark {
  background: var(--navy);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  transition: all 0.4s var(--ease-out);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.card--dark {
  background: var(--warm-dark);
  color: var(--white);
}
.card--dark p { color: rgba(255,255,255,0.7); }

.card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ocean-light);
  border-radius: 10px;
  color: var(--ocean-deep);
}

.card__number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 48px;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}

/* --- Brand Cards (Our Brands page) --- */
.brand-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  transition: all 0.5s var(--ease-out);
}
.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.brand-card__image {
  height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.brand-card__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(26,32,40,0.4));
}

.brand-card__body {
  padding: 36px;
}

.brand-card__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  margin-bottom: 4px;
}

.brand-card__niche {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 16px;
}

.brand-card__quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: var(--slate);
  padding-left: 16px;
  border-left: 3px solid var(--amber);
  margin-top: 20px;
}

/* --- Stats Row --- */
.stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat__number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--amber);
  line-height: 1;
}

.stat__label {
  font-weight: 500;
  font-size: 14px;
  color: var(--gray-60);
  margin-top: 8px;
}

.section--dark .stat__label {
  color: rgba(255,255,255,0.6);
}

/* --- Testimonial --- */
.testimonial {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial__text {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 32px;
}

.testimonial__author {
  font-weight: 500;
  font-size: 16px;
  color: var(--amber);
}

.testimonial__role {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* --- Process / Steps --- */
.steps {
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-10);
  counter-increment: step;
}

.step__number::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 40px;
  color: var(--ocean);
  opacity: 0.3;
}

/* --- FAQ / Accordion --- */
.faq-item {
  border-bottom: 1px solid var(--gray-10);
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  color: var(--charcoal);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-item__question::after {
  content: '+';
  font-size: 24px;
  color: var(--ocean);
  transition: transform 0.3s;
}

.faq-item.active .faq-item__question::after {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer p {
  padding-bottom: 24px;
  color: var(--gray-60);
}

/* --- Footer --- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  padding: 60px 0 40px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer__brand {
  max-width: 320px;
}

.footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  color: rgba(255,255,255,0.4);
}

.footer__links h4 {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 16px;
}

.footer__links a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  padding: 4px 0;
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--white); }

.footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.footer__backed {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* --- Owner Type Blocks (Homepage) --- */
.owner-block {
  display: flex;
  flex-direction: column;
  padding: 44px;
  border-radius: 16px;
  transition: all 0.5s var(--ease-out);
  cursor: pointer;
  position: relative;
}
.owner-block:hover {
  transform: translateY(-6px);
}

.owner-block--exit {
  background: linear-gradient(145deg, rgba(232,168,64,0.08) 0%, rgba(30,37,48,0.95) 100%);
  border: 1.5px solid rgba(232,168,64,0.2);
}
.owner-block--exit:hover {
  border-color: rgba(232,168,64,0.45);
  box-shadow: 0 24px 60px rgba(232,168,64,0.1);
}

.owner-block--growth {
  background: linear-gradient(145deg, rgba(91,170,212,0.08) 0%, rgba(30,37,48,0.95) 100%);
  border: 1.5px solid rgba(91,170,212,0.2);
}
.owner-block--growth:hover {
  border-color: rgba(91,170,212,0.45);
  box-shadow: 0 24px 60px rgba(91,170,212,0.1);
}

.owner-block__icon {
  margin-bottom: 20px;
}

.owner-block__list {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
  flex: 1;
}
.owner-block__list li {
  position: relative;
  padding: 10px 0 10px 24px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.owner-block__list li:last-child { border-bottom: none; }
.owner-block__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.owner-block--exit .owner-block__list li::before {
  background: var(--amber);
  opacity: 0.5;
}
.owner-block--growth .owner-block__list li::before {
  background: var(--ocean);
  opacity: 0.5;
}

.owner-block__cta {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: all 0.3s;
}
.owner-block--exit .owner-block__cta { color: var(--amber); }
.owner-block--growth .owner-block__cta { color: var(--ocean); }
.owner-block:hover .owner-block__cta { letter-spacing: 1px; }

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Scroll indicator --- */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1s 1.5s both;
}

.scroll-hint__line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* --- Page Header (inner pages) --- */
.page-header {
  position: relative;
  padding: 180px 0 100px;
  background: var(--navy);
  overflow: hidden;
}

.page-header__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.page-header h1 {
  font-size: clamp(38px, 5vw, 64px);
  margin-bottom: 16px;
}

.page-header .subtitle {
  color: rgba(255,255,255,0.6);
}

.page-header .label {
  margin-bottom: 16px;
  display: block;
}

/* --- Contact form --- */
.contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-10);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--ocean);
}

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

/* --- Responsive --- */
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }

  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 24px clamp(24px, 4vw, 60px);
    gap: 16px;
  }

  .owner-block { padding: 32px; }
  .stats { gap: 32px; justify-content: center; }
  .step { grid-template-columns: 1fr; gap: 12px; }
  .footer__inner { flex-direction: column; }
  .footer__bottom { flex-direction: column; gap: 8px; }

  .hero { min-height: 90vh; }
}

@media (max-width: 600px) {
  .hero__actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .card { padding: 28px; }
  .brand-card__body { padding: 24px; }
}
