/* ============================================================
   Michel Wiegandt — Visual Aide
   "The Visual Field Guide" — Editorial, art-directed style
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;1,9..144,300;1,9..144,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
  /* Palette */
  --ink: #0E1A1D;
  --cream: #F6F1E8;
  --paper: #FFFFFF;
  --stone: #D8D2C8;
  --slate: #5E6A6D;
  --accent-cyan: #20B9D5;
  --teal-hover: #06879F;
  --video-marker: #E75D4A;
  --photo-marker: #2EA044;
  --light-bg: #ededed;

  /* Typography */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing scale */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 48px;
  --sp-6: 64px;
  --sp-7: 96px;

  /* Layout */
  --max-w: 1240px;
  --gutter: 24px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   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-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--ink);
  background-color: var(--paper);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal-hover);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--ink);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
}

p {
  max-width: 68ch;
}

/* ============================================================
   Utility
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.overline {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--slate);
  margin-bottom: var(--sp-2);
  display: block;
}

.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--slate);
  margin-bottom: var(--sp-1);
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--sp-2) 0;
  transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.scrolled {
  background-color: rgba(14, 26, 29, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-decoration: none;
  z-index: 1001;
}

.logo svg {
  width: 32px;
  height: 32px;
}

.logo:hover {
  color: var(--paper);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.main-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.2s var(--ease);
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--paper);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: var(--accent-cyan);
  color: var(--ink) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 3px;
  transition: background-color 0.2s var(--ease), transform 0.15s var(--ease);
}

.nav-cta:hover {
  background: var(--teal-hover);
  color: var(--paper) !important;
  transform: translateY(-1px);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--paper);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  border-radius: 1px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--ink);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/img-3b8fb4a6263a.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transform: scale(1.05);
  animation: heroZoom 20s var(--ease) infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 26, 29, 0.65) 0%,
    rgba(14, 26, 29, 0.55) 40%,
    rgba(14, 26, 29, 0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: var(--sp-7) var(--gutter);
}

.hero h1 {
  font-size: clamp(3.25rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin-bottom: var(--sp-3);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  line-height: 1.5;
  max-width: 560px;
  margin: 0 auto var(--sp-4);
}

.hero-actions {
  display: flex;
  gap: var(--sp-2);
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent-cyan);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--teal-hover);
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(32, 185, 213, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

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

/* ============================================================
   Trust Strip
   ============================================================ */
.trust-strip {
  background: var(--cream);
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--stone);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
  text-align: center;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: opacity 0.3s;
}

.trust-logos:hover {
  opacity: 0.8;
}

.trust-facts {
  display: flex;
  gap: var(--sp-5);
  flex-wrap: wrap;
  justify-content: center;
}

.trust-fact {
  text-align: center;
}

.trust-fact .number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}

.trust-fact .label {
  font-size: 13px;
  color: var(--slate);
  font-weight: 500;
  margin-top: 4px;
}

/* ============================================================
   Services / Capability Index
   ============================================================ */
.services {
  padding: var(--sp-7) 0;
}

.services .section-header {
  text-align: center;
  margin-bottom: var(--sp-6);
}

.services .section-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  margin-top: var(--sp-1);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-3);
}

.service-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(14, 26, 29, 0.1);
}

.service-card-icon {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
}

.service-card-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  opacity: 0.7;
}

.service-card-body {
  padding: var(--sp-3);
}

.service-card h3 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--sp-1);
  color: var(--ink);
}

.service-card p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.55;
  max-width: 100%;
}

.service-card .marker {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
}

.marker-cyan { background: var(--accent-cyan); }
.marker-coral { background: var(--video-marker); }
.marker-green { background: var(--photo-marker); }
.marker-teal { background: var(--teal-hover); }
.marker-ink { background: var(--ink); }

/* ============================================================
   360° Portfolio
   ============================================================ */
.portfolio-360 {
  padding: var(--sp-7) 0;
  background: var(--cream);
}

.portfolio-360 .section-header {
  text-align: center;
  margin-bottom: var(--sp-5);
}

.portfolio-360 .section-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  margin-top: var(--sp-1);
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: var(--sp-1);
  margin-bottom: var(--sp-4);
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: transparent;
  color: var(--slate);
  border: 1px solid var(--stone);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.tour-card {
  position: relative;
  background: var(--paper);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(14, 26, 29, 0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(14, 26, 29, 0.12);
}

.tour-card-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--stone);
}

.tour-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.tour-card:hover .tour-card-media img {
  transform: scale(1.05);
}

.tour-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: var(--accent-cyan);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 2px;
}

.tour-card-body {
  padding: var(--sp-2) var(--sp-3) var(--sp-3);
}

.tour-card-body h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.tour-card-body p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.5;
  max-width: 100%;
}

/* ============================================================
   Video Portfolio
   ============================================================ */
.video-portfolio {
  padding: var(--sp-7) 0;
}

