/* ============================================================
   GOLD TRAVEL GROUP — Luxury Editorial Redesign
   Aesthetic: Refined luxury meets editorial travel magazine
   Typography: Cormorant Garamond (display) + Outfit (body)
   ============================================================ */

/* ── Custom Properties ── */
:root {
  --black:     #0a0a0a;
  --charcoal:  #1a1a1a;
  --dark:      #111111;
  --gold:      #c8a455;
  --gold-light:#dbbf72;
  --gold-pale: #f5ecd7;
  --cream:     #faf8f4;
  --white:     #ffffff;
  --text:      #2d2d2d;
  --text-muted:#6b6b6b;
  --text-light:rgba(255,255,255,0.7);
  --border:    rgba(0,0,0,0.08);
  --radius:    4px;
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Container ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ── Section Typography ── */
.section-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}
.section-tag--gold { color: var(--gold-light); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
}
.section-title--light { color: var(--white); }
.section-title--light em { color: var(--gold-light); }

.section-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 520px;
  margin-top: 20px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 64px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 0;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-gold-solid {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold-solid:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 12px 40px rgba(200,164,85,0.3);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn-dark:hover {
  background: var(--black);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

.btn-header {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
  padding: 10px 24px;
  font-size: 0.75rem;
}
.btn-header:hover {
  background: var(--charcoal);
  color: var(--white);
}
.site-header.scrolled .btn-header {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.site-header.scrolled .btn-header:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

.btn-full { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: transparent;
  transition: all 0.5s var(--ease);
}
.site-header.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.site-header.header-hide {
  transform: translateY(-100%);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 48px);
  height: 80px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.logo-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}
.site-header.scrolled .logo-sub { color: rgba(255,255,255,0.5); }

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.main-nav a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  color: var(--text);
  transition: color 0.3s var(--ease);
}
.main-nav a:hover { color: var(--gold); }
.site-header.scrolled .main-nav a { color: rgba(255,255,255,0.7); }
.site-header.scrolled .main-nav a:hover { color: var(--gold-light); }

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}
.header-phone {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color 0.3s var(--ease);
}
.header-phone:hover { color: var(--gold); }
.site-header.scrolled .header-phone { color: rgba(255,255,255,0.5); }
.site-header.scrolled .header-phone:hover { color: var(--gold-light); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 36px;
  height: 36px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  height: 1px;
  background: var(--charcoal);
  transition: background 0.3s var(--ease);
  width: 100%;
}
.hamburger span:last-child { width: 60%; }
.site-header.scrolled .hamburger span { background: var(--white); }

/* Mobile overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav-overlay nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 2rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  transition: color 0.3s;
}
.mobile-nav-close:hover { color: var(--white); }
.mobile-nav-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  padding: 8px 0;
  transition: color 0.3s;
}
.mobile-nav-link:hover { color: var(--gold-light); }
.mobile-nav-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 20px 0;
}
.mobile-nav-phone {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
}
.mobile-nav-btn { margin-top: 8px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.15) 40%, rgba(10,10,10,0.6) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.3) 0%, transparent 50%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  animation: fadeDown 1s var(--ease-out) 0.2s both;
}
.hero-badge-line {
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.25);
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3.2rem, 7.5vw, 6.5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-line {
  display: block;
}
.hero-line-1 {
  animation: fadeUp 0.9s var(--ease-out) 0.4s both;
}
.hero-line-2 {
  animation: fadeUp 0.9s var(--ease-out) 0.6s both;
}
.hero-line-2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}
.hero-line-3 {
  animation: fadeUp 0.9s var(--ease-out) 0.8s both;
}

.hero-body {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 40px;
  animation: fadeUp 0.9s var(--ease-out) 1s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.9s var(--ease-out) 1.2s both;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeUp 0.9s var(--ease-out) 1.6s both;
}
.hero-scroll-hint span {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* Hero stats */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding: 28px 24px;
  background: rgba(10,10,10,0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.06);
  animation: fadeUp 0.9s var(--ease-out) 1.4s both;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
  display: block;
}
.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.1);
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: var(--charcoal);
  overflow: hidden;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.35);
  padding: 0 20px;
}
.marquee-dot {
  color: var(--gold) !important;
  font-style: normal !important;
  font-size: 0.6rem !important;
  opacity: 0.5;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   EXPERIENCES GRID
   ============================================================ */
.experiences {
  padding: 120px 0 100px;
  background: var(--cream);
}
.experiences .section-header {
  text-align: center;
}
.experiences .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.exp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  text-decoration: none;
  cursor: pointer;
}
.exp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.1);
}

.exp-card-img {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.exp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.exp-card:hover .exp-card-img img {
  transform: scale(1.06);
}

.exp-card-content {
  padding: 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.exp-card-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
}
.exp-card-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.exp-card-content p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}
.exp-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 24px;
  transition: gap 0.3s var(--ease);
}
.exp-card:hover .exp-card-cta { gap: 14px; }
.exp-card-cta span {
  transition: transform 0.3s var(--ease);
}
.exp-card:hover .exp-card-cta span {
  transform: translateX(4px);
}

/* ============================================================
   ABOUT / WHY US
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.about-visual {
  position: relative;
  overflow: hidden;
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-visual-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: var(--gold);
  opacity: 0.15;
}

.about-content {
  padding: clamp(48px, 6vw, 96px) clamp(32px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.about-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.about-feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}
.about-feature-icon svg {
  width: 100%;
  height: 100%;
}
.about-feature h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.about-feature p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   DETAIL SECTIONS (All-Inclusive, Disney, Cruises)
   ============================================================ */
