/* =========================
   Base Theme Tokens
========================= */

/* ---------- Light Theme ---------- */
html[data-theme="light"] {
  /* Backgrounds */
  --bg-main: #cad8c7;          /* main page background */
  --bg-card: #E3EAE4;          /* cards, nav, surfaces */

  /* Text */
  --text-primary: #363432;     /* main text */
  --text-secondary: #4B4A48;   /* softer body text */
  --heading-color: #363432;

  /* Borders & dividers */
  --border-subtle: rgba(54, 52, 50, 0.12);

  /* Brand & accents */
  --accent-primary: #F0941F;   /* warm highlight */
  --accent-secondary: #196774; /* cool contrast */

  /* CTAs */
  --cta-primary-bg: #F0941F;
  --cta-primary-text: #1E1F1D;

  /* Links */
  --link: #024f5c;
  --link-hover: #802f0d;

  /* Utility */
  --brand-gold: #F0941F;
}

/* ---------- Dark Theme ---------- */
html[data-theme="dark"] {
  /* Backgrounds */
  --bg-main: #363432;          /* main page background */
  --bg-card: #2B2927;          /* cards, nav, surfaces */

  /* Text */
  --text-primary: #F4F1ED;     /* main text */
  --text-secondary: #CFCBC6;   /* softer body text */
  --heading-color: #F4F1ED;

  /* Borders & dividers */
  --border-subtle: rgba(255, 255, 255, 0.12);

  /* Brand & accents */
  --accent-primary: #F0941F;
  --accent-secondary: #90A19D;

  /* CTAs */
  --cta-primary-bg: #F0941F;
  --cta-primary-text: #1E1F1D;

  /* Links */
  --link: #5f8e99;
  --link-hover: #a27460;

  /* Utility */
  --brand-gold: #F0941F;
}

/* =========================
   Pricing Theme Tokens
========================= */

html[data-theme="light"] {
  --pricing-bg: linear-gradient(
    180deg,
    #FFF9F5 0%,
    #FFF1E8 100%
  );

  --pricing-border: rgba(54, 52, 50, 0.12);
  --pricing-text-primary: var(--text-primary);
  --pricing-text-secondary: var(--text-secondary);
}

html[data-theme="dark"] {
  --pricing-bg: linear-gradient(
    180deg,
    #1f1f1f 0%,
    #181818 100%
  );

  --pricing-border: rgba(255,255,255,0.08);
  --pricing-text-primary: var(--text-primary);
  --pricing-text-secondary: var(--text-secondary);
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin: 0;
  }

  h1, h2, h3 {
    color: var(--heading-color);
  }

  p {
    color: var(--text-secondary);
  }

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

.card,
.pricing-box {
  background: var(--pricing-bg);
  padding: 40px;
  border-radius: 22px;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;

  color: var(--pricing-text-primary);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.btn-primary {
  background: var(--cta-primary-bg);
  color: var(--cta-primary-text);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-secondary {
  border: 1px solid var(--accent-secondary);
  color: var(--accent-secondary);
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(144,161,157,0.15);
}

a {
  text-decoration: none;
}

/* =========================
   Hybrid Navigation
========================= */

.site-nav {
  position: relative;
  z-index: 1000;
}

/* ---------- Desktop ---------- */

/* =========================
   Desktop Editorial Nav
========================= */

.nav-desktop {
  width: 100%;
  background: var(--bg-main);
  border-bottom: 1px solid transparent;

  position: sticky;
  top: 0;
  z-index: 1000;

  transition: 
    background 0.35s ease,
    box-shadow 0.35s ease,
    padding 0.35s ease,
    border-color 0.35s ease;
}

.nav-desktop.scrolled {
  background: var(--bg-main);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================
   Site Logo
========================= */

/* =========================
   Theme-aware Logos
========================= */

/* Wrapper keeps layout stable */
.logo-wrapper {
  position: relative;
  display: inline-block;
}

/* Both logos stacked */
.logo-wrapper .logo {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  opacity: 0;
  transition: opacity 0.45s ease;
}

/* Ensure wrapper has height */
.nav-logo .logo-wrapper {
  height: 100px;
  transition: height 0.35s ease;
}

.nav-desktop.scrolled .logo-wrapper {
  height: 75px;
}

/* Light theme */
html[data-theme="light"] .logo-light {
  opacity: 1;
  position: relative;
}

/* Dark theme */
html[data-theme="dark"] .logo-dark {
  opacity: 1;
  position: relative;
}

/* Light theme */
html[data-theme="light"] .logo-light {
  display: block;
}

/* Dark theme */
html[data-theme="dark"] .logo-dark {
  display: block;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 150px;
  width: auto;
}

.mobile-logo {
  display: none;
}

/* Mobile logo wrapper height fix */
.mobile-logo .logo-wrapper {
  height: 100px;   /* match your mobile logo size */
}

@media (max-width: 767px) {
  .mobile-logo {
    display: flex;
    justify-content: center;
    padding: 14px 0;
  }

  .mobile-logo img {
    height: 100px;
  }
}

/* =========================
   Responsive Navigation
========================= */

/* Hide mobile nav by default */
.nav-mobile {
  display: none;
}

/* Hide desktop nav on mobile */
@media (max-width: 767px) {

  .nav-desktop {
    display: none;
  }

  .nav-mobile {
    display: flex;

    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;

    justify-content: space-around;
    align-items: center;

    padding: 12px 8px env(safe-area-inset-bottom);
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);

    z-index: 1000;
  }

  body {
    padding-bottom: 85px; /* space for bottom nav */
  }
}

.mobile-logo {
  position: relative;
  z-index: 5;
}

@media (max-width: 767px) {
  body {
    padding-bottom: 80px; /* height of mobile nav */
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  font-size: 0.9rem;
  opacity: 0.85;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--accent-primary);
  color: #1e1f1d;
  font-size: 0.85rem;
}

/* ---------- Mobile ---------- */

.nav-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;

  display: none;
  justify-content: space-around;
  align-items: center;

  padding: 10px 8px env(safe-area-inset-bottom);
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
}

.nav-mobile a,
.nav-mobile button {
  font-size: 0.75rem;
  background: none;
  border: none;
  opacity: 0.85;
}

.mobile-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent-primary);
  font-weight: bolder;
}