.video-portfolio .section-header {
  text-align: center;
  margin-bottom: var(--sp-5);
}

.video-portfolio .section-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  margin-top: var(--sp-1);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.video-card {
  position: relative;
  background: var(--paper);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(14, 26, 29, 0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(14, 26, 29, 0.12);
}

.video-poster {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
}

.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease), opacity 0.3s;
}

.video-poster:hover img {
  transform: scale(1.05);
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 26, 29, 0.35);
  transition: background 0.3s var(--ease);
}

.video-poster:hover .play-overlay {
  background: rgba(14, 26, 29, 0.5);
}

.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s var(--ease), background 0.2s;
}

.video-poster:hover .play-btn {
  transform: scale(1.1);
  background: var(--accent-cyan);
}

.play-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--ink);
  margin-left: 3px;
}

.video-card-body {
  padding: var(--sp-2) var(--sp-3) var(--sp-3);
}

.video-card-body h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.video-card-body p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.5;
  max-width: 100%;
}

.video-marker-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--video-marker);
  margin-right: 6px;
  vertical-align: middle;
}

/* ============================================================
   Photography Portfolio
   ============================================================ */
.photo-portfolio {
  padding: var(--sp-7) 0;
  background: var(--cream);
}

.photo-portfolio .section-header {
  text-align: center;
  margin-bottom: var(--sp-5);
}

.photo-portfolio .section-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  margin-top: var(--sp-1);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: var(--sp-2);
}

.photo-grid .photo-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.photo-grid .photo-item:nth-child(5) { grid-column: span 2; }
.photo-grid .photo-item:nth-child(8) { grid-column: span 2; }
.photo-grid .photo-item:nth-child(11) { grid-column: span 2; grid-row: span 2; }

.photo-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.photo-item:hover img {
  transform: scale(1.06);
}

.photo-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(14, 26, 29, 0.65) 100%
  );
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-2);
}

.photo-item:hover .photo-item-overlay {
  opacity: 1;
}

.photo-item-overlay span {
  color: var(--paper);
  font-size: 14px;
  font-weight: 500;
}

.photo-marker-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--photo-marker);
  margin-right: 6px;
  vertical-align: middle;
}

/* ============================================================
   Team
   ============================================================ */
.team {
  padding: var(--sp-7) 0;
}

.team .section-header {
  text-align: center;
  margin-bottom: var(--sp-6);
}

.team .section-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  margin-top: var(--sp-1);
}

.team-members {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.team-member {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  align-items: center;
}

.team-member:nth-child(even) .team-member-photo {
  order: 2;
}

.team-member:nth-child(even) .team-member-info {
  order: 1;
}

.team-member-photo {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.team-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.team-member:hover .team-member-photo img {
  transform: scale(1.03);
}

.team-member-info {
  max-width: 500px;
}

.team-member-info h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: var(--sp-1);
}

.team-member-info .role {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-cyan);
  margin-bottom: var(--sp-2);
}

.team-member-info p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.65;
  max-width: 100%;
}

.team-member-info .explore-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--sp-2);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-hover);
}

.team-member-info .explore-link:hover {
  color: var(--ink);
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials {
  padding: var(--sp-7) 0;
  background: var(--ink);
  color: var(--paper);
}

.testimonials .section-header {
  text-align: center;
  margin-bottom: var(--sp-6);
}

.testimonials .section-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--paper);
  margin-top: var(--sp-1);
}

.testimonials .section-header .overline {
  color: var(--accent-cyan);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: var(--sp-4);
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--sp-3);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-info .name {
  font-weight: 600;
  font-size: 14px;
  color: var(--paper);
}

.testimonial-author-info .title {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   How We Make It Easy
   ============================================================ */
.how-we-work {
  padding: var(--sp-7) 0;
}

.how-we-work .section-header {
  text-align: center;
  margin-bottom: var(--sp-6);
}

.how-we-work .section-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  margin-top: var(--sp-1);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}

.how-item {
  text-align: center;
  padding: var(--sp-3);
}

.how-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent-cyan);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.how-item h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--sp-1);
}

.how-item p {
  font-size: 14px;
  color: var(--slate);
  max-width: 100%;
}

/* ============================================================
   CTA / Contact Section
   ============================================================ */
.cta-section {
  padding: var(--sp-7) 0;
  background: var(--cream);
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  margin-bottom: var(--sp-2);
}

.cta-section p {
  font-size: 1.125rem;
  color: var(--slate);
  margin: 0 auto var(--sp-4);
  max-width: 560px;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.6);
  padding: var(--sp-6) 0 var(--sp-4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-5);
  margin-bottom: var(--sp-5);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  max-width: 100%;
  margin-top: var(--sp-2);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--paper);
  margin-bottom: var(--sp-2);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--sp-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
  display: flex;
  gap: var(--sp-3);
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links a:hover {
  color: var(--accent-cyan);
}

/* ============================================================
   Inner Page Hero (for sub-pages)
   ============================================================ */
