/* ==========================================================================
   IAMWYSE — Shared Stylesheet
   ========================================================================== */

:root {
  --bg: #08090d;
  --bg-alt: #0f1117;
  --bg-raised: #14161f;
  --line: rgba(255, 255, 255, 0.1);
  --line-soft: rgba(255, 255, 255, 0.06);
  --text: #f5f6f9;
  --text-muted: #9aa0ae;
  --text-dim: #6b7180;
  --accent: #3d5bff;
  --accent-bright: #5c78ff;
  --accent-dim: #23336b;
  --accent-glow: rgba(61, 91, 255, 0.35);
  --white-soft: #eceef3;

  --font-display: "Anton", "Arial Narrow Bold", sans-serif;
  --font-script: "Permanent Marker", cursive;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --section-pad: clamp(64px, 9vw, 120px);
  --radius: 4px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

.accent { color: inherit; }

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.05;
}
.section-head p {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head.split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  max-width: none;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border: 1px solid rgba(255,255,255,0.85);
  color: var(--text);
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  transition: color 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.btn:hover {
  color: #08090d;
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.4);
}
.btn:hover::before { transform: scaleX(1); }
.btn--solid {
  background: transparent;
  border-color: rgba(255,255,255,0.85);
}
.btn--solid::before { background: #fff; }
.btn--solid:hover { color: #08090d; border-color: #fff; }
.btn--ghost-white { border-color: rgba(255,255,255,0.85); }
.btn--sm { padding: 11px 20px; font-size: 0.7rem; }
.btn--wide { width: 100%; }
.btn svg { width: 13px; height: 13px; flex-shrink: 0; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid transparent;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.link-arrow:hover { gap: 12px; color: var(--text); border-color: var(--text); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--pad);
  background: #05060a;
  border-bottom: 1px solid var(--line-soft);
  transition: padding 0.4s var(--ease);
}
.site-header.is-scrolled {
  padding-block: 14px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  font-style: italic;
  transform: skewX(-2deg);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 210;
}
.logo img { height: 30px; width: auto; }

.nav-primary {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-primary a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav-primary a:hover,
.nav-primary a.is-active { color: var(--text); border-color: var(--accent); }

.nav-side {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-social a {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text-muted);
  transition: all 0.3s var(--ease);
}
.nav-social a:hover { color: var(--text); border-color: var(--accent); background: var(--accent-dim); }
.nav-social svg { width: 14px; height: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  z-index: 210;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg video,
.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(5,6,9,0.95) 0%, rgba(5,6,9,0.42) 38%, rgba(5,6,9,0.05) 60%, rgba(5,6,9,0.35) 100%),
    linear-gradient(100deg, rgba(5,6,9,0.75) 0%, rgba(5,6,9,0.3) 38%, transparent 62%);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 220px var(--pad) 70px;
  max-width: var(--container);
  margin-inline: auto;
}
.hero__logo {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 10vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  font-style: italic;
  transform: skewX(-2deg);
  transform-origin: left;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.hero__tag {
  display: flex;
  gap: 18px;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--white-soft);
}
.hero__type {
  margin-top: 26px;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--white-soft);
}
.hero__type-text { color: var(--text); }
.hero__type-caret {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--white-soft);
  margin-left: 3px;
  vertical-align: -0.15em;
  animation: caret-blink 0.9s steps(1) infinite;
}
@keyframes caret-blink { 50% { opacity: 0; } }

.hero__copy {
  margin-top: 22px;
  max-width: 540px;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.hero__cta {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--text-muted);
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

.hero__badges {
  position: absolute;
  right: var(--pad);
  top: 34%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 250px;
}
.badge-card {
  background: rgba(8,9,13,0.72);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  padding: 14px 18px;
  font-size: 0.82rem;
}
.badge-card strong {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  margin-bottom: 3px;
}
.badge-card span { color: var(--text-muted); }

.hero--page {
  min-height: 70vh;
  align-items: center;
}
.hero--page .hero__content { padding-top: 180px; padding-bottom: 60px; }

.hero__meta-top {
  position: absolute;
  top: 130px;
  right: var(--pad);
  z-index: 2;
  text-align: right;
  font-family: var(--font-script);
  font-size: 1.4rem;
  line-height: 1.35;
  color: var(--white-soft);
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}
.hero__location-tag {
  position: absolute;
  bottom: 40px;
  right: var(--pad);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-soft);
}
.hero__location-tag svg { width: 14px; height: 14px; color: var(--white-soft); }

