/*
Theme Name: Halfway Studios
Theme URI: https://halfwaystudios.com.au
Author: Halfway Studios
Author URI: https://halfwaystudios.com.au
Description: Custom theme for Halfway Studios - Professional podcast, photography, and video production studio in Perth.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: halfway-studios
*/

/* =====================================================
   CSS RESET & BASE
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&family=Montserrat:wght@300;400;500;600;700&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Core backgrounds */
  --background: hsl(228, 33%, 5%);
  --foreground: hsl(210, 40%, 98%);

  /* Cards */
  --card: hsl(224, 38%, 11%);
  --card-foreground: hsl(210, 40%, 98%);

  /* Brand primary - Teal */
  --primary: hsl(185, 30%, 38%);
  --primary-foreground: hsl(0, 0%, 100%);

  /* Brand secondary - Warm Red-Orange */
  --secondary: hsl(10, 60%, 45%);
  --secondary-foreground: hsl(0, 0%, 100%);

  /* Muted */
  --muted: hsl(224, 20%, 15%);
  --muted-foreground: hsl(213, 18%, 68%);

  /* Accent - Sand/Gold */
  --accent: hsl(32, 40%, 52%);
  --accent-foreground: hsl(0, 0%, 100%);

  /* Borders */
  --border: hsl(224, 20%, 18%);

  /* Brand tokens */
  --color-navy: hsl(210, 40%, 12%);
  --color-teal: hsl(185, 30%, 38%);
  --color-orange: hsl(10, 60%, 45%);
  --color-sand: hsl(32, 40%, 52%);

  --radius: 0.75rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', system-ui, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.1;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