.inner-hero {
  position: relative;
  padding: calc(var(--sp-7) + 60px) 0 var(--sp-6);
  background: var(--ink);
  text-align: center;
  overflow: hidden;
}

.inner-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.inner-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-hero-scrim {
  position: absolute;
  inset: 0;
  background: rgba(14, 26, 29, 0.7);
}

.inner-hero-content {
  position: relative;
  z-index: 1;
}

.inner-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--paper);
}

.inner-hero .overline {
  color: var(--accent-cyan);
}

/* ============================================================
   Portfolio Detail Page
   ============================================================ */
.portfolio-detail {
  padding: var(--sp-6) 0;
}

.portfolio-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--sp-5);
}

.portfolio-detail-image {
  border-radius: 6px;
  overflow: hidden;
}

.portfolio-detail-image img {
  width: 100%;
  height: auto;
}

.portfolio-detail-sidebar h2 {
  font-size: 2rem;
  margin-bottom: var(--sp-3);
}

.portfolio-meta {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--stone);
}

.portfolio-meta-item {
  display: flex;
  gap: var(--sp-1);
}

.portfolio-meta-item .label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate);
  min-width: 80px;
}

.portfolio-meta-item .value {
  font-size: 14px;
  color: var(--ink);
}

.portfolio-detail-sidebar p {
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: var(--sp-2);
}

.likes-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--cream);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
}

.likes-count svg {
  width: 16px;
  height: 16px;
  fill: var(--video-marker);
}

/* ============================================================
   Content Pages (visual-aide, video, photography, etc.)
   ============================================================ */
.content-section {
  padding: var(--sp-6) 0;
}

.content-section:nth-child(even) {
  background: var(--cream);
}

.content-section .section-header {
  margin-bottom: var(--sp-5);
}

.content-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 300;
  margin-top: var(--sp-1);
}

.content-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  align-items: start;
}

.content-columns p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
  max-width: 100%;
}

.content-columns h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--sp-2);
}

.content-columns ul {
  margin-top: var(--sp-2);
}

.content-columns ul li {
  font-size: 15px;
  color: var(--slate);
  padding: 6px 0;
  border-bottom: 1px solid var(--stone);
}

.content-image {
  border-radius: 6px;
  overflow: hidden;
}

.content-image img {
  width: 100%;
  height: auto;
}

/* ============================================================
   Legal Pages
   ============================================================ */
.legal-page {
  padding: var(--sp-7) 0 var(--sp-6);
}

.legal-page .container {
  max-width: 800px;
}

.legal-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--sp-2);
}

.legal-page .updated {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: var(--sp-5);
}

.legal-page h2 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-2);
  color: var(--ink);
}

.legal-page h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: var(--sp-3);
  margin-bottom: var(--sp-1);
  color: var(--ink);
}

.legal-page p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: var(--sp-2);
  max-width: 100%;
}

/* ============================================================
   Page-specific: 360 Photography
   ============================================================ */
.tour-category {
  margin-bottom: var(--sp-5);
}

.tour-category h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: var(--sp-3);
}

.tour-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

/* ============================================================
   Photography Filter Tabs
   ============================================================ */
.photo-filter-bar {
  display: flex;
  justify-content: center;
  gap: var(--sp-1);
  margin-bottom: var(--sp-4);
  flex-wrap: wrap;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) {
    grid-column: span 1;
  }
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
  }
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-detail-grid {
    grid-template-columns: 1fr;
  }
  .tour-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .team-member {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
  }
  .team-member:nth-child(even) .team-member-photo {
    order: 0;
  }
  .team-member:nth-child(even) .team-member-info {
    order: 0;
  }
  .team-member-info {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --gutter: 16px;
  }

  /* Show mobile nav */
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px var(--sp-3) var(--sp-3);
    gap: 0;
    transition: right 0.3s var(--ease);
    box-shadow: -4px 0 24px rgba(0,0,0,0.3);
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav a {
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
  }

  .nav-cta {
    margin-top: var(--sp-2);
    text-align: center;
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .tours-grid {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .photo-grid .photo-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .photo-grid .photo-item:nth-child(5) { grid-column: span 1; }
  .photo-grid .photo-item:nth-child(8) { grid-column: span 1; }
  .photo-grid .photo-item:nth-child(11) { grid-column: span 2; grid-row: span 1; }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .how-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  .trust-inner {
    flex-direction: column;
    gap: var(--sp-3);
  }

  .trust-facts {
    gap: var(--sp-3);
  }

  .content-columns {
    grid-template-columns: 1fr;
  }

  .tour-category-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .photo-grid .photo-item:nth-child(1),
  .photo-grid .photo-item:nth-child(11) {
    grid-column: span 1;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}

/* ============================================================
   Animations (Scroll reveal)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0.05s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.15s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.25s; }

/* ============================================================
   Mobile Nav Overlay
   ============================================================ */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 26, 29, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