/* ---------- Light section (Journey band) ---------- */
.section-light {
  background: #efece4;
  color: #17181c;
}
.section-light .eyebrow { color: #6b6656; }
.section-light .eyebrow::before { background: var(--accent); }
.section-light .section-head p { color: #5a5646; }
.section-light .timeline__line { background: rgba(0,0,0,0.14); }
.section-light .timeline__dot { background: #efece4; border-color: var(--accent); }
.section-light .timeline__item h4 { color: #17181c; }
.section-light .timeline__item p { color: #5a5646; }
.section-light .btn { color: #17181c; border-color: var(--accent); }
.section-light .btn:hover { color: #fff; }

/* ---------- Photo nav card (Home quick-links) ---------- */
.photo-nav-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--line);
}
.photo-nav-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: var(--photo-filter);
  transition: transform 0.6s var(--ease);
}
.photo-nav-card:hover img { transform: scale(1.08); }
.photo-nav-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,6,9,0.95) 0%, rgba(5,6,9,0.55) 32%, rgba(5,6,9,0.05) 60%);
}
.photo-nav-card__body {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: 24px;
}
.photo-nav-card__body h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.3rem; margin-bottom: 6px; }
.photo-nav-card__body p { color: var(--text-muted); font-size: 0.86rem; margin-bottom: 14px; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--accent);
  color: #05060a;
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  position: relative;
  z-index: 5;
}
.marquee__track {
  display: inline-flex;
  animation: marquee 32s linear infinite;
}
.marquee__track span {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-inline: 18px;
}
.marquee__track span::after {
  content: "\2726";
  margin-left: 18px;
  opacity: 0.7;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
section { padding-block: var(--section-pad); }
.section-alt { background: var(--bg-alt); }
.section-border-t { border-top: 1px solid var(--line-soft); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Latest Release ---------- */
.release {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.7fr;
  gap: 56px;
  align-items: center;
}
.release__art { position: relative; }
.release__art img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.7);
}
.release h3 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  text-transform: uppercase;
}
.release__meta {
  margin-top: 8px;
  color: var(--white-soft);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.release p.desc { margin-top: 18px; color: var(--text-muted); }
.release .btn { margin-top: 26px; }
.platform-list h4 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 18px;
}
.platform-list ul { display: flex; flex-direction: column; gap: 16px; }
.platform-list a {
  display: flex; align-items: center; gap: 12px;
  font-weight: 600;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.platform-list a:hover { color: var(--text); transform: translateX(4px); }
.platform-list svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--text); }

/* ---------- About / photo + text ---------- */
.split-feature {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  align-items: stretch;
}
.split-feature__photo { position: relative; overflow: hidden; min-height: 420px; }
.split-feature__photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: var(--photo-filter);
}
.split-feature__body {
  background: var(--bg-alt);
  padding: clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.split-feature__body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  text-transform: uppercase;
}
.split-feature__body p { color: var(--text-muted); }
.split-feature__stat {
  margin-left: auto;
  padding-left: 28px;
  border-left: 1px solid var(--line);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: var(--text);
  align-self: center;
}
.split-feature--stat { grid-template-columns: 0.75fr 1fr 0.55fr; }
.split-feature--stat .split-feature__body { padding-right: 12px; }
@media (max-width: 1080px) {
  .split-feature--stat { grid-template-columns: 1fr; }
  .split-feature__stat { margin: 0; padding: 20px 0 0; border-left: none; border-top: 1px solid var(--line); }
}