/* ---------- Responsive ---------- */

@media (min-width: 768px) {
  .nav-desktop {
    display: block;
  }
}

@media (max-width: 767px) {
  .nav-mobile {
    display: flex;
  }

  body {
    padding-bottom: 80px;
  }
}

a:hover {
  cursor: pointer;
}

h1, h2 {
  text-align: center;
}

p {
  text-align: center;
}

.welcomeMessage {
  display: flexbox;
  justify-content: center;
  align-items: center;
  width: 75%;
  margin: auto;
}

.hero-subtitle {
  text-align: center;
  font-size: 1.1rem;
  margin-top: -10px;
  margin-bottom: 30px;
  letter-spacing: 0.02em;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.btn {
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-secondary {
  border: 1px solid #8F9E8B;
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(143, 158, 139, 0.15);
}

.why-section {
  max-width: 900px;
  margin: 80px auto;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 👈 2 columns */
  gap: 30px;
  margin: 40px 0;
}

.why-grid h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.why-grid p {
  font-size: 0.95rem;
  opacity: 0.9;
}

em {
  font-weight: bold;
}

/* ---------------------------------
   Portfolio invite (editorial)
---------------------------------- */

.portfolio-invite {
  border-top: 1px solid rgba(157, 38, 38, 0.08);
  padding-top: 60px;
}

.portfolio-invite-inner {
  max-width: 760px;
  margin: 0 auto;
}

/* Eyebrow / soft intro */
.portfolio-invite-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* Layout */
.portfolio-invite-content {
  display: flex;
  gap: 28px;
  align-items: center;
}

/* Image */
.portfolio-invite-image {
  display: block;
  flex-shrink: 0;
}

.contact-hero-image {
  max-width: 100%;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 18px;
  margin: 30px 0;
}

.portfolio-invite-image img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 8px; /* subtle, calm */
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.portfolio-invite-image:hover img {
  opacity: 1;
}

/* Text */
.portfolio-invite-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
  max-width: 420px;
}

/* Link */
.portfolio-invite-link {
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.portfolio-invite-link span {
  transition: transform 0.25s ease;
}

.portfolio-invite-link:hover span {
  transform: translateX(4px);
}

/* ---------------------------------
   Mobile refinement
---------------------------------- */

@media (max-width: 600px) {
  .portfolio-invite-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .portfolio-invite-image img {
    width: 110px;
    height: 110px;
  }

  .portfolio-invite-text p {
    max-width: 100%;
  }

  @media (max-width: 600px) {

    .portfolio-invite {
      text-align: center;
    }
  
    .portfolio-invite-eyebrow {
      margin-left: auto;
      margin-right: auto;
    }
  
    .portfolio-invite-content {
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
  
    .portfolio-invite-image img {
      margin: 0 auto;
    }
  
    .portfolio-invite-text {
      text-align: center;
    }
  
    .portfolio-invite-text p {
      margin-left: auto;
      margin-right: auto;
    }
  
    .portfolio-invite-link {
      justify-content: center;
    }
  }
}

/* .article-container {
  display: flex;
  align-items: center;
  justify-content: center;
} */

/* .article-text {
  padding-right: 10px;
  float: right;
} */

/* .kit-list {
  margin-left: auto;
  margin-right: auto;
  width: 20rem;
} */

ul {
  margin-left: auto;
  margin-right: auto;
  width: 20rem;
}

li {
  margin-left: auto;
  margin-right: auto;
  width: 16rem;
  padding: 0.5rem;
  list-style-image: url(gallery1/camera-icon.png);
}

#top-portfolio {
  display: flex;
  justify-content: center;
  width: auto;
  height: 16rem;
  padding-bottom: 2.5rem;
}

.pano-container {
  position: relative;
  text-align: center;
}

.landscape-container {
  position: relative;
  text-align: center;
}

.animals-container {
  position: relative;
  text-align: center;
}

.drone-container {
  position: relative;
  text-align: center;
}

.centered {
  text-shadow: #292929 5px 0 5px;
  font-size: larger;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

hr.style-seven {
  border: none;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    #5B7876,
    transparent
  );
  margin: 60px auto;
  max-width: 700px;
}

.headshot {
  max-width: 20rem;
  max-height: 20rem;
  padding: 1rem;
}

.article-text {
  max-width: 90%;
  text-align: center;
  padding: 1rem;
}

/* Kit List */
.kit-list {
  margin: auto;
  max-width: 90%;
}

/* Article and Text */
.article-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  gap: 1rem;
}

/* Contact Page and Form */



/* Style the submit button with a specific background color etc */
input[type=submit] {
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Add a background color and some padding around the form */
.formBackground {
  border-radius: 5px;
  padding: 20px;
}

/* .formInput {
  color: aqua;
} */

/* =========================
   Site Footer
========================= */

.site-footer {
  border-top: 1px solid rgba(242, 230, 182, 0.3);
  margin-top: 80px;
  padding: 50px 20px 20px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;

  align-items: start;
  justify-items: center;   /* 👈 centres content in each column */
  text-align: center;      /* 👈 centres text by default */
}

/* Brand block */

.footer-brand h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  max-width: 320px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Navigation */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;   /* 👈 centres links */
}

.footer-nav a {
  font-size: 0.9rem;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.footer-nav a:hover {
  opacity: 1;
}

.footer-logo {
  height: 100px;
  width: auto;
  margin-bottom: 16px;
  opacity: 0.9;
}

/* Meta / social */
.footer-meta p {
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 14px;
}

.footer-social img {
  width: 28px;
  height: auto;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.footer-social img:hover {
  opacity: 1;
}

/* Bottom bar */
.footer-bottom {
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.6;
}

/* Footer logo wrapper */
.footer-logo-wrapper {
  position: relative;
  height: 100px; /* match previous footer logo height */
  width: auto;
  display: inline-block;
  margin-bottom: 16px;
}

/* Stack logos */
.footer-logo-wrapper .logo {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: auto;
  opacity: 0;
  transition: opacity 0.45s ease;
}

/* Light theme */
html[data-theme="light"] .footer-logo-wrapper .logo-light {
  opacity: 1;
  position: relative;
}

/* Dark theme */
html[data-theme="dark"] .footer-logo-wrapper .logo-dark {
  opacity: 1;
  position: relative;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-nav {
    align-items: center;
  }

  .footer-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* =========================
   Premium Footer Styling
========================= */

.site-footer {
  margin-top: 6rem;
  padding-top: 4rem;
  background: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .site-footer {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo-wrapper {
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.8;
  max-width: 280px;
}

/* Column Headings */
.footer-nav h4,
.footer-meta h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  opacity: 0.6;
}

/* Links */
.footer-nav a,
.footer-meta a {
  display: block;
  margin-bottom: 0.6rem;
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.footer-nav a:hover,
.footer-meta a:hover {
  opacity: 1;
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  padding: 1.5rem 2rem 2rem;
  font-size: 0.85rem;
  opacity: 0.6;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Mobile */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-tagline {
    margin: 0 auto;
  }
}

.gallery-section {
  position: relative;
  max-width: 1100px;
  margin: 40px auto;
}

.gallery {
  position: relative;
  display: flex;
  align-items: center; /* already present on desktop, KEEP it */
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;         /* 👈 critical */
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-inline: 40px;
  padding-block: 0;
}

.gallery::-webkit-scrollbar {
  display: none;
}

.gallery img {
  flex: 0 0 auto;
  height: 500px;              /* 👈 uniform visual size */
  width: auto;
  max-width: 90vw;            /* safety on very wide images */
  object-fit: contain;
  border-radius: 18px;
  scroll-snap-align: center;
  opacity: 0.2;
}

.gallery img {
  transition:
    opacity 0.4s ease,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.6s ease;
}

.gallery img.is-active {
  opacity: 1;
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.gallery-spacer {
  flex: 0 0 50%;
  height: 1px;
  pointer-events: none;
}

.gallery-frame {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bg-main);
}

/* Arrows */

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  border: none;

  font-size: 26px;
  line-height: 1;           /* 👈 critical fix */
  padding: 0;               /* 👈 prevents glyph squash */

  cursor: pointer;
  backdrop-filter: blur(6px);
}

@media (max-width: 768px) {
  .arrow {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
}

.arrow:hover {
  background: rgba(255,255,255,0.18);
}

.arrow.left { left: 10px; }
.arrow.right { right: 10px; }

.arrow.disabled {
  opacity: 0.2;
  pointer-events: none;
}

/* Fade edges */

.fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 1;
  pointer-events: none;
}

.fade-left {
  left: 0;
  background: linear-gradient(
    to right,
    var(--bg-main) 0%,
    rgba(0,0,0,0) 100%
  );
}

.fade-right {
  right: 0;
  background: linear-gradient(
    to left,
    var(--bg-main) 0%,
    rgba(0,0,0,0) 100%
  );
}

.fade-left {
  left: 0;
}

.fade-right {
  right: 0;
}

.fade-left,
.fade-right {
  width: 80px;
}

/* Responsive */

/* Mobile carousel fixes */
@media (max-width: 768px) {
  .gallery {
    align-items: center;
    padding-inline: 16px;
  }

  .gallery img {
    width: 85vw;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
  }
}

@media (max-width: 768px) {
  .fade {
    display: none;
  }
}

@media (max-width: 768px) {
  .gallery-spacer {
    flex: 0;
    width: 0;
    height: 0;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    margin-bottom: 24px;
  }
}

/* Contact Buttons */
button {
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Make ALL inputs behave the same */
.formInput {
  width: 100%;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #000;
  box-sizing: border-box;
}

/* Mobile stack */
@media (max-width: 600px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}


/* Sessions Page */

.sessions-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.sessions-hero {
  padding: 60px 0 40px;
}

.sessions-hero h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  max-width: 700px;
  margin: 0 auto 16px;
}

@media (max-width: 768px) {
  .sessions-hero h1 {
    font-size: 1.7rem;
  }
}

.sessions-section {
  margin: 80px 0;
}

.sessions-section.pricing {
  margin-top: 100px;
}

.sessions-section:not(:last-child) {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 60px;
}

.sessions-section h3 {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.8;
}

.session-bullets {
  list-style: none;
  padding: 0;
}

.session-bullets li::before {
  content: "•";
  margin-right: 10px;
  color: var(--accent-primary);
}

.session-bullets li {
  padding: 8px 0;
}

.pricing-box {
  padding: 50px 46px;
  border-radius: 24px;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;

  background: var(--pricing-bg);
  border: 1px solid var(--pricing-border);

  box-shadow:
    0 18px 50px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.05);

  position: relative;
}

.price {
  font-size: 3.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 6px 0;
}

.price-subtitle,
.pricing-note {
  color: var(--pricing-text-secondary);
}

.price-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 26px;
}

.pricing-features {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.pricing-features li {
  padding: 14px 0;
  font-size: 0.96rem;
  line-height: 1.5;
}

.pricing-features li::before {
  content: "—";
  margin-right: 8px;
  opacity: 0.6;
}

.pricing-intro {
  margin-bottom: 22px;
  font-size: 0.95rem;
  opacity: 0.85;
}

/* =========================
   Pricing Sale State
========================= */

.price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

/* Default (no sale) */
.price-original {
  font-size: 3.4rem;
  font-weight: 600;
  margin: 0;
}

/* Sale active */
.price-wrapper[data-sale="true"] .price-original {
  font-size: 1.6rem;
  text-decoration: line-through;
  opacity: 0.5;
}

/* Sale price */
.price-sale {
  display: none;
}

/* Show sale price when active */
.price-wrapper[data-sale="true"] .price-sale {
  display: block;
  font-size: 3.6rem;
  font-weight: 700;
  color: #d14b4b; /* premium red, not harsh */
  margin-top: 4px;
  margin-bottom: 4px;
}

/* Badge */
.price-badge {
  display: none;
}

.price-wrapper[data-sale="true"] .price-badge {
  display: inline-block;

  margin-bottom: 12px;

  font-size: 0.8rem;        /* 👈 bigger */
  letter-spacing: 0.14em;

  padding: 8px 16px;        /* 👈 bigger pill */
  border-radius: 999px;

  background: rgba(209, 75, 75, 0.16); /* slightly stronger */
  color: #d14b4b;

  font-weight: 700;         /* 👈 stronger presence */
}

/* Hide urgency by default */
.pricing-urgency {
  display: none;
}

/* Only show when sale is active */
.price-wrapper[data-sale="true"] .pricing-urgency {
  display: inline-block;

  margin-top: 4px;   /* 👈 THIS fixes the big gap */
  padding: 6px 12px; /* slightly tighter */

  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  border-radius: 999px;

  background: rgba(209, 75, 75, 0.12);
  color: #d14b4b;

  font-weight: 600;
}

.price-wrapper[data-sale="true"] .pricing-urgency {
  animation: fadeInSoft 0.6s ease forwards;
  opacity: 0;
}

@keyframes fadeInSoft {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.upgrade-box {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--pricing-border);
}

.upgrade-box h3 {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 10px;
}

.upgrade-box p {
  font-size: 0.92rem;
  line-height: 1.6;
  opacity: 0.85;
}

.pricing-box::before {
  content: "Signature Session";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);

  background: var(--accent-primary);
  color: #1E1F1D;

  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  padding: 6px 12px;
  border-radius: 999px;
}

/* subtle separators */
.pricing-features li + li {
  border-top: 1px solid var(--pricing-border);
}

.pricing-note {
  margin-top: 24px;
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.6;
}

.primary-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: bold;
  background: var(--cta-primary-bg);
  color: var(--cta-primary-text);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.primary-cta:hover {
  background: #F2E6B6;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Pricing box list fix */
.pricing-box ul {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 20px 0;
  list-style: none;
}

.pricing-box li {
  width: 100%;
  margin: 0;
  padding: 8px 0;
  text-align: center;
  list-style: none;
}

@media (max-width: 600px) {
  .pricing-box {
    padding: 28px 22px;
  }

  .price {
    font-size: 2.4rem;
  }
}


/* Contact Page */

.contact-steps {
  max-width: 600px;
  margin: 30px auto;
  text-align: left;
}

.contact-steps li {
  margin-bottom: 10px;
}

.form-note {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 8px;
}

.contact-trust {
  margin-top: 40px;
  font-size: 0.85rem;
  opacity: 0.7;
}


/* About Page */

.about-layout {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  justify-items: center;
}

.headshot {
  display: block;
  margin: 0 auto;   /* 👈 THIS centres it in its grid column */
  max-width: 20rem;
  max-height: 20rem;
  padding: 1rem;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.about-intro {
  font-size: 1.05rem;
}

.about-closing {
  margin-top: 30px;
  font-style: italic;
}

/* Headings within about */
.article-text h2 {
  margin-top: 40px;
  margin-bottom: 10px;
}

/* Mobile */
@media (max-width: 768px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 1rem;
  }
}

  .headshot {
    margin: 0 auto;
  }

  @media (max-width: 768px) {
    .headshot {
      max-width: 14rem;
      max-height: 14rem;
      padding: 0.5rem;
      margin-bottom: 10px;
    }
  }

  @media (max-width: 768px) {
    .article-text p {
      text-align: left;
    }
  
    .article-text h1,
    .article-text h2 {
      text-align: center;
    }
  }

  @media (max-width: 768px) {
    .kit-details {
      margin: 2rem 0;
    }
  
    .about-cta {
      padding: 0 1rem;
      text-align: center;
    }
  }


.about-cta {
  margin-top: 50px;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Equipment dropdown fix */

.kit-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 3rem 0;
}

/* Remove default marker */
.kit-details summary {
  list-style: none;
  cursor: pointer;
}

/* Chrome / Safari */
.kit-details summary::-webkit-details-marker {
  display: none;
}


.kit-details summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-size: 1rem;
  text-align: center;
}

.kit-details summary::after {
  content: "▾";
  font-size: 0.9rem;
  transition: transform 0.25s ease;
}

.kit-details[open] summary::after {
  transform: rotate(180deg);
}

.kit-list {
  margin-top: 16px;
  padding: 0;
  width: 100%;
  max-width: 320px;
  text-align: left;
}

@media (max-width: 600px) {
  .kit-details summary {
    font-size: 0.95rem;
  }

  .kit-list {
    max-width: 90%;
  }
}

/* =========================
   Theme Toggle Button
========================= */

.theme-toggle {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  color: var(--text-primary);
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.2s ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--brand-gold);
  outline-offset: 3px;
}

/* Icons */
.toggle-icon {
  position: absolute;
  font-size: 18px;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* Light mode default */
.toggle-icon.sun {
  opacity: 1;
  transform: scale(1);
}

.toggle-icon.moon {
  opacity: 0;
  transform: scale(0.6);
}

/* Dark mode */
[data-theme="dark"] .toggle-icon.sun {
  opacity: 0;
  transform: scale(0.6);
}

[data-theme="dark"] .toggle-icon.moon {
  opacity: 1;
  transform: scale(1);
}

html {
  transition: background-color 0.3s ease, color 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
  html {
    transition: none;
  }
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.image-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease, filter 0.4s ease;
}

.portfolio-card:hover img {
  transform: scale(1.06);
  filter: brightness(1.08) contrast(1.05);
}

/* =========================
   Terms Page
========================= */

.terms-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}

.terms-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 22px;
  padding: 50px 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.terms-card h1 {
  margin-bottom: 10px;
}

.terms-updated {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-bottom: 40px;
}

.terms-section {
  margin-bottom: 45px;
  text-align: left;
}

.terms-section h2 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-align: left;
}

.terms-section p {
  text-align: left;
  margin-bottom: 12px;
  line-height: 1.7;
}

.terms-section ul {
  width: 100%;
  margin: 10px 0 0 0;
  padding-left: 20px;
}

.terms-section li {
  width: 100%;
  padding: 6px 0;
  list-style: disc;
}

.terms-closing {
  margin-top: 40px;
  font-style: italic;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .terms-card {
    padding: 30px 22px;
  }
}

/* =========================
   FAQ Styling
========================= */

.faq-list {
  margin-top: 30px;
}

/* Individual question block */
.faq-item {
  border-top: 1px solid var(--border-subtle);
  padding: 18px 0;
}

/* Last item bottom border */
.faq-item:last-child {
  border-bottom: 1px solid var(--border-subtle);
}

/* Question */
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Remove default arrow */
.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Plus icon */
.faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  opacity: 0.6;
  transition: transform 0.25s ease;
}

