/* ============================================================
   Melbourne Photobooth Co. — Master Stylesheet
   Aesthetic: Clean modern structure + subtle vintage warmth
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

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

:root {
  /* Brand colours */
  --carmine: #9B2335;
  --carmine-dark: #7A1C2A;
  --carmine-light: #B8384B;
  --black: #1A1A1A;
  --charcoal: #2C2C2A;
  --grey-light: #F5F5F5;
  --slate: #888780;
  --white: #FFFFFF;

  /* Functional colours */
  --bg-primary: var(--white);
  --bg-secondary: var(--grey-light);
  --bg-dark: var(--charcoal);
  --text-primary: var(--black);
  --text-secondary: var(--slate);
  --text-inverse: var(--white);
  --accent: var(--carmine);
  --accent-hover: var(--carmine-dark);

  /* Typography */
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 900px;
  --header-height: 80px;
  --border-radius: 4px;

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 0.2s;
  --duration-base: 0.35s;
  --duration-slow: 0.6s;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

p {
  margin-bottom: 1em;
  color: var(--text-secondary);
}

p:last-child {
  margin-bottom: 0;
}

.accent-font {
  font-family: var(--font-accent);
  font-style: italic;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
  display: block;
}

.section-heading {
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--container-narrow);
}

section {
  padding: var(--space-2xl) 0;
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-inverse);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--text-inverse);
}

.section--dark p {
  color: rgba(255, 255, 255, 0.7);
}

.section--grey {
  background: var(--bg-secondary);
}

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

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: var(--border-radius);
  transition: all var(--duration-base) var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--text-inverse);
  border: 2px solid var(--accent);
}

.btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(155, 35, 53, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
}

.btn--outline:hover {
  background: var(--text-primary);
  color: var(--text-inverse);
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: var(--text-inverse);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--outline-light:hover {
  background: var(--text-inverse);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.btn--large {
  padding: 1.1rem 2.8rem;
  font-size: 0.9rem;
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform var(--duration-fast) var(--ease-out);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: all var(--duration-base) var(--ease-out);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  height: 70px;
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--text-inverse);
  transition: color var(--duration-base) var(--ease-out);
  z-index: 1001;
}

.scrolled .logo {
  color: var(--text-primary);
}

/* Non-hero pages: dark logo by default */
.page-interior .logo {
  color: var(--text-primary);
}

.logo-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Invert logo to white when on dark backgrounds */
.hero .logo-mark img,
.site-footer .logo-mark img {
  filter: brightness(0) invert(1);
}

.scrolled .logo-mark img {
  filter: none;
}

/* Interior pages: dark logo by default */
.page-interior .logo-mark img {
  filter: none;
}

.logo-text span {
  display: block;
  line-height: 1.1;
}

.logo-text .logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 0.3rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.5rem 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  border-radius: var(--border-radius);
  transition: all var(--duration-fast) var(--ease-out);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-inverse);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.8rem;
  right: 0.8rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-base) var(--ease-out);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  transform: scaleX(1);
}

.scrolled .nav-links a {
  color: var(--text-secondary);
}

.scrolled .nav-links a:hover,
.scrolled .nav-links a.active {
  color: var(--text-primary);
}

/* Interior pages — dark nav from start */
.page-interior .nav-links a {
  color: var(--text-secondary);
}

.page-interior .nav-links a:hover,
.page-interior .nav-links a.active {
  color: var(--text-primary);
}

.nav-cta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  background: var(--accent);
  color: var(--text-inverse);
  border-radius: var(--border-radius);
  transition: all var(--duration-base) var(--ease-out);
}

.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-inverse);
  transition: all var(--duration-base) var(--ease-out);
  border-radius: 2px;
}

.scrolled .menu-toggle span,
.page-interior .menu-toggle span {
  background: var(--text-primary);
}

.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);
}

/* Mobile menu always uses dark text for hamburger icon when open */
.menu-toggle.active span {
  background: var(--text-primary) !important;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(155, 35, 53, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(155, 35, 53, 0.08) 0%, transparent 50%);
  z-index: 1;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--space-md);
}

.hero-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
  padding: 0.4rem 1rem;
  border: 1px solid rgba(155, 35, 53, 0.4);
  border-radius: 2px;
}

.hero h1 {
  color: var(--text-inverse);
  margin-bottom: var(--space-md);
}

.hero h1 .accent-font {
  color: var(--accent);
  display: block;
  font-size: 0.45em;
  margin-top: 0.3em;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 550px;
  margin: 0 auto var(--space-lg);
  line-height: 1.8;
}

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

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ============================================================
   PAGE HERO (Interior pages)
   ============================================================ */

.page-hero {
  padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-xl);
  background: var(--bg-secondary);
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

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

.page-hero .section-subtitle {
  margin: 0 auto;
}

/* ============================================================
   FEATURES / WHAT'S INCLUDED
   ============================================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.feature-card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(155, 35, 53, 0.08);
  border-radius: 50%;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.95rem;
}

/* ============================================================
   ABOUT / SPLIT SECTION
   ============================================================ */

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.split-image {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg-secondary);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.split-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--border-radius);
  z-index: 1;
  pointer-events: none;
}

/* Placeholder state */
.split-image .placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--slate);
  gap: 0.5rem;
}

.placeholder-content svg {
  width: 48px;
  height: 48px;
  stroke: var(--slate);
  fill: none;
  stroke-width: 1;
  opacity: 0.4;
}