/* ---------- Card Grids ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.nav-card {
  border: 1px solid var(--line);
  padding: 30px 26px;
  background: var(--bg-alt);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.nav-card:hover { transform: translateY(-6px); border-color: var(--accent); background: var(--bg-raised); }
.nav-card__icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--text);
  margin-bottom: 22px;
  border-radius: 50%;
}
.nav-card h3 { font-family: var(--font-display); font-size: 1.3rem; text-transform: uppercase; margin-bottom: 8px; }
.nav-card p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 18px; }

.service-card {
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-alt);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.service-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; filter: var(--photo-filter); transition: transform 0.6s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__body { padding: 26px; }
.service-card__body h3 { font-family: var(--font-display); font-size: 1.35rem; text-transform: uppercase; margin-bottom: 10px; }
.service-card__body p { color: var(--text-muted); font-size: 0.94rem; margin-bottom: 16px; }

/* Bento feature grid */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 20px; }
.bento-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-alt);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.bento-item:hover { border-color: var(--accent); transform: translateY(-4px); }
.bento-item--wide { grid-column: span 2; }
.bento-item--tall { grid-row: span 2; }
.bento-item--featured { grid-column: span 2; grid-row: span 2; }
.bento-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: var(--photo-filter); z-index: 0; opacity: 0.55; }
.bento-item::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,6,9,0.92), rgba(5,6,9,0.15));
  z-index: 1;
}
.bento-item__content { position: relative; z-index: 2; }
.bento-item__icon { width: 40px; height: 40px; margin-bottom: 14px; color: var(--text); }
.bento-item h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.15rem; margin-bottom: 6px; }
.bento-item--featured h3 { font-size: 1.7rem; }
.bento-item p { color: var(--text-muted); font-size: 0.86rem; }

/* ---------- YouTube hover-to-play card ---------- */
.yt-hover-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid var(--line);
  background: var(--bg-alt);
}
.yt-hover-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: var(--photo-filter);
  transition: opacity 0.3s var(--ease), transform 0.5s var(--ease);
  z-index: 1;
}
.yt-hover-card:hover img { transform: scale(1.04); }
.yt-hover-card__frame {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  z-index: 2;
  pointer-events: none;
}
.yt-hover-card__content {
  position: absolute; inset: auto 0 0 0;
  z-index: 3;
  padding: 18px 20px;
  background: linear-gradient(to top, rgba(5,6,9,0.95), rgba(5,6,9,0.15) 70%, transparent);
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.yt-hover-card:hover .yt-hover-card__content { opacity: 0; }
.yt-hover-card__play {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  color: #fff;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.yt-hover-card:hover .yt-hover-card__play { background: rgba(255,255,255,0.12); }
.yt-hover-card__play svg { width: 16px; height: 16px; margin-left: 2px; }
.yt-hover-card h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.1rem; margin-bottom: 4px; }
.yt-hover-card p { color: var(--text-muted); font-size: 0.82rem; }
.yt-hover-card__link { position: absolute; inset: 0; z-index: 4; }
@media (prefers-reduced-motion: reduce) { .yt-hover-card__frame { display: none; } }

/* ---------- Testimonials / carousel ---------- */
.stars { display: flex; gap: 3px; color: var(--text); }
.stars svg { width: 16px; height: 16px; }
.rating-line { display: flex; align-items: center; gap: 12px; justify-content: center; margin-top: 10px; }
.rating-line strong { font-family: var(--font-display); font-size: 1.4rem; }

.carousel { overflow: hidden; margin-top: 48px; }
.carousel__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.testi-card {
  scroll-snap-align: start;
  flex: 0 0 clamp(280px, 32vw, 380px);
  border: 1px solid var(--line);
  background: var(--bg-alt);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testi-card p.quote { color: var(--white-soft); font-size: 1rem; }
.testi-card .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-card .who .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  color: var(--text);
}
.testi-card .who strong { display: block; font-size: 0.9rem; }
.testi-card .who span { color: var(--text-dim); font-size: 0.8rem; }
.carousel__controls { display: flex; gap: 14px; justify-content: center; margin-top: 30px; }
.carousel__btn {
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.carousel__btn:hover { border-color: var(--text); color: var(--text); }

/* ---------- Why us list ---------- */
.why-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 40px; margin-top: 40px; }
.why-item { display: flex; gap: 18px; }
.why-item__num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  -webkit-text-stroke: 1px rgba(255,255,255,0.5);
  color: transparent;
  flex-shrink: 0;
  width: 46px;
}
.why-item h4 { font-size: 1.05rem; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.02em; }
.why-item p { color: var(--text-muted); font-size: 0.92rem; }