ul {
  list-style: none;
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.text-gradient {
  background: linear-gradient(135deg, hsl(185, 30%, 50%), hsl(10, 60%, 55%), hsl(32, 40%, 58%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.font-body {
  font-family: 'Montserrat', system-ui, sans-serif;
}

.font-display {
  font-family: 'Playfair Display', Georgia, serif;
}

/* =====================================================
   GLASS CARD
   ===================================================== */
.glass-card {
  border-radius: 1rem;
  border: 1px solid hsla(224, 20%, 18%, 0.5);
  background: hsla(224, 38%, 11%, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.glass-card-gradient-border {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.glass-card-gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  padding: 1px;
  background: linear-gradient(135deg, hsla(185, 30%, 38%, 0.5), hsla(10, 60%, 45%, 0.3), hsla(32, 40%, 52%, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.gradient-border-btn {
  display: inline-block;
  position: relative;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  overflow: hidden;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, hsl(210, 40%, 15%), hsl(10, 60%, 42%), hsl(32, 40%, 48%));
  color: hsl(0, 0%, 100%);
  border: none;
  cursor: pointer;
  text-align: center;
}

.gradient-border-btn:hover {
  background: linear-gradient(135deg, hsl(210, 40%, 20%), hsl(10, 60%, 50%), hsl(32, 40%, 55%));
  transform: translateY(-1px);
  box-shadow: 0 8px 30px hsla(10, 60%, 45%, 0.3);
  color: hsl(0, 0%, 100%);
}

.gradient-outline-btn {
  display: inline-block;
  position: relative;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  overflow: hidden;
  transition: all 0.3s ease;
  background: transparent;
  color: hsl(0, 0%, 100%);
  border: 2px solid hsla(185, 30%, 38%, 0.6);
  cursor: pointer;
  text-align: center;
}

.gradient-outline-btn:hover {
  border-color: hsla(10, 60%, 45%, 0.8);
  background: hsla(10, 60%, 45%, 0.1);
  color: hsl(0, 0%, 100%);
}

/* Navbar-specific outline button — used for "Contact Us" in the header */
.nav-outline-btn {
  display: inline-block;
  position: relative;
  padding: 0.6rem 1.4rem;
  border-radius: 9999px;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  background: transparent;
  color: hsla(210, 40%, 98%, 0.85);
  border: 1px solid hsla(210, 40%, 98%, 0.3);
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
}

.nav-outline-btn:hover {
  border-color: hsla(210, 40%, 98%, 0.65);
  color: hsl(0, 0%, 100%);
  background: hsla(210, 40%, 98%, 0.06);
}

/* =====================================================
   NAVBAR
   ===================================================== */
.site-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.5s ease,
              backdrop-filter 0.5s ease,
              -webkit-backdrop-filter 0.5s ease,
              border-bottom 0.5s ease;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  will-change: transform;
}

.site-navbar.navbar-hidden {
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
}

.site-navbar.scrolled {
  background: hsla(228, 33%, 5%, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid hsla(224, 20%, 18%, 0.3);
}

.navbar-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 5rem;
}

@media (min-width: 768px) {
  .navbar-logo img {
    height: 6rem;
  }
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .navbar-links {
    display: flex;
  }
}

.navbar-links a {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(0, 0%, 100%);
  transition: color 0.3s ease;
}

.navbar-links a:hover {
  color: hsl(0, 0%, 100%);
  opacity: 0.8;
}

.mobile-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: hsla(228, 33%, 5%, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid hsla(224, 20%, 18%, 0.3);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.mobile-menu.open {
  display: block;
  max-height: 400px;
  opacity: 1;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu-inner {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu-inner a {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.125rem;
  color: hsl(0, 0%, 100%);
  transition: color 0.3s ease;
}

.mobile-menu-inner a:hover {
  color: hsl(0, 0%, 100%);
  opacity: 0.8;
}

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

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsla(210, 40%, 12%, 0.80) 0%, hsla(10, 60%, 42%, 0.60) 50%, hsla(32, 40%, 48%, 0.50) 100%);
}

.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 12rem;
  background: linear-gradient(to top, hsl(228, 33%, 5%), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

.hero-subtitle {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: hsla(210, 40%, 98%, 0.85);
  margin-bottom: 1.5rem;
  margin-top: 3.5rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1rem;
    margin-top: 0;
  }
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 0.95;
  margin-bottom: 1.5rem;
  color: white;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 6rem;
  }
}

.hero-description {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.125rem;
  color: hsla(210, 40%, 98%, 0.85);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-buttons .gradient-border-btn,
.hero-buttons .gradient-outline-btn {
  font-size: 1rem;
  padding: 1rem 2.5rem;
}

.hero-location {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: hsla(210, 40%, 98%, 0.65);
  margin-top: 4rem;
  font-weight: 800;
}

/* =====================================================
   STATS SECTION
   ===================================================== */
.stats-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

@media (max-width: 767px) {
  .stats-section {
    padding: 2.5rem 0;
  }
}

.stats-grid {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.stat-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.stat-icon-tight {
  margin-bottom: 0.25rem;
}

.stat-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
}

.stat-value-word {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 2.25rem;
    min-height: 2.9rem;
  }
  .stat-value-word {
    font-size: 1.75rem;
  }
}

.stat-label {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

@media (max-width: 767px) {
  .services-section {
    padding: 4rem 0;
  }
}

.services-glow-teal {
  position: absolute;
  left: -16rem;
  top: 0;
  width: 700px;
  height: 700px;
  pointer-events: none;
  background: radial-gradient(ellipse, hsla(185, 30%, 38%, 0.15), transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite;
}

.services-glow-orange {
  position: absolute;
  right: -16rem;
  bottom: 0;
  width: 600px;
  height: 600px;
  pointer-events: none;
  background: radial-gradient(ellipse, hsla(10, 60%, 45%, 0.1), transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite;
  animation-delay: 2s;
}

.services-inner {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

@media (max-width: 767px) {
  .section-header {
    margin-bottom: 3rem;
  }
}

.section-label {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3.75rem;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  overflow: hidden;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-image-wrap {
  position: relative;
  height: 14rem;
  overflow: hidden;
  border-radius: 1rem 1rem 0 0;
}

.service-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-card:hover .service-image-wrap img {
  transform: scale(1.1);
}

.service-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(224, 38%, 11%, 0.8), transparent 60%);
}

.service-image-meta {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-image-meta svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
}

.service-image-meta span {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: hsla(210, 40%, 98%, 0.7);
}

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.service-content p {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-feature-tag {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: var(--muted);
  color: var(--muted-foreground);
}

/* =====================================================
   PORTFOLIO SECTION
   ===================================================== */
.portfolio-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

@media (max-width: 767px) {
  .portfolio-section {
    padding: 3.5rem 0;
  }
}

.portfolio-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, hsl(228, 33%, 5%) 0%, hsl(185, 30%, 12%) 40%, hsl(185, 28%, 14%) 60%, hsl(228, 33%, 5%) 100%);
}

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

.portfolio-inner {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.portfolio-item {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(228, 33%, 5%, 0.85) 0%, hsla(228, 33%, 5%, 0.3) 40%, transparent 60%);
}

.portfolio-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.portfolio-category span {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: hsla(10, 60%, 45%, 0.9);
  color: white;
}

.portfolio-info {
  position: absolute;
  inset: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.portfolio-info h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.portfolio-info p {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.portfolio-item-border {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px hsla(185, 30%, 38%, 0.4);
}

.portfolio-item:hover .portfolio-item-border {
  opacity: 1;
}

/* =====================================================
   STUDIO GALLERY
   ===================================================== */
.studio-gallery {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

@media (max-width: 767px) {
  .studio-gallery {
    padding: 3.5rem 0;
  }
}

.studio-gallery-glow {
  position: absolute;
  right: -2rem;
  top: 25%;
  width: 700px;
  height: 700px;
  pointer-events: none;
  background: radial-gradient(ellipse, hsla(10, 60%, 45%, 0.12), hsla(32, 40%, 52%, 0.06) 40%, transparent 70%);
}

.studio-gallery-inner {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gallery-description {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-top: 1.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

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

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.gallery-item {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  min-height: 200px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-border {
  position: absolute;
  inset: 0;
  border-radius: 0.75rem;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px hsla(10, 60%, 45%, 0.15);
}

.gallery-item.span-2 {
  grid-column: span 2;
  grid-row: span 2;
}

/* =====================================================
   PRICING SECTION
   ===================================================== */
.pricing-section {
  position: relative;
  padding: 5rem 0 5rem;
  overflow: hidden;
}

@media (max-width: 767px) {
  .pricing-section {
    padding: 3.5rem 0 3.5rem;
  }
}

.pricing-mesh-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 30%, hsla(185, 30%, 38%, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, hsla(10, 60%, 45%, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, hsla(32, 40%, 52%, 0.05) 0%, transparent 60%);
}

.pricing-inner {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pricing-section-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-section-description {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-top: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pricing-sub-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-sub-header h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .pricing-sub-header h3 {
    font-size: 1.875rem;
  }
}

.pricing-sub-header p {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 8rem;
}

@media (min-width: 768px) {
  .pricing-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .pricing-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
}

.pricing-card-wrap {
  position: relative;
  padding-top: 0.75rem;
}

.pricing-badge {
  position: absolute;
  top: 0;
  right: 1rem;
  z-index: 10;
  /* Force own GPU compositor layer so iOS Safari renders it above
     the backdrop-filter layer on the glass card during swipe */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.pricing-badge.popular {
  background: var(--secondary);
  color: white;
}

.pricing-badge.recommended {
  background: var(--accent);
  color: white;
}

.pricing-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card.ring-secondary {
  box-shadow: inset 0 0 0 1px hsla(10, 60%, 45%, 0.4);
}

.pricing-card.ring-accent {
  box-shadow: inset 0 0 0 1px hsla(32, 40%, 52%, 0.4);
}

.pricing-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.pricing-price .amount {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
}

.pricing-price .period {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.pricing-features {
  flex: 1;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.pricing-features li svg {
  width: 16px;
  height: 16px;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.pricing-features li span {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.pricing-card .gradient-border-btn,
.photo-card-inner .gradient-border-btn {
  align-self: center;
  width: fit-content;
  min-width: 11rem;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  text-align: center;
}

@media (max-width: 767px) {
  .photo-card-inner .gradient-border-btn {
    display: block;
    min-width: 11rem;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    white-space: nowrap;
    text-align: center;
  }
}

/* Photography section - gradient card wrapper */
.photography-wrapper {
  position: relative;
  border-radius: 1.5rem;
  padding: 2rem 0.75rem 3rem;
  margin-bottom: 4rem;
  overflow: clip;
  background: linear-gradient(135deg, hsl(210, 40%, 15%) 0%, hsl(210, 35%, 12%) 25%, hsl(10, 50%, 30%) 50%, hsl(10, 60%, 38%) 75%, hsl(32, 40%, 45%) 100%);
}

@media (min-width: 768px) {
  .photography-wrapper {
    padding: 4rem 4rem 2rem;
  }
}

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

.photography-inner {
  position: relative;
  z-index: 10;
}

.photography-inner > h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .photography-inner > h2 {
    font-size: 3rem;
  }
}

.photography-inner > p {
  font-family: 'Montserrat', system-ui, sans-serif;
  color: hsla(210, 40%, 98%, 0.7);
  margin-bottom: 3rem;
  max-width: 32rem;
}

/* Photography card specific styling */
.photo-pricing-card {
  position: relative;
  padding-top: 0.75rem;
  height: 100%;
}

.photo-card-inner {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1rem;
  background: hsla(0, 0%, 0%, 0.3);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.photo-card-inner.ring-accent {
  box-shadow: inset 0 0 0 1px hsla(32, 40%, 52%, 0.4);
}

.photo-card-inner h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.photo-pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.photo-pricing-price .amount {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--foreground);
  white-space: nowrap;
}

/* Desktop only: "Custom Quote" text should match h3 size, not the large price size */
@media (min-width: 768px) {
  .photo-card-inner.ring-accent .photo-pricing-price .amount {
    font-size: 1.5rem;
    font-weight: 600;
  }
}

@media (max-width: 767px) {
  .photo-pricing-price .amount {
    font-size: 1.1rem;
    white-space: normal;
    word-break: keep-all;
  }
}

.photo-pricing-price .period {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.875rem;
  color: hsla(210, 40%, 98%, 0.6);
}

.photo-pricing-features {
  flex: 1;
  margin-bottom: 2rem;
}

.photo-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.photo-pricing-features li svg {
  width: 16px;
  height: 16px;
  margin-top: 0.125rem;
  flex-shrink: 0;
  color: var(--accent);
}

.photo-pricing-features li span {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.875rem;
  color: hsla(210, 40%, 98%, 0.8);
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

@media (max-width: 767px) {
  .cta-section {
    padding: 2.5rem 0;
  }
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg,
    hsl(228, 33%, 8%) 0%,
    hsl(210, 40%, 15%) 20%,
    hsl(10, 55%, 35%) 55%,
    hsl(32, 40%, 40%) 80%,
    hsl(228, 33%, 8%) 100%
  );
}

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

.cta-inner {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.cta-inner h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-inner h2 {
    font-size: 4.5rem;
  }
}

.cta-inner > p,
.cta-inner .animate-on-scroll > p {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.25rem;
  color: hsla(210, 40%, 98%, 0.7);
  max-width: 42rem;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .cta-inner > p,
  .cta-inner .animate-on-scroll > p {
    margin-bottom: 3rem;
  }
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.cta-buttons .gradient-border-btn,
.cta-buttons .gradient-outline-btn {
  font-size: 1.125rem;
  padding: 1.25rem 3rem;
}

.cta-buttons .gradient-outline-btn {
  border-width: 2px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  border-top: 1px solid hsla(224, 20%, 18%, 0.3);
  background: var(--background);
}

.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-logo img {
  height: 5rem;
  margin-bottom: 1rem;
}

.footer-logo p {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.footer-heading {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer-contact li svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.footer-contact a {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

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

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 1px solid hsla(185, 30%, 38%, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary);
  color: white;
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  border-top: 1px solid hsla(224, 20%, 18%, 0.3);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Scroll animation classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: none;
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

.animate-scale-on-scroll {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-scale-on-scroll.visible {
  opacity: 1;
  transform: scale(1);
}

/* Hero-specific animations */
.hero-animate {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
}

.hero-animate-delay {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-animate-fade {
  opacity: 0;
  animation: fadeIn 1s ease 1s forwards;
}

/* Initial load animation for navbar */
.navbar-animate {
  animation: slideDown 0.6s ease forwards;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* =====================================================
   MOBILE CAROUSEL (pricing on mobile)
   Matches Lovable original: centered, looping, peek edges
   ===================================================== */
.mobile-carousel {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0 0;
}

.mobile-carousel-track {
  display: flex;
  gap: 12px;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  -webkit-user-select: none;
  user-select: none;
}

/* CRITICAL for iOS Safari: tell the browser that horizontal panning
   is handled by JS on the carousel track, every element inside it,
   AND every ancestor up to the section level.
   iOS Safari walks the ancestor chain looking at touch-action. If ANY
   ancestor has 'auto' + 'overflow:hidden', iOS claims horizontal swipes
   for native scroll handling before our JS can process them.
   This specifically fixes the Photography section where the extra
   photography-wrapper (overflow:hidden) was intercepting swipes. */
.mobile-carousel,
.mobile-carousel-wrapper,
.photography-wrapper,
.mobile-carousel-track,
.mobile-carousel-track * {
  touch-action: pan-y;
  -ms-touch-action: pan-y;
}

/* Prevent child elements from capturing pointer events during swipe */
.mobile-carousel-track.is-dragging * {
  pointer-events: none !important;
}

.mobile-carousel-slide {
  flex: 0 0 92%;
  min-width: 0;
  -webkit-user-select: none;
  user-select: none;
}

/* Equal-height cards inside carousel */
.mobile-carousel-slide .pricing-card-wrap {
  height: 100%;
  width: 100%;
  isolation: isolate;
}

.mobile-carousel-slide .pricing-card {
  height: 100%;
}

/* Photo cards stretch to match tallest slide */
.mobile-carousel-slide .photo-pricing-card {
  height: 100%;
  isolation: isolate;
}

.mobile-carousel-slide .photo-card-inner {
  height: 100%;
}

/* Photo carousel slides take full width since wrapper already has padding */
#photo-carousel .mobile-carousel-slide {
  flex: 0 0 100%;
}

#photo-carousel .mobile-carousel-slide .photo-pricing-card,
#photo-carousel .mobile-carousel-slide .photo-card-inner {
  width: 100%;
}

/* Photo carousel track stretches slides to equal height */
#photo-track {
  align-items: stretch;
}

/* Hidden arrow state */
.carousel-arrow.arrow-hidden {
  opacity: 0;
  pointer-events: none;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: hsla(228, 33%, 5%, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsla(210, 40%, 98%, 0.7);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-arrow:hover {
  color: var(--foreground);
  background: hsla(228, 33%, 5%, 0.7);
}

/* Arrows sit over the card border edges (card = 92% wide, so edge is at 4% from each side) */
.carousel-arrow.prev { left: calc(4% - 1rem); }
.carousel-arrow.next { right: calc(4% - 1rem); }

/* Photo carousel: arrows flush at the card edges */
#photo-carousel .carousel-arrow.prev { left: 0; }
#photo-carousel .carousel-arrow.next { right: 0; }

/* Mobile: push card content inward so arrows don't overlap text */
@media (max-width: 767px) {
  #photo-carousel .photo-card-inner {
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }
}

/* Show carousel only on mobile */
@media (min-width: 768px) {
  .mobile-carousel-wrapper {
    display: none !important;
  }
  .desktop-pricing-grid {
    display: grid !important;
  }
}

@media (max-width: 767px) {
  .mobile-carousel-wrapper {
    display: block;
  }
  .desktop-pricing-grid {
    display: none !important;
  }
}

/* =====================================================
   WORDPRESS OVERRIDES
   ===================================================== */
/* Remove default WP margins and padding */
.wp-site-blocks {
  padding: 0 !important;
  margin: 0 !important;
}

body.page-template-front-page,
body.home {
  margin: 0;
  padding: 0;
}

/* Hide WP admin bar overlap */
body.admin-bar .site-navbar {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-navbar {
    top: 46px;
  }
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact-section {
  position: relative;
  padding: 6rem 1.5rem;
  overflow: hidden;
}

.contact-glow-teal {
  position: absolute;
  top: 10%;
  left: -10%;
  width: 40rem;
  height: 40rem;
  border-radius: 9999px;
  background: radial-gradient(circle, hsla(185, 30%, 38%, 0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse-glow 6s ease-in-out infinite;
}

.contact-glow-orange {
  position: absolute;
  bottom: 10%;
  right: -10%;
  width: 35rem;
  height: 35rem;
  border-radius: 9999px;
  background: radial-gradient(circle, hsla(10, 60%, 45%, 0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse-glow 6s ease-in-out infinite 2s;
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  margin: 0 auto;
}

.contact-description {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1rem;
  color: var(--muted-foreground);
  text-align: center;
  margin-top: 0.5rem;
}

.contact-card {
  padding: 2.5rem 2rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .contact-card {
    padding: 3rem 3rem;
  }
}

/* ---- CF7 Form Layout ---- */
.contact-card .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .contact-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form-field label {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

/* ---- CF7 Inputs ---- */
.contact-card .wpcf7-form input[type="text"],
.contact-card .wpcf7-form input[type="email"],
.contact-card .wpcf7-form input[type="tel"],
.contact-card .wpcf7-form input[type="url"],
.contact-card .wpcf7-form textarea {
  width: 100%;
  background: hsla(224, 38%, 8%, 0.8);
  border: 1px solid hsla(185, 30%, 38%, 0.25);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.9rem;
  color: var(--foreground);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
}

.contact-card .wpcf7-form input[type="text"]:focus,
.contact-card .wpcf7-form input[type="email"]:focus,
.contact-card .wpcf7-form input[type="tel"]:focus,
.contact-card .wpcf7-form input[type="url"]:focus,
.contact-card .wpcf7-form textarea:focus {
  border-color: hsla(185, 30%, 38%, 0.7);
  box-shadow: 0 0 0 3px hsla(185, 30%, 38%, 0.1);
}

.contact-card .wpcf7-form input::placeholder,
.contact-card .wpcf7-form textarea::placeholder {
  color: hsla(210, 40%, 98%, 0.25);
}

.contact-card .wpcf7-form textarea {
  resize: vertical;
  min-height: 8rem;
}

/* ---- Service Checkboxes ---- */
.contact-form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.contact-card .wpcf7-form .wpcf7-checkbox .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 0.5rem 0;
}

.contact-card .wpcf7-form .wpcf7-checkbox .wpcf7-list-item-label {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.875rem;
  color: var(--foreground);
  cursor: pointer;
}

.contact-card .wpcf7-form .wpcf7-checkbox input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 1.1rem;
  height: 1.1rem;
  border: 1px solid hsla(185, 30%, 38%, 0.4);
  border-radius: 0.25rem;
  background: hsla(224, 38%, 8%, 0.8);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-card .wpcf7-form .wpcf7-checkbox input[type="checkbox"]:checked {
  background: var(--primary);
  border-color: var(--primary);
}

.contact-card .wpcf7-form .wpcf7-checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 0.25rem;
  top: 0.05rem;
  width: 0.35rem;
  height: 0.6rem;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

/* ---- Submit Button ---- */
.contact-card .wpcf7-form .wpcf7-submit {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  padding: 0.75rem 2.5rem;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
  margin-top: 0.5rem;
}

.contact-card .wpcf7-form .wpcf7-submit:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* ---- Validation & Response Messages ---- */
.contact-card .wpcf7-not-valid-tip {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.75rem;
  color: hsl(10, 60%, 55%);
  margin-top: 0.25rem;
}

.contact-card .wpcf7-response-output {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.85rem;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  margin-top: 0.5rem;
  border: none !important;
}

.contact-card .wpcf7-mail-sent-ok {
  background: hsla(185, 30%, 38%, 0.15);
  color: hsl(185, 30%, 65%);
}

.contact-card .wpcf7-mail-sent-ng,
.contact-card .wpcf7-aborted {
  background: hsla(10, 60%, 45%, 0.15);
  color: hsl(10, 60%, 65%);
}


/* Contact page extra spacing (accounts for fixed navbar) */
.contact-page-section {
  padding-top: 9rem;
}

/* Contact detail items below form */
.contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .contact-details {
    flex-direction: row;
    justify-content: center;
    gap: 2.5rem;
  }
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.85rem;
  color: var(--muted-foreground);
}

.contact-detail-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-detail-item a {
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

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

/* =====================================================
   INTERIOR PAGES — SHARED
   ===================================================== */
.interior-hero {
  position: relative;
  padding: 10rem 1.5rem 5rem;
  text-align: center;
  overflow: hidden;
}

.interior-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, hsla(185, 30%, 38%, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.interior-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  margin: 0 auto;
}

.interior-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.interior-hero-description {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-story-section {
  padding: 5rem 1.5rem;
}

.about-story-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.about-story-body p {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.95rem;
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-image-wrap {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-gallery-section {
  position: relative;
  padding: 5rem 1.5rem;
  overflow: hidden;
}

.about-gallery-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50rem;
  height: 30rem;
  background: radial-gradient(circle, hsla(10, 60%, 45%, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.about-gallery-inner {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
}

.about-gallery-description {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1rem;
  color: var(--muted-foreground);
  text-align: center;
  margin-top: 0.5rem;
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
  margin-top: 3rem;
}

.about-gallery-item {
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-gallery-item.span-2 {
  grid-column: span 2;
  aspect-ratio: 16/7;
}

.about-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-gallery-item:hover img {
  transform: scale(1.03);
}

/* =====================================================
   FAQS PAGE
   ===================================================== */
.faqs-section {
  position: relative;
  padding: 4rem 1.5rem 6rem;
}

.faqs-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, hsla(185, 30%, 38%, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.faqs-inner {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.faq-category-title {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  border: 1px solid hsla(224, 20%, 18%, 0.6);
  border-radius: 0.75rem;
  overflow: hidden;
  background: hsla(224, 38%, 11%, 0.4);
  transition: border-color 0.25s ease;
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: hsla(185, 30%, 38%, 0.4);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--foreground);
}

.faq-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.25rem;
}

.faq-answer.open {
  max-height: 20rem;
  padding: 0 1.25rem 1.1rem;
}

.faq-answer p {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* =====================================================
   OUR WORK PAGE
   ===================================================== */
.our-work-reel-section {
  padding: 4rem 1.5rem;
}

.our-work-reel-inner {
  max-width: 52rem;
  margin: 0 auto;
}

.our-work-video-wrap {
  margin-top: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.our-work-video-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.our-work-section {
  position: relative;
  padding: 4rem 1.5rem 6rem;
}

.our-work-glow {
  position: absolute;
  top: 10%;
  left: -5%;
  width: 40rem;
  height: 40rem;
  background: radial-gradient(circle, hsla(185, 30%, 38%, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.our-work-inner {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
}

.our-work-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 2rem 0 2.5rem;
}

.work-filter {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid hsla(185, 30%, 38%, 0.3);
  background: transparent;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: all 0.2s ease;
}

.work-filter:hover,
.work-filter.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.our-work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .our-work-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .our-work-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.work-card {
  display: block;
  text-decoration: none;
  border-radius: 1rem;
  overflow: hidden;
  background: hsla(224, 38%, 11%, 0.6);
  border: 1px solid hsla(224, 20%, 18%, 0.5);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.work-card:hover {
  transform: translateY(-4px);
  border-color: hsla(185, 30%, 38%, 0.5);
}

.work-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.work-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.work-card:hover .work-card-image img {
  transform: scale(1.05);
}

.work-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(228, 33%, 5%, 0.6) 0%, transparent 60%);
}

.work-card-category {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  background: hsla(228, 33%, 5%, 0.7);
  color: var(--primary);
  border: 1px solid hsla(185, 30%, 38%, 0.4);
  backdrop-filter: blur(8px);
}

.work-card-info {
  padding: 1.25rem;
}

.work-card-info h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.4rem;
}

.work-card-info p {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.8rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.work-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--primary);
  text-transform: uppercase;
}

/* =====================================================
   PROJECT DETAIL PAGE
   ===================================================== */
.project-hero {
  position: relative;
  height: 60vh;
  min-height: 20rem;
  display: flex;
  align-items: flex-end;
}

.project-hero-image {
  position: absolute;
  inset: 0;
}

.project-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(228, 33%, 5%, 0.95) 0%, hsla(228, 33%, 5%, 0.3) 60%, transparent 100%);
}

.project-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

.project-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color 0.2s ease;
}

.project-back-link:hover {
  color: var(--primary);
}

.project-category-tag {
  display: inline-block;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid hsla(185, 30%, 38%, 0.4);
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.project-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.project-meta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.project-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.8rem;
  color: var(--muted-foreground);
}

.project-meta-item svg {
  color: var(--primary);
}

.project-content-section {
  padding: 4rem 1.5rem;
}

.project-content-inner {
  max-width: 52rem;
  margin: 0 auto;
}

.project-description p {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.95rem;
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.project-gallery-section {
  padding: 2rem 1.5rem 5rem;
}

.project-gallery-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .project-gallery-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.project-gallery-item {
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.project-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-gallery-empty {
  grid-column: span 3;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.85rem;
  color: var(--muted-foreground);
  text-align: center;
  padding: 3rem;
}

.project-footer-section {
  padding: 2rem 1.5rem 5rem;
}

.project-footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* =====================================================
   SERVICE PAGE
   ===================================================== */
.service-page-hero {
  position: relative;
  height: 55vh;
  min-height: 18rem;
  display: flex;
  align-items: flex-end;
}

.service-page-hero-bg {
  position: absolute;
  inset: 0;
}

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

.service-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: hsla(228, 33%, 5%, 0.55);
}

.service-page-hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--background), transparent);
}

.service-page-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

.service-page-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--foreground);
}

.service-page-overview {
  padding: 5rem 1.5rem;
}

.service-page-overview-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.service-page-overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 768px) {
  .service-page-overview-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.service-page-body p {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.95rem;
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.service-highlights-card {
  padding: 2rem;
}

.service-highlights-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.service-highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-highlights-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.875rem;
  color: var(--foreground);
}

.service-highlights-list svg {
  flex-shrink: 0;
}

.service-page-gallery {
  position: relative;
  padding: 4rem 1.5rem;
  overflow: hidden;
}

.service-page-gallery-glow {
  position: absolute;
  top: 0;
  right: -10%;
  width: 35rem;
  height: 35rem;
  background: radial-gradient(circle, hsla(10, 60%, 45%, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.service-page-gallery-inner {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
}

.service-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.service-gallery-item {
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-gallery-item:hover img {
  transform: scale(1.04);
}

.service-gallery-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.service-page-pricing {
  padding: 4rem 1.5rem 6rem;
}

.service-page-pricing-inner {
  max-width: 72rem;
  margin: 0 auto;
}


/* Podcast Inline Prompt */
.pricing-inline-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  padding: 1rem 2rem 3rem;
}

@media (max-width: 767px) {
  .pricing-inline-prompt {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }
}

.pricing-inline-prompt .pricing-section-header {
  margin-bottom: 0;
}

.pricing-inline-prompt .pricing-section-header .section-title {
  margin-bottom: 1.5rem;
}

.pricing-inline-prompt .pricing-section-description {
  margin-top: 2rem;
}

.pricing-inline-prompt p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