.detail-section {
  background: var(--charcoal);
  padding: 100px 0;
  overflow: hidden;
}
.detail-section--light {
  background: var(--cream);
}

.detail-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.detail-inner--reverse {
  grid-template-columns: 1fr 1.1fr;
}
.detail-inner--reverse .detail-text { order: 1; }
.detail-inner--reverse .detail-images { order: 2; }

.detail-images {
  position: relative;
}
.detail-img-main {
  overflow: hidden;
  border-radius: 2px;
}
.detail-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.detail-img-main:hover img {
  transform: scale(1.03);
}
.detail-img-small {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  overflow: hidden;
  border: 6px solid var(--charcoal);
  border-radius: 2px;
}
.detail-section--light .detail-img-small {
  border-color: var(--cream);
}
.detail-img-small--right {
  right: auto;
  left: -40px;
}
.detail-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 32px;
}
.detail-section:not(.detail-section--light) .detail-body {
  color: rgba(255,255,255,0.65);
}
.detail-section--light .detail-body {
  color: var(--text-muted);
}

.detail-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.detail-brands span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.55);
  transition: all 0.3s var(--ease);
}
.detail-brands span:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}
.detail-brands--dark span {
  border-color: rgba(0,0,0,0.12);
  color: var(--text-muted);
}
.detail-brands--dark span:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--white);
  padding: 120px 0;
}
.testimonials .section-header {
  text-align: center;
  margin-bottom: 72px;
}

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

.testimonial-card {
  background: var(--cream);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.08);
}

.testimonial-card--featured {
  background: var(--charcoal);
}
.testimonial-card--featured .testimonial-quote { color: var(--gold); }
.testimonial-card--featured blockquote p { color: rgba(255,255,255,0.85); }
.testimonial-card--featured .testimonial-author strong { color: var(--white); }
.testimonial-card--featured .testimonial-author span { color: rgba(255,255,255,0.4); }
.testimonial-card--featured .testimonial-stars { color: var(--gold-light); }

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: -12px;
}

.testimonial-card blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  flex: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testimonial-card--featured .testimonial-author {
  border-color: rgba(255,255,255,0.08);
}
.testimonial-author strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}
.testimonial-author span {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-top: 12px;
}

/* ============================================================
   IMAGE BREAK
   ============================================================ */
.image-break {
  position: relative;
  height: 50vh;
  min-height: 360px;
  overflow: hidden;
}
.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-break-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.55);
}
.image-break-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 24px;
}
.image-break-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  text-align: center;
  max-width: 600px;
  line-height: 1.4;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--cream);
  padding: 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.contact-info {
  background: var(--charcoal);
  padding: clamp(48px, 6vw, 96px) clamp(32px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-info .section-title { color: var(--white); }
.contact-info .section-title em { color: var(--gold-light); }

.contact-intro {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-top: 20px;
  margin-bottom: 48px;
  max-width: 400px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-detail-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-detail a,
.contact-detail span {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s var(--ease);
}
.contact-detail a:hover { color: var(--gold-light); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 64px);
  display: flex;
  align-items: center;
}
.contact-form { width: 100%; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 0;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
  font-weight: 300;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,164,85,0.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b6b6b' stroke-width='1.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-top {
  padding: 80px clamp(20px, 4vw, 48px) 60px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}

.footer-brand { }
.logo--footer .logo-icon { color: var(--gold); opacity: 0.6; }
.logo--footer .logo-name { color: var(--gold); opacity: 0.8; }
.logo--footer .logo-sub { color: rgba(255,255,255,0.25); }

.footer-tagline {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  margin-top: 16px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.footer-col h4 {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 20px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul li,
.footer-col ul li a {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s var(--ease);
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.7); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px clamp(20px, 4vw, 48px);
}
.footer-bottom p {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em;
}

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

@media (max-width: 1024px) {
  .exp-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .exp-card-img { height: 300px; }

  .about { grid-template-columns: 1fr; }
  .about-visual { height: 400px; }

  .detail-inner,
  .detail-inner--reverse {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .detail-inner--reverse .detail-text { order: 1; }
  .detail-inner--reverse .detail-images { order: 2; }
  .detail-img-main img { height: 380px; }
  .detail-img-small { display: none; }

  .testimonial-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }

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

  .footer-top { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }

  .header-inner { height: 68px; }

  /* Hero */
  .hero { min-height: 600px; }
  .hero-headline { font-size: clamp(2.6rem, 10vw, 4rem); }
  .hero-stats { gap: 24px; padding: 20px 16px; }
  .hero-stat-num { font-size: 1.3rem; }
  .hero-stat-label { font-size: 0.58rem; }
  .hero-scroll-hint { display: none; }

  /* Sections */
  .experiences { padding: 80px 0 60px; }
  .detail-section { padding: 70px 0; }
  .testimonials { padding: 80px 0; }

  /* About */
  .about-visual { height: 300px; }
  .about-content { padding: 48px 24px; }

  /* Form */
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-info { padding: 48px 24px; }
  .contact-form-wrap { padding: 48px 24px; }

  /* Footer */
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-top { padding: 48px 20px 40px; }

  .section-header { margin-bottom: 48px; }

  /* Image break */
  .image-break { height: 40vh; min-height: 280px; }
}

@media (max-width: 480px) {
  .hero-badge { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-stat-divider { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }

  .footer-cols { grid-template-columns: 1fr; gap: 28px; }

  .marquee-strip { padding: 14px 0; }
}