/* ---------- Gallery ---------- */
.gallery-filters { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 34px; }
.gallery-filters button {
  padding: 10px 20px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.3s var(--ease);
}
.gallery-filters button:hover { color: var(--text); border-color: var(--accent); }
.gallery-filters button.is-active { background: var(--accent); border-color: var(--accent); color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-grid figure { position: relative; overflow: hidden; aspect-ratio: 1/1; border: 1px solid var(--line); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; filter: var(--photo-filter); transition: transform 0.6s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.08); }
.gallery-grid figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(5,6,9,0.92), transparent);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text);
}

/* ---------- FAQ Accordion ---------- */
.accordion { border-top: 1px solid var(--line); max-width: 820px; }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 26px 4px;
  background: none; border: none; color: var(--text);
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
}
.accordion-item__q .plus {
  width: 26px; height: 26px; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  position: relative;
}
.accordion-item__q .plus::before,
.accordion-item__q .plus::after {
  content: "";
  position: absolute;
  background: var(--text);
  transition: transform 0.35s var(--ease);
}
.accordion-item__q .plus::before { left: 50%; top: 6px; bottom: 6px; width: 1.5px; transform: translateX(-50%); }
.accordion-item__q .plus::after { top: 50%; left: 6px; right: 6px; height: 1.5px; transform: translateY(-50%); }
.accordion-item.is-open .plus::before { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.accordion-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.accordion-item__a div { padding: 0 4px 26px; color: var(--text-muted); max-width: 640px; }
.accordion-item.is-open .accordion-item__a { max-height: 260px; }

/* ---------- Timeline ---------- */
.timeline { position: relative; margin-top: 56px; }
.timeline__line { position: absolute; top: 14px; left: 0; right: 0; height: 1px; background: var(--line); }
.timeline__line-fill { position: absolute; top: 0; left: 0; height: 1px; background: var(--accent); width: 100%; }
.timeline__items { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; position: relative; }
.timeline__item { position: relative; padding-top: 34px; }
.timeline__dot {
  position: absolute; top: 8px; left: 0;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--accent);
}
.timeline__item h4 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; }
.timeline__item p { color: var(--text-muted); font-size: 0.86rem; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); }
.field input, .field select, .field textarea {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 14px 16px;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: border-color 0.3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 120px; }
.checkbox-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.check-card {
  border: 1px solid var(--line);
  padding: 18px 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  font-size: 0.82rem;
  font-weight: 600;
}
.check-card input { display: none; }
.check-card:hover { border-color: rgba(255,255,255,0.7); }
.check-card.is-checked { border-color: #fff; background: rgba(255,255,255,0.06); color: var(--text); }
.check-card svg { display: block; margin: 0 auto 10px; width: 26px; height: 26px; }

.pricing-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.pricing-table td { padding: 14px 4px; border-bottom: 1px solid var(--line-soft); font-size: 0.92rem; }
.pricing-table td:last-child { text-align: right; color: var(--text); font-weight: 700; }

.package-card {
  border: 1px solid var(--line);
  padding: 30px 26px;
  background: var(--bg-alt);
  transition: all 0.35s var(--ease);
}
.package-card.is-featured { border-color: var(--accent); background: var(--bg-raised); position: relative; }
.package-card.is-featured::before {
  content: "MOST BOOKED";
  position: absolute; top: -12px; left: 26px;
  background: var(--accent);
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em;
  padding: 5px 12px;
}
.package-card h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.2rem; }
.package-card .price { font-family: var(--font-display); font-size: 2.1rem; color: var(--text); margin: 12px 0; }
.package-card ul { display: flex; flex-direction: column; gap: 10px; margin: 18px 0 24px; }
.package-card li { font-size: 0.88rem; color: var(--text-muted); display: flex; gap: 10px; align-items: center; }
.package-card li svg { width: 14px; height: 14px; color: var(--text); flex-shrink: 0; }