.placeholder-content span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.4;
}

.split-content {
  max-width: 500px;
}

.split-content p {
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ============================================================
   PACKAGES
   ============================================================ */

.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  max-width: 900px;
  margin: var(--space-xl) auto 0;
}

.package-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--border-radius);
  padding: var(--space-xl) var(--space-lg);
  transition: all var(--duration-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.package-card:hover {
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.package-card.featured {
  border-color: var(--accent);
}

.package-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--accent);
  color: var(--text-inverse);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.4rem;
}

.package-card.featured {
  padding-top: calc(var(--space-xl) + 1.2rem);
}

.package-name {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.package-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.package-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.package-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.package-features {
  margin-bottom: var(--space-lg);
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.package-features li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  margin-top: 2px;
}

.package-card .btn {
  width: 100%;
}

/* ============================================================
   PRICING TABLE
   ============================================================ */

.pricing-table-wrapper {
  margin-top: var(--space-xl);
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.pricing-table thead th {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 2px solid var(--text-primary);
}

.pricing-table tbody td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--text-secondary);
}

.pricing-table tbody tr:hover {
  background: rgba(155, 35, 53, 0.02);
}

.pricing-table .price-cell {
  font-weight: 600;
  color: var(--text-primary);
}

/* ============================================================
   TRAVEL ZONES
   ============================================================ */

.travel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.travel-card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--border-radius);
}

.travel-card .travel-zone {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.travel-card .travel-fee {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
}

.travel-card .travel-fee span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ============================================================
   PAYMENT TERMS
   ============================================================ */

.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.payment-card {
  padding: var(--space-lg);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--border-radius);
}

.payment-card .payment-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.payment-card .payment-amount {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.payment-card .payment-due {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ============================================================
   GALLERY
   ============================================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.gallery-item {
  aspect-ratio: 1;
  background: var(--bg-secondary);
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  transition: all var(--duration-base) var(--ease-out);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Varied aspect ratios for masonry feel */
.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item:nth-child(4),
.gallery-item:nth-child(9) {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, rgba(155, 35, 53, 0.06), rgba(155, 35, 53, 0.12));
}

.gallery-placeholder svg {
  width: 32px;
  height: 32px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1;
  opacity: 0.3;
}

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

.faq-list {
  max-width: 800px;
  margin: var(--space-xl) auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  width: 100%;
  padding: var(--space-md) 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: color var(--duration-fast) var(--ease-out);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question .faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}

.faq-question .faq-icon::before,
.faq-question .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  border-radius: 1px;
  transition: transform var(--duration-base) var(--ease-out);
}

.faq-question .faq-icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-question .faq-icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-question .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out);
}

.faq-answer-inner {
  padding-bottom: var(--space-md);
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.contact-info h3 {
  margin-bottom: var(--space-md);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.contact-detail svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.contact-detail a {
  transition: color var(--duration-fast);
}

.contact-detail a:hover {
  color: var(--accent);
}

.contact-form {
  background: var(--bg-secondary);
  padding: var(--space-xl);
  border-radius: var(--border-radius);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--border-radius);
  background: var(--white);
  color: var(--text-primary);
  transition: border-color var(--duration-fast) var(--ease-out);
  appearance: none;
  -webkit-appearance: none;
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888780' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

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

.contact-form .btn {
  width: 100%;
}

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  padding: var(--space-3xl) 0;
  background: var(--charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(155, 35, 53, 0.12) 0%, transparent 70%);
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: var(--text-inverse);
  margin-bottom: var(--space-sm);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.5);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand .logo {
  color: var(--text-inverse);
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 320px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-md);
}

.footer-links a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--duration-fast);
}

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

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--duration-fast);
}

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

.footer-contact svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all var(--duration-fast);
}

.footer-social a:hover {
  border-color: var(--accent);
  background: rgba(155, 35, 53, 0.1);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.5);
  transition: fill var(--duration-fast);
}

.footer-social a:hover svg {
  fill: var(--accent);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   PRIVACY PAGE
   ============================================================ */

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

.prose h2 {
  font-size: 1.5rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
  line-height: 1.8;
}

.prose ul {
  margin-bottom: var(--space-sm);
  padding-left: 1.5rem;
}

.prose ul li {
  list-style: disc;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  padding: 0.2rem 0;
}

.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose a:hover {
  color: var(--accent-hover);
}

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

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-row: span 1;
    aspect-ratio: 1;
  }

  .gallery-item:nth-child(4),
  .gallery-item:nth-child(9) {
    grid-column: span 1;
    aspect-ratio: 1;
  }

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

@media (max-width: 768px) {
  :root {
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 5rem;
  }

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

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    transition: right var(--duration-base) var(--ease-out);
  }

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

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .nav-links a {
    font-size: 1.2rem;
    padding: 0.8rem 1rem;
    color: var(--text-primary) !important;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--accent) !important;
  }

  .nav-cta {
    margin-top: var(--space-sm);
    font-size: 0.85rem;
    padding: 0.8rem 2rem;
  }

  /* Layout adjustments */
  .split-section {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .split-image {
    order: -1;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .travel-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .contact-form {
    padding: var(--space-lg) var(--space-md);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .pricing-table {
    font-size: 0.8rem;
  }

  .pricing-table thead th,
  .pricing-table tbody td {
    padding: 0.7rem;
  }
}