/* Open state */
.faq-item[open] summary::after {
  content: "–";
}

/* Answer text */
.faq-item p {
  margin-top: 12px;
  line-height: 1.7;
  text-align: left;
  max-width: 680px;
}

.terms-card > p {
  max-width: 620px;
  margin: 0 auto 30px auto;
}

.faq-item summary:hover {
  color: var(--accent-primary);
}

/* FAQ Layout */

.faq-category {
  margin-top: 50px;
}

.faq-category h2 {
  margin-bottom: 20px;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

/* Premium card separation */

.faq-item {
  padding: 18px 22px;
  margin-bottom: 14px;
  border-radius: 10px;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* FAQ Hero */

.faq-hero {
  position: relative;
  height: 420px;
  background-image: url("assets/faq-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  display: flex;
  align-items: center;
  justify-content: center;

  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
}

@media (max-width: 768px) {
  .faq-hero {
    background-attachment: scroll; /* 👈 disable parallax on mobile */
  }
}

.faq-hero {
  animation: hero-breathe 18s ease-in-out infinite alternate;
}

@keyframes hero-breathe {
  from { background-size: 100%; }
  to { background-size: 105%; }
}

/* Hero base */
.faq-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Light mode – brighten image */
:root[data-theme="light"] .faq-hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.35),
    rgba(255,255,255,0.10)
  );
}

/* Dark mode – darken image */
:root[data-theme="dark"] .faq-hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.25)
  );
}

.faq-hero-content {
  position: relative;
  text-align: center;
  color: white;
  max-width: 700px;
  padding: 20px;
  z-index: 2;
}

.faq-hero-content h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.faq-hero-content p {
  font-size: 1.1rem;
  opacity: 1;
}

.faq-hero {
  margin-bottom: 60px;
}