/* ---------- CTA / Newsletter ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: 110px;
  text-align: center;
}
.cta-band__bg { position: absolute; inset: 0; z-index: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; filter: var(--photo-filter); }
.cta-band__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,7,10,0.97), rgba(6,7,10,0.72)); }
.cta-band__content { position: relative; z-index: 1; max-width: 640px; margin-inline: auto; padding-inline: var(--pad); }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 4rem); text-transform: uppercase; }
.cta-band .newsletter-form { margin-top: 30px; display: flex; gap: 12px; max-width: 460px; margin-inline: auto; }
.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  color: #fff;
  padding: 15px 18px;
  border-radius: var(--radius);
}
.newsletter-form input:focus { outline: none; border-color: var(--accent); }

/* Split CTA (stay connected style) */
.stay-connected {
  position: relative;
  overflow: hidden;
  padding-block: 90px;
}
.stay-connected__bg { position: absolute; inset: 0; z-index: 0; }
.stay-connected__bg img { width: 100%; height: 100%; object-fit: cover; filter: var(--photo-filter); }
.stay-connected__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(6,7,10,0.96) 30%, rgba(6,7,10,0.55) 100%); }
.stay-connected__inner { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; }
.stay-connected h2 { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.6rem); text-transform: uppercase; }
.stay-connected__form-wrap p { color: var(--text-muted); margin-bottom: 16px; }
.stay-connected .newsletter-form { max-width: 420px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line-soft); padding-block: 50px 30px; background: var(--bg); }
.site-footer__top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; padding-bottom: 30px; border-bottom: 1px solid var(--line-soft); }
.footer-nav { display: flex; gap: 30px; flex-wrap: wrap; }
.footer-nav a { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.footer-nav a:hover { color: var(--text); }
.site-footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; flex-wrap: wrap; gap: 14px; color: var(--text-dim); font-size: 0.8rem; }
.site-footer__bottom .loc { display: flex; align-items: center; gap: 6px; }
.site-footer__bottom svg { width: 14px; height: 14px; }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center; }
.show-mobile { display: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-item--featured, .bento-item--wide { grid-column: span 2; }
  .release { grid-template-columns: 1fr; gap: 36px; }
  .why-list { grid-template-columns: 1fr; }
  .timeline__items { grid-template-columns: repeat(3, 1fr); row-gap: 30px; }
}

@media (max-width: 860px) {
  .nav-primary, .nav-social { display: none; }
  .nav-toggle { display: flex; }
  .nav-side { gap: 14px; }
  .split-feature { grid-template-columns: 1fr; }
  .split-feature__photo { min-height: 320px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: repeat(2, 1fr); }
  .stay-connected__inner { flex-direction: column; align-items: flex-start; }
  .hero__badges { position: static; margin-top: 30px; flex-direction: row; flex-wrap: wrap; max-width: none; }
  .hide-mobile { display: none; }
  .show-mobile { display: block; }
  .timeline__items { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .grid-4 { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .bento-item--featured, .bento-item--wide, .bento-item--tall { grid-column: span 1; grid-row: span 1; }
  .gallery-grid { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .timeline__items { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  section { padding-block: 64px; }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; inset: 0;
  background: rgba(6,7,10,0.98);
  z-index: 190;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 30px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav a { font-family: var(--font-display); font-size: 1.8rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--text); }
.mobile-nav .nav-social { margin-top: 20px; }
