/* ============================================
   Pop Golf Pro - Stylesheet
   ============================================ */

/* CSS Variables - Color Palette */
:root {
  --green-primary: #1F6F54;
  --green-dark:    #0F3D2E;
  --gold-primary:  #C9A24D;
  --gold-soft:     #D6B46A;
  --gold-muted:    #B9963D;
  --off-white:     #F3F2ED;
  --charcoal:      #1C1C1C;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--off-white);
  font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--green-dark);
}

h1 {
  font-size: 1.875rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--green-primary);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold-primary);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
header {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 10000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  min-height: 60px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
  height: auto;
  gap: 0;
}

.logo:hover {
  opacity: 0.9;
}

header .logo .logo-icon,
header .logo-icon,
header img.logo-icon {
  height: 90px !important;
  width: auto !important;
  max-width: 9999px !important;
  max-height: 9999px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  display: block !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
  flex-shrink: 0 !important;
  transform: none !important;
  scale: 1 !important;
}

/* Navbar Logo Sizing */
.navbar-logo {
  height: 90px !important;
  width: auto !important;
  display: block !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
  flex-shrink: 0 !important;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 700;
  color: #fff !important;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.375rem;
  z-index: 1001;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--charcoal);
  transition: all 0.3s ease;
}

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

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

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--charcoal);
  font-weight: 500;
  transition: color 0.3s ease, border-color 0.3s ease;
  font-size: 0.9375rem;
  position: relative;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
}

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

.nav-links a.active {
  color: var(--green-primary);
  border-bottom-color: var(--green-primary);
}

.social-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-right: 1.25rem;
}

.social-icons .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: color 0.3s ease, opacity 0.3s ease;
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

.social-icons .social-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.social-icons .social-icon:hover {
  color: var(--green-primary);
  opacity: 1;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  background-color: var(--gold-primary);
  color: var(--charcoal);
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.9375rem;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  background-color: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 162, 77, 0.4);
  color: var(--charcoal);
}

.btn-secondary {
  display: inline-block;
  padding: 0.875rem 2rem;
  background-color: transparent;
  color: var(--green-primary);
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid var(--green-primary);
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
}

.btn-secondary:hover {
  background-color: var(--green-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Hero Section */
.hero--video {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero__poster {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--green-dark);
  opacity: 0.6;
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
  padding: 3rem 1.5rem;
  max-width: 680px;
  margin: 0 auto;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.125rem;
  letter-spacing: -0.02em;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.hero-subheadline {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0.875rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 78%;
  margin-left: auto;
  margin-right: auto;
}

.hero-location {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  margin-bottom: 2rem;
  white-space: normal;
}

.hero-location__line {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.2;
  white-space: normal;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  align-items: stretch;
}

.btn-hero-primary {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 1rem 2rem;
  background-color: var(--gold-primary);
  color: var(--charcoal);
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(201, 162, 77, 0.25);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.btn-hero-primary:hover {
  background-color: var(--gold-soft);
  box-shadow: 0 4px 12px rgba(201, 162, 77, 0.4);
  transform: translateY(-1px);
  color: var(--charcoal);
}

.btn-hero-primary:active {
  background-color: var(--gold-soft);
  transform: translateY(1px);
  box-shadow: 0 1px 4px rgba(201, 162, 77, 0.2);
  color: var(--charcoal);
}

.btn-hero-primary:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}

.btn-hero-secondary {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 1rem 2rem;
  background-color: transparent;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
  box-sizing: border-box;
}

.btn-hero-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-hero-secondary:active {
  transform: translateY(1px);
  background-color: rgba(255, 255, 255, 0.08);
}

.btn-hero-secondary:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}

/* Prefers-reduced-motion: Hide video and show poster */
@media (prefers-reduced-motion: reduce) {
  .hero__video {
    display: none;
  }
  
  .hero__poster {
    display: block;
    z-index: 1;
  }
}

/* Value Props Section */
.value-props {
  padding: 2.5rem 0;
  background-color: #fff;
}

.value-props-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}

.value-prop-card {
  text-align: center;
  padding: 1.5rem 1.25rem;
  background-color: var(--off-white);
  border-radius: 4px;
}

.value-prop-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.value-prop-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--green-dark);
}

.value-prop-card p {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #666;
  margin-bottom: 0;
}

/* Why Pop Golf Pro Section */
.why-pop-golf-pro {
  padding: 4rem 0;
  background-color: #F6F4EE;
}

.why-pop-golf-pro .section-title h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--green-primary);
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.feature-card {
  background: #FEFDFB;
  padding: 2.25rem 2rem 2.25rem 2.25rem;
  border-radius: 14px;
  border: 1px solid rgba(31, 111, 84, 0.06);
  border-left: 2px solid var(--gold-primary);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03), 0 2px 6px rgba(0, 0, 0, 0.02);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1.5rem;
  color: var(--green-primary);
  background-color: rgba(31, 111, 84, 0.05);
  border: none;
  border-radius: 8px;
  flex-shrink: 0;
  opacity: 0.85;
}

.feature-card-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4375rem;
  font-weight: 600;
  margin-bottom: 0.875rem;
  color: var(--green-primary);
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.feature-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0;
  letter-spacing: 0.01em;
}

.feature-section-cta {
  text-align: center;
  margin-top: 0.5rem;
}

.feature-cta-link {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  color: var(--green-primary);
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
  letter-spacing: 0.01em;
}

/* Desktop-only hover for CTA */
@media (hover: hover) and (pointer: fine) {
  .feature-cta-link:hover {
    color: var(--green-dark);
    transform: translateX(3px);
  }
}

/* Visual Break Section */
.visual-break {
  min-height: 400px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-break::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.02) 2px, rgba(0, 0, 0, 0.02) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 0, 0, 0.02) 2px, rgba(0, 0, 0, 0.02) 4px);
  opacity: 0.3;
  pointer-events: none;
}

.visual-break-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.visual-break-overlay::before,
.visual-break-overlay::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.visual-break-overlay::before {
  top: 0;
}

.visual-break-overlay::after {
  bottom: 0;
}

.visual-break-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--off-white);
  line-height: 1.5;
  letter-spacing: 0.01em;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
  padding: 1.5rem 0;
  position: relative;
}

/* Visual Slideshow Section */
.slideshow-section {
  padding: 6rem 0;
  background-color: #F8F6F1;
  position: relative;
  border-top: 1px solid rgba(31, 111, 84, 0.08);
  border-bottom: 1px solid rgba(31, 111, 84, 0.08);
}

.slideshow {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(31, 111, 84, 0.08);
}

.slideshow-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.slide-active {
  opacity: 1;
  z-index: 1;
}

.slide-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.03) 2px, rgba(0, 0, 0, 0.03) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 0, 0, 0.03) 2px, rgba(0, 0, 0, 0.03) 4px);
  opacity: 0.15;
  pointer-events: none;
}

.slide-placeholder-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.slideshow-controls {
  display: none;
}

.slideshow-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: rgba(255, 255, 255, 0.9);
}

.slideshow-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 1);
}

.slideshow-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.slideshow-arrow-prev {
  left: 1.5rem;
}

.slideshow-arrow-next {
  right: 1.5rem;
}

.slideshow-arrow svg {
  width: 20px;
  height: 20px;
}

.slideshow-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.dot.dot-active {
  background: rgba(255, 255, 255, 0.9);
  width: 24px;
  border-radius: 4px;
}

/* Great for Every Occasion Section */
.occasions {
  padding: 5rem 0;
  background-color: #F8F6F1;
}

.occasions .section-title h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--green-primary);
}

.occasions .section-title .section-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--green-dark);
  letter-spacing: -0.01em;
  margin-top: 1rem;
  margin-bottom: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.occasions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}

.occasion-card {
  background: #FEFDFB;
  padding: 2.5rem 2rem;
  border-radius: 14px;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03), 0 2px 6px rgba(0, 0, 0, 0.02);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
}


.occasion-card-icon {
  display: none;
}

.occasion-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--green-primary);
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.occasion-card h3 .amp {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.occasion-card p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0;
  letter-spacing: 0.01em;
}

.occasions-location {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #666;
  text-align: center;
  margin-bottom: 2rem;
  opacity: 0.8;
}

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

.occasions-cta .btn-hero-primary {
  display: inline-block;
  width: auto;
  max-width: none;
}

@media (prefers-reduced-motion: no-preference) {
  @media (hover: hover) and (pointer: fine) {
    .occasion-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06), 0 6px 20px rgba(0, 0, 0, 0.04);
      border-color: var(--gold-soft);
    }
  }
}

/* Section Styles */
section {
  padding: 3rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.why-pop-golf-pro .section-title {
  margin-bottom: 3rem;
}


.section-title h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.section-title p {
  font-size: 1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Card Styles */
.card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 4px;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--gold-primary);
}

.card h3 {
  margin-bottom: 1rem;
}

/* Package Rates Section */
.package-rates-grid {
  gap: 2rem;
  margin-top: 2rem;
}

.package-card {
  background: #fff;
  padding: 2.25rem 2rem;
  border-radius: 12px;
  border: 1.5px solid rgba(31, 111, 84, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.package-card-primary {
  border-color: rgba(31, 111, 84, 0.25);
}

.package-card-secondary {
  border-color: rgba(201, 162, 77, 0.25);
}

.package-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--green-primary);
  margin-bottom: 1.25rem;
  margin-top: 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.package-card-secondary .package-name {
  color: var(--gold-primary);
}

.package-price {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 0.75rem 0 0.5rem;
  line-height: 1.1;
}

.package-card-secondary .package-price {
  color: var(--green-dark);
}

.package-duration {
  color: #666;
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
  margin-top: 0;
  line-height: 1.4;
}

.package-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(31, 111, 84, 0.1);
  margin: 0 0 1.25rem 0;
}

.package-card-secondary .package-divider {
  background-color: rgba(201, 162, 77, 0.15);
}

.package-features {
  list-style: none;
  margin: 0;
  padding: 0;
  flex-grow: 1;
}

.package-features li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #555;
}

.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green-primary);
  font-weight: 600;
  font-size: 1rem;
}

.package-card-secondary .package-features li::before {
  color: var(--gold-primary);
}

@media (min-width: 769px) {
  .package-rates-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .package-rates-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .package-card {
    padding: 1.875rem 1.5rem;
    border-width: 1px;
  }

  .package-name {
    font-size: 1.5rem;
  }

  .package-price {
    font-size: 2rem;
  }

  .package-price-custom {
    font-size: 1.5rem;
  }
}

/* Optional Upgrades Section */
.addons-section {
  padding: 2.5rem 2rem;
}

.addons-header {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.addons-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--green-primary);
  margin-bottom: 0.625rem;
  text-align: center;
  letter-spacing: -0.01em;
}

.addons-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
  text-align: center;
  max-width: 100%;
}

.addons-grid {
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.addon-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(31, 111, 84, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.addon-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.addon-title-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.addon-icon {
  flex-shrink: 0;
  color: var(--green-primary);
  opacity: 0.7;
  width: 20px;
  height: 20px;
}

.addon-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.4;
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-align: center;
}

.addon-price {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--green-primary);
  margin: 0;
  text-align: center;
}

@media (min-width: 769px) {
  .addons-section {
    padding: 3.5rem 2.5rem;
  }

  .addons-header {
    margin-bottom: 3rem;
  }

  .addons-title {
    font-size: 2rem;
  }

  .addons-subtitle {
    font-size: 1.0625rem;
  }

  .addons-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1200px;
  }

  .addon-item {
    padding: 2rem;
  }

  .addon-title {
    font-size: 1.25rem;
  }

  .addon-price {
    font-size: 1.125rem;
  }
}

/* Book Page Hero */
.book-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  padding: 2rem 0 2.5rem;
  text-align: center;
  position: relative;
}

.book-hero .hero-content {
  padding: 0 1.5rem;
  max-width: 680px;
  margin: 0 auto;
}

.book-hero .hero-headline {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  text-align: center;
}

.book-hero .hero-subheadline {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .book-hero {
    padding: 2.5rem 0 3rem;
  }

  .book-hero .hero-headline {
    font-size: 2.75rem;
    line-height: 1.18;
  }

  .book-hero .hero-subheadline {
    font-size: 1.125rem;
    max-width: 560px;
  }
}

@media (max-width: 768px) {
  .addons-section {
    padding: 1.5rem 1rem;
  }

  .addons-header {
    margin-bottom: 1.5rem;
  }

  .addons-title {
    font-size: 1.25rem;
  }

  .addons-grid {
    gap: 1.25rem;
  }

  .addon-title-row {
    gap: 0.5rem;
  }
}

/* CTA Section */
/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background-color: var(--off-white);
  text-align: center;
}

.cta-link {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--green-primary);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.3s ease, transform 0.2s ease;
  position: relative;
  padding-bottom: 0.25rem;
}

.cta-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--gold-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .cta-link:hover {
    color: var(--green-dark);
    transform: translateX(2px);
  }

  .cta-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--charcoal);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

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

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


/* Form Messages */
.form-message {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-message-success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.form-message-error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.form-message-warning {
  background-color: #fff3cd;
  border: 1px solid #ffeaa7;
  color: #856404;
}

/* Button Loading State */
.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.btn-loader {
  display: inline-block;
}

/* Footer */
footer {
  background-color: var(--green-dark);
  color: #fff;
  padding: 5rem 0 2.5rem;
}

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

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

.footer-logo {
  height: 300px;
  width: auto;
  margin-bottom: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.footer-location {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
}

.footer-location-line {
  display: block;
  margin-top: 0.75rem;
}

.service-label {
  display: block;
  font-size: 0.75em;
  opacity: 0.75;
  font-weight: 400;
  margin-bottom: 0.25em;
}

.footer-location .service-label {
  display: inline;
  font-size: 1em;
  opacity: 1;
  margin-bottom: 0;
  margin-right: 0.25em;
}

.hero-location .service-label {
  font-size: 1em;
  margin-bottom: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
}

.footer-nav,
.footer-contact {
  text-align: center;
}

.footer-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

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

.footer-link-emphasis {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.footer-link-emphasis:hover {
  color: var(--gold-primary);
}

.footer-contact p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-cta {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.footer-cta-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.footer-cta-button {
  display: inline-block;
  width: auto;
  max-width: none;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
}

.footer-privacy-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
  font-weight: 400;
}

.footer-privacy-link:hover {
  color: var(--gold-primary);
  text-decoration: underline;
}

/* Privacy Policy Page */
.privacy-page {
  padding: 5rem 0;
  background-color: var(--off-white);
  min-height: calc(100vh - 200px);
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.privacy-updated {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.privacy-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--green-primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.privacy-content p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.25rem;
}

.privacy-content ul {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.privacy-content li {
  margin-bottom: 0.5rem;
}

.privacy-content a {
  color: var(--green-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-content a:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Desktop Styles */
@media (min-width: 769px) {
  .header-content {
    min-height: 110px;
  }

  .logo {
    gap: 0;
    align-items: center;
  }

  header .logo .logo-icon,
  header .logo-icon,
  header img.logo-icon {
    height: 100px !important;
    width: auto !important;
    max-width: 9999px !important;
    max-height: 9999px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    flex: 0 0 auto !important;
    transform: none !important;
    scale: 1 !important;
  }

  .logo-text {
    font-size: 24px;
    font-weight: 700;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero--video {
    min-height: 76vh;
  }

  .hero__content {
    padding: 4rem 1.5rem;
  }

  .hero-headline {
    font-size: 3rem;
    margin-bottom: 1.25rem;
  }

  .hero-subheadline {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }

  .hero-cta {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    max-width: 520px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: auto;
    padding: 1rem 2.25rem;
    flex: 0 1 auto;
  }

  .value-props {
    padding: 3.5rem 0;
  }

  .value-props-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .value-prop-card {
    padding: 2rem 1.5rem;
  }


  .why-pop-golf-pro {
    padding: 5.5rem 0;
  }

  .why-pop-golf-pro .section-title {
    margin-bottom: 3.5rem;
  }

  .feature-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3.5rem;
  }

  .feature-card {
    padding: 2.75rem 2.25rem 2.75rem 2.5rem;
  }

  /* Desktop-only hover effects */
  @media (hover: hover) and (pointer: fine) {
    .feature-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06), 0 6px 20px rgba(0, 0, 0, 0.04);
    }
  }

  .visual-break {
    min-height: 500px;
  }

  .visual-break-text {
    font-size: 1.75rem;
  }

  .slideshow-section {
    padding: 6rem 0;
  }

  .slideshow-controls {
    display: block;
  }

  .occasions {
    padding: 7rem 0;
  }

  .occasions .section-title {
    margin-bottom: 3.5rem;
  }

  .occasions .section-title .section-subtitle {
    font-size: 1.75rem;
  }

  .occasions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
  }

  .occasion-card {
    padding: 3rem 2.5rem;
  }

  .occasion-card h3 {
    font-size: 1.875rem;
  }

  footer {
    padding: 6rem 0 3rem;
  }

  .footer-content {
    grid-template-columns: 2fr 1.2fr 1.5fr;
    gap: 5rem;
    text-align: left;
    margin-bottom: 3.5rem;
  }

  .footer-brand {
    text-align: left;
  }

  .footer-logo {
    margin-left: 0;
    margin-right: 0;
    height: 270px;
    margin-bottom: 0;
    margin-top: -0.5rem;
  }

  .footer-location {
    margin-top: 0;
  }

  .footer-nav,
  .footer-contact {
    text-align: left;
  }

  .footer-label {
    margin-bottom: 1.5rem;
  }

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

  .footer-contact p {
    margin-bottom: 0.875rem;
  }

  .footer-cta-text {
    font-size: 1.5rem;
  }

  .occasion-card p {
    font-size: 1.0625rem;
  }

  .cta-section {
    padding: 6rem 0;
  }

  .cta-link {
    font-size: 1.0625rem;
  }

  section {
    padding: 4rem 0;
  }

  .section-title h2 {
    font-size: 2rem;
  }

}

/* Mobile Responsive */
@media (max-width: 768px) {
  header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .header-content {
    padding: 0.75rem 1rem;
    min-height: 68px;
    align-items: center;
  }

  .logo {
    gap: 0;
    align-items: center;
  }

  .logo-text {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    padding: 0;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
  }

  .menu-toggle span {
    width: 28px;
    height: 3px;
  }

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

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

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }

  .main-nav .nav-links {
    order: 1;
  }

  .main-nav .btn-primary {
    order: 2;
  }

  .main-nav .social-icons {
    order: 3;
  }

  .main-nav.active {
    max-height: 500px;
    opacity: 1;
    padding: 1rem 0;
  }

  .main-nav .social-icons {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 1.5rem 1.5rem 1rem;
    margin: 0;
    gap: 1.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 0.75rem;
    order: 3;
  }

  .main-nav .social-icons .social-icon {
    width: 32px;
    height: 32px;
    color: var(--charcoal);
    opacity: 0.7;
    padding: 0.5rem;
    margin: -0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav .social-icons .social-icon svg {
    width: 100%;
    height: 100%;
  }

  .main-nav .social-icons .social-icon:active {
    opacity: 1;
    color: var(--green-primary);
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 0.9375rem 1.5rem;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    color: var(--charcoal);
  }

  .nav-links a.active {
    color: var(--green-primary);
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .main-nav .btn-primary {
    width: calc(100% - 3rem);
    margin: 0.75rem 1.5rem 0;
    padding: 0.875rem 1.5rem;
    text-align: center;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .why-pop-golf-pro {
    padding: 3.5rem 0;
  }

  .why-pop-golf-pro .section-title {
    margin-bottom: 2.5rem;
  }

  .feature-cards-grid {
    gap: 1.75rem;
    margin-bottom: 2.5rem;
  }

  .feature-card {
    padding: 2rem 1.75rem 2rem 2rem;
  }

  .visual-break {
    min-height: 300px;
  }

  .visual-break-text {
    font-size: 1.25rem;
  }

  .slideshow-section {
    padding: 4rem 0;
  }

  .slideshow {
    border-radius: 12px;
  }

  .slideshow-controls {
    display: none;
  }

  .occasions {
    padding: 4rem 0;
  }

  .occasions .section-title {
    margin-bottom: 2.5rem;
  }

  .occasions .section-title .section-subtitle {
    font-size: 1.25rem;
  }

  .occasions-grid {
    gap: 1.75rem;
    margin-bottom: 2rem;
  }

  .occasion-card {
    padding: 2.25rem 1.75rem;
  }

  .occasion-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.875rem;
  }

  .occasion-card p {
    font-size: 0.9375rem;
  }

  .occasions-location {
    font-size: 0.8125rem;
    margin-bottom: 1.5rem;
  }

  .cta-section {
    padding: 4rem 0;
  }

  .hero__video {
    object-position: 30% center;
  }

  footer {
    padding: 4rem 0 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .footer-logo {
    height: 240px;
    margin-bottom: 0;
  }

  .footer-location {
    margin-top: 0;
  }

  .footer-label {
    margin-bottom: 1rem;
  }

  .footer-cta {
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
  }

  .footer-cta-text {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .footer-bottom {
    padding-top: 1.5rem;
  }

  .privacy-page {
    padding: 3rem 0;
  }

  .privacy-content h1 {
    font-size: 2rem;
  }

  .privacy-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
  }

  .privacy-content p,
  .privacy-content ul {
    font-size: 0.9375rem;
  }

}

/* === FORCE HEADER LOGO SIZE (override anything above) === */
header .brand-icon {
  height: 44px !important;
  width: auto !important;
  max-height: none !important;
  max-width: none !important;
  display: block !important;
}

/* Make sure the logo container doesn't shrink it */
header .brand,
header .brand a,
header .brand-lockup,
header .logo {
  display: flex !important;
  align-items: center !important;
}

@media (max-width: 768px) {
  header .brand,
  header .brand a,
  header .brand-lockup,
  header .logo {
    gap: 0 !important;
    align-items: center !important;
  }
}

@media (min-width: 769px) {
  header .brand,
  header .brand a,
  header .brand-lockup,
  header .logo {
    gap: 0 !important;
  }
}

header .brand-icon {
  flex: 0 0 auto !important;
}

/* Mobile logo size override */
@media (max-width: 768px) {
  header .brand-icon {
    height: 70px !important;
  }
  
  .navbar-logo {
    height: 70px !important;
    width: auto !important;
  }
}

/* Desktop bump */
@media (min-width: 769px) {
  header .brand-icon {
    height: 100px !important;
  }
  
  .navbar-logo {
    height: 100px !important;
    width: auto !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
}

/* ============================================
   Services Page Scoped Styles
   ============================================ */

.services-page .services-hero {
  padding: 5rem 0;
  background-color: var(--off-white);
  text-align: center;
}

.services-page .services-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.services-page .services-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.services-page .services-hero-subheadline {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-page .services-hero-location {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: #777;
  margin-bottom: 2.5rem;
}

.services-page .services-hero-location .amp {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.services-page .services-hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
  align-items: stretch;
}

.services-page .services-hero-cta .btn-hero-secondary {
  background-color: transparent;
  color: var(--green-primary);
  border: 2px solid var(--green-primary);
}

.services-page .services-hero-cta .btn-hero-secondary:hover {
  background-color: var(--green-primary);
  color: #fff;
  border-color: var(--green-primary);
}

/* What's Included Section */
.services-page .whats-included-section {
  padding: 4rem 0;
  background-color: #fff;
}

.services-page .whats-included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.services-page .whats-included-text {
  text-align: center;
}

.services-page .whats-included-text p {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

.services-page .included-items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.services-page .included-items li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.services-page .included-items li:last-child {
  margin-bottom: 0;
}

.services-page .included-items li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--green-primary);
  margin-top: 0.125rem;
}

.services-page .included-items li span {
  flex: 1;
}

/* Packages Section Refinements */
.services-page .packages-section {
  padding: 4rem 0;
  background-color: var(--off-white);
}

.services-page .package-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background-color: var(--gold-primary);
  color: var(--charcoal);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.services-page .package-card {
  position: relative;
}

.services-page .package-price {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(31, 111, 84, 0.1);
}

.services-page .package-amount {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.services-page .package-duration {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: #666;
  font-weight: 400;
}

.services-page .package-description {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(31, 111, 84, 0.1);
  line-height: 1.6;
}

/* How It Works Section */
.services-page .how-it-works-section {
  padding: 4rem 0;
  background-color: #fff;
}

.services-page .how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.services-page .how-it-works-card {
  background: #FEFDFB;
  padding: 2.25rem 2rem;
  border-radius: 14px;
  border: 1px solid rgba(31, 111, 84, 0.06);
  border-left: 2px solid var(--gold-primary);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03), 0 2px 6px rgba(0, 0, 0, 0.02);
}

.services-page .how-it-works-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.services-page .how-it-works-card p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0;
}

/* GSPro Section Redesign */
.services-page .gspro-section {
  padding: 4rem 0;
  background-color: var(--off-white);
}

.services-page .gspro-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.services-page .gspro-text {
  text-align: center;
}

.services-page .gspro-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--green-primary);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.services-page .gspro-text p {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

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

.services-page .gspro-feature-card {
  background: #FEFDFB;
  padding: 2rem 1.75rem;
  border-radius: 14px;
  border: 1px solid rgba(31, 111, 84, 0.06);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03), 0 2px 6px rgba(0, 0, 0, 0.02);
}

.services-page .gspro-feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.services-page .gspro-feature-card p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0;
}

/* Final CTA Band */
.services-page .services-cta-band {
  padding: 4rem 0;
  background-color: var(--green-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.services-page .services-cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.services-page .services-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
  align-items: stretch;
}

.services-page .services-cta-buttons .btn-hero-secondary {
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.services-page .services-cta-buttons .btn-hero-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Responsive Styles for Services Page */
@media (min-width: 900px) {
  .services-page .services-hero-title {
    font-size: 3rem;
  }

  .services-page .services-hero-subheadline {
    font-size: 1.25rem;
  }

  .services-page .services-hero-cta {
    flex-direction: row;
    justify-content: center;
    max-width: 500px;
  }

  .services-page .whats-included-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .services-page .whats-included-text {
    text-align: left;
  }

  .services-page .gspro-content {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
  }

  .services-page .gspro-text {
    text-align: left;
  }

  .services-page .how-it-works-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .services-page .services-cta-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
}

@media (min-width: 1200px) {
  .services-page .services-hero-title {
    font-size: 3.5rem;
  }
}

/* ============================================
   Services Page Styles
   ============================================ */

/* Services Hero Section */
.services-hero {
  padding: 5rem 0;
  background-color: var(--off-white);
  text-align: center;
}

.services-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.services-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.services-hero-subheadline {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  color: #555;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-hero-subheadline .amp {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.services-hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
  align-items: stretch;
}

.services-hero-cta .btn-hero-secondary {
  background-color: transparent;
  color: var(--green-primary);
  border: 2px solid var(--green-primary);
}

.services-hero-cta .btn-hero-secondary:hover {
  background-color: var(--green-primary);
  color: #fff;
  border-color: var(--green-primary);
}

/* Services Section */
.services-section {
  padding: 4rem 0;
  background-color: #fff;
}

.services-section:nth-child(even) {
  background-color: var(--off-white);
}

.occasions-section {
  padding: 4rem 0;
  background-color: var(--off-white);
}

/* How It Works Grid */
.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.how-it-works-card {
  background: #FEFDFB;
  padding: 2.25rem 2rem;
  border-radius: 14px;
  border: 1px solid rgba(31, 111, 84, 0.06);
  border-left: 2px solid var(--gold-primary);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03), 0 2px 6px rgba(0, 0, 0, 0.02);
}

.how-it-works-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.how-it-works-card p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0;
}

/* Packages Grid */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.package-card {
  background: #FEFDFB;
  padding: 2.5rem 2rem;
  border-radius: 14px;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03), 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card-primary {
  border-color: var(--green-primary);
}

.package-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--green-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.package-price {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(31, 111, 84, 0.1);
}

.package-amount {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.package-duration {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #666;
  font-weight: 400;
}

.package-description {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(31, 111, 84, 0.1);
}

.package-features {
  list-style: none;
  margin-bottom: 2rem;
}

.package-features li {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-primary);
  font-weight: 600;
}

.package-addons {
  margin-bottom: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(31, 111, 84, 0.1);
}

.addons-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--green-primary);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.addons-list {
  list-style: none;
  margin: 0;
}

.addons-list li {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 0.5rem;
}

.package-btn {
  width: 100%;
  text-align: center;
  display: block;
}

.package-fine-print {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #888;
  text-align: center;
  margin-top: 2rem;
  font-style: italic;
}

/* GSPro Section */
.gspro-section {
  background-color: var(--off-white);
}

.gspro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.gspro-card {
  background: #FEFDFB;
  padding: 2rem 1.75rem;
  border-radius: 14px;
  border: 1px solid rgba(31, 111, 84, 0.06);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03), 0 2px 6px rgba(0, 0, 0, 0.02);
}

.gspro-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.gspro-card p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}

.cta-buttons .btn-hero-primary {
  max-width: 300px;
}

/* Responsive Styles for Services Page */
@media (min-width: 900px) {
  .services-hero-title {
    font-size: 3rem;
  }

  .services-hero-subheadline {
    font-size: 1.25rem;
  }

  .services-hero-cta {
    flex-direction: row;
    justify-content: center;
    max-width: 500px;
  }

  .services-hero-title {
    font-size: 3rem;
  }

  .services-hero-subheadline {
    font-size: 1.25rem;
  }

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

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

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

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .services-hero-title {
    font-size: 3.5rem;
  }
}

/* ============================================
   ABOUT PAGE POLISH
   ============================================ */

/* About Hero Section */
.about-page .about-hero {
  background-color: var(--off-white);
  padding: clamp(3.5rem, 6vw, 5rem) 0 clamp(3rem, 5vw, 4.5rem);
}

.about-page .about-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.about-page .about-hero-content {
  text-align: center;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-page .about-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1.25rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.about-page .about-hero-mission {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.0625rem, 2.5vw, 1.125rem);
  line-height: 1.6;
  color: #555;
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-page .about-hero-image {
  width: 100%;
}

.about-page .about-hero-placeholder {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(31, 111, 84, 0.12);
  position: relative;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
}

.about-page .about-hero-placeholder svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .about-page .about-hero {
    padding: clamp(4rem, 7vw, 5.5rem) 0 clamp(3.5rem, 6vw, 5rem);
  }

  .about-page .about-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .about-page .about-hero-content {
    text-align: left;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .about-page .about-hero-mission {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Who We Are Section */
.about-page .about-who-we-are {
  background-color: #fff;
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.about-page .about-who-we-are-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.about-page .about-who-we-are-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.about-page .about-who-we-are-content p {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.25rem;
}

.about-page .about-who-we-are-content p:last-of-type {
  margin-bottom: 0;
}

.about-page .about-principles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.about-page .about-principle-card {
  background: var(--off-white);
  padding: 1.75rem 2rem;
  border-radius: 12px;
  border: 1.5px solid rgba(31, 111, 84, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  min-height: 4.5rem;
  display: flex;
  align-items: center;
}

.about-page .about-principle-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #9A7A2E;
  margin: 0;
  line-height: 1.4;
  text-transform: none;
}

@media (min-width: 768px) {
  .about-page .about-who-we-are-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .about-page .about-principles {
    gap: 1.25rem;
  }

  .about-page .about-principle-card {
    padding: 2rem 2.25rem;
    min-height: 5rem;
  }
}

/* Why Choose Us Section */
.about-page .about-why-choose {
  background-color: var(--off-white);
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.about-page .about-why-choose .section-title {
  margin-bottom: 2.5rem;
}

.about-page .about-why-choose .section-title h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--green-dark);
  font-size: clamp(2.25rem, 5vw, 3rem);
  line-height: 1.25;
}

.about-page .about-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.about-page .about-benefit-card {
  background: #fff;
  padding: 2.5rem 2.25rem;
  border-radius: 12px;
  border: 1.5px solid rgba(31, 111, 84, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.about-page .about-benefit-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.about-page .about-benefit-card p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #555;
  margin: 0;
  max-width: 100%;
}

@media (min-width: 768px) {
  .about-page .about-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .about-page .about-benefit-card {
    padding: 2.75rem 2.5rem;
  }

  .about-page .about-benefit-card p {
    max-width: 100%;
  }
}


/* Our Promise Section */
.about-page .about-promise {
  background-color: #fff;
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.about-page .about-promise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.about-page .about-promise-media {
  width: 100%;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .about-page .about-promise-media {
    padding-left: 1.5rem;
  }
}

.about-page .about-promise-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1.75rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.about-page .about-promise-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-page .about-promise-list li {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #555;
  padding-left: 2rem;
  margin-bottom: 1.125rem;
  position: relative;
}

.about-page .about-promise-list li:last-child {
  margin-bottom: 0;
}

.about-page .about-promise-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.125rem;
  color: var(--green-primary);
  font-weight: 600;
  font-size: 1.125rem;
  width: 1.5rem;
  text-align: center;
}

.about-page .about-promise-media {
  width: 100%;
}

@media (min-width: 768px) {
  .about-page .about-promise-media {
    padding-left: 1.5rem;
  }
}

.about-page .about-promise-placeholder {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(31, 111, 84, 0.12);
  position: relative;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
}

.about-page .about-promise-placeholder svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .about-page .about-promise-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .about-page .about-promise-content {
    padding-top: 0;
  }

  .about-page .about-promise-media {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 1.5rem;
  }
}

/* Final CTA Section */
.about-page .about-cta {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  text-align: center;
}

.about-page .about-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.about-page .about-cta .btn-primary {
  background-color: var(--gold-primary);
  color: var(--charcoal);
}

.about-page .about-cta .btn-primary:hover {
  background-color: var(--gold-soft);
  transform: none;
  box-shadow: 0 4px 12px rgba(201, 162, 77, 0.4);
}

.about-page .about-cta .btn-secondary {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.about-page .about-cta .btn-secondary:hover {
  background-color: var(--gold-primary);
  color: var(--charcoal);
  transform: none;
}

@media (min-width: 768px) {
  .about-page .about-cta-buttons {
    flex-direction: row;
    gap: 1.5rem;
  }
}

/* Override global button hover transforms on about page */
.about-page .btn-primary:hover,
.about-page .btn-secondary:hover {
  transform: none !important;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Info Section - Prominent at top */
.contact-page-info {
  padding: 3rem 0;
  background-color: #fff;
  text-align: center;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info-item h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green-primary);
  margin: 0;
  line-height: 1.4;
}

.contact-info-item h2 a {
  color: var(--green-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-item h2 a:hover {
  color: var(--gold-primary);
}

/* Main 2-Column Section */
.contact-page-main {
  padding: 3rem 0;
  background-color: var(--off-white);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

/* Left Column */
.contact-page-left {
  text-align: center;
}

.contact-page-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.contact-page-left p {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 2rem;
}

/* Image Placeholder */
.contact-image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: var(--off-white);
  border: 1px solid rgba(31, 111, 84, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.contact-image-placeholder svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Social Icons under Image */
.contact-page-social-icons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
}

.contact-page-social-icons .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(31, 111, 84, 0.7);
  transition: color 0.3s ease, opacity 0.3s ease;
  width: 32px;
  height: 32px;
}

.contact-page-social-icons .social-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-page-social-icons .social-icon:hover {
  color: var(--gold-primary);
  opacity: 1;
}

/* Right Column - Form */
.contact-page-right {
  width: 100%;
}

.contact-form-card {
  background: var(--off-white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(31, 111, 84, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.contact-form-card .form-group {
  margin-bottom: 1.75rem;
}

.contact-form-card .form-group:last-of-type {
  margin-bottom: 0;
}

.contact-form-card label {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.625rem;
  display: block;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s ease;
  background: #fff;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  outline: none;
  border-color: var(--green-primary);
}

.contact-form-card textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form-submit {
  width: 100%;
  padding: 1rem 2rem;
  margin-top: 0.5rem;
  font-size: 1rem;
}

/* Book Your Event CTA Section */
.contact-page-cta {
  padding: 3rem 0;
  background-color: var(--green-dark);
  text-align: center;
  color: #fff;
}

.contact-page-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.contact-page-cta p {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.75rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-page-cta .btn-primary {
  background-color: var(--gold-primary);
  color: var(--charcoal);
  padding: 1rem 2.5rem;
  font-size: 1.0625rem;
}

.contact-page-cta .btn-primary:hover {
  background-color: var(--gold-soft);
  color: var(--charcoal);
}


/* Desktop Styles for Contact Page */
@media (min-width: 769px) {
  .contact-page-info {
    padding: 4rem 0;
  }

  .contact-info-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }

  .contact-info-item h2 {
    font-size: 1.75rem;
  }

  .contact-page-main {
    padding: 4rem 0;
  }

  .contact-page-grid {
    grid-template-columns: 45% 55%;
    gap: 4rem;
    align-items: start;
  }

  .contact-page-left h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }

  .contact-page-left p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }

  .contact-form-card {
    padding: 3rem 2.5rem;
  }

  .contact-form-card .form-group {
    margin-bottom: 2rem;
  }

  .contact-form-card input,
  .contact-form-card textarea {
    padding: 1.125rem;
  }

  .contact-form-card textarea {
    min-height: 160px;
  }

  .contact-page-social-icons {
    gap: 2rem;
  }

  .contact-page-social-icons .social-icon {
    width: 40px;
    height: 40px;
  }

  .contact-page-cta {
    padding: 3.5rem 0;
  }

  .contact-page-cta h2 {
    font-size: 2.5rem;
  }

  .contact-page-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }

}

/* Mobile Styles for Contact Page */
@media (max-width: 768px) {
  .contact-page-info {
    padding: 2.5rem 0;
  }

  .contact-info-item h2 {
    font-size: 1.25rem;
  }

  .contact-page-main {
    padding: 2.5rem 0;
  }

  .contact-page-grid {
    gap: 2rem;
  }

  .contact-page-left h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .contact-page-left p {
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }

  .contact-form-card {
    padding: 2rem 1.5rem;
  }

  .contact-form-card .form-group {
    margin-bottom: 1.5rem;
  }

  .contact-page-cta {
    padding: 2.5rem 0;
  }

  .contact-page-cta h2 {
    font-size: 1.75rem;
  }

  .contact-page-cta p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

}

/* ============================================
   FAQ PAGE STYLES
   ============================================ */

.faq-section {
  padding: 4rem 0;
  background-color: var(--off-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-image {
  width: 100%;
}

.faq-image-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(31, 111, 84, 0.12);
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
}

.faq-image-placeholder svg {
  display: block;
  width: 100%;
  height: 100%;
}

.faq-content {
  width: 100%;
}

.faq-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}

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

.faq-item {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  transition: all 0.3s ease;
}

.faq-item-active {
  box-shadow: none;
}

.faq-question {
  width: 100%;
  padding: 1.75rem 2rem;
  background: #fff;
  border: 1.5px solid rgba(31, 111, 84, 0.12);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--green-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.5rem;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--green-primary);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
  line-height: 1;
  display: inline-block;
}

.faq-item-active .faq-question::after {
  content: '−';
  color: var(--green-primary);
}

.faq-item-active .faq-question {
  background: #fff;
  color: var(--green-primary);
  font-weight: 600;
  border-color: rgba(31, 111, 84, 0.2);
  border-bottom-color: rgba(31, 111, 84, 0.08);
  border-radius: 12px 12px 0 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.faq-question:hover {
  background: #fff;
  border-color: rgba(31, 111, 84, 0.2);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.faq-item-active .faq-question:hover {
  border-color: rgba(31, 111, 84, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question:focus {
  outline: 2px solid var(--green-primary);
  outline-offset: 2px;
}

.faq-question:focus:not(:focus-visible) {
  outline: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.25s ease 0.05s;
  padding: 0 2rem;
  background: #fff;
  border-radius: 0 0 12px 12px;
  margin-top: 0;
}

.faq-item-active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.75rem;
  margin-top: -1px;
  padding-top: 1.5rem;
  opacity: 1;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.25s ease 0.05s, margin-top 0.3s ease;
  border: 1.5px solid rgba(31, 111, 84, 0.2);
  border-top: 1px solid rgba(31, 111, 84, 0.08);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.faq-answer p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0;
  padding: 0;
}

.faq-answer a {
  color: var(--green-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.faq-answer a:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

/* Desktop Styles for FAQ Page */
@media (min-width: 769px) {
  .faq-section {
    padding: 5rem 0;
  }

  .faq-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .faq-title {
    font-size: 3rem;
    margin-bottom: 3rem;
  }

  .faq-list {
    gap: 1.5rem;
  }

  .faq-question {
    font-size: 1.0625rem;
    padding: 2rem 2.25rem;
    min-height: 5rem;
  }

  .faq-answer {
    padding: 0 2.25rem;
  }

  .faq-item-active .faq-answer {
    padding: 0 2.25rem 2rem;
    padding-top: 1.75rem;
  }

  .faq-answer p {
    font-size: 1rem;
  }
}

/* Mobile Styles for FAQ Page */
@media (max-width: 768px) {
  .faq-section {
    padding: 3rem 0;
  }

  .faq-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .faq-list {
    gap: 1rem;
  }

  .faq-question {
    font-size: 1.0625rem;
    padding: 1.5rem 1.75rem;
    min-height: 4rem;
  }

  .faq-answer {
    padding: 0 1.75rem;
  }

  .faq-item-active .faq-answer {
    padding: 0 1.75rem 1.5rem;
    padding-top: 1.25rem;
  }

  .faq-item-active .faq-answer {
    padding: 1rem 1.25rem;
  }
}

/* ============================================
   QR Landing Page Styles
   ============================================ */

.qr-page {
  background-color: var(--off-white);
  padding-bottom: env(safe-area-inset-bottom);
}

/* QR Hero Section - Reduced height for mobile */
.qr-hero {
  position: relative;
  min-height: 50vh;
  max-height: 60vh;
  display: flex;
  align-items: center;
  padding: 2.5rem 0 0.75rem;
  overflow: hidden;
}

.qr-hero__gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  z-index: 1;
}

.qr-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 2;
  pointer-events: none;
}

.qr-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  width: 100%;
}

.qr-hero__brand {
  margin-bottom: 0;
}

.qr-hero__logo {
  height: 180px;
  width: auto;
  max-width: 85%;
  margin-bottom: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

/* QR Actions Section - Grouped CTAs */
.qr-actions-section {
  padding: 1rem 0 1rem;
  background-color: var(--off-white);
  border-top: 1px solid rgba(31, 111, 84, 0.08);
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.03);
}

.qr-cta-stack {
  max-width: 380px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.qr-cta-primary {
  display: block;
  width: 100%;
  padding: 1.125rem 1.75rem;
  min-height: 56px;
  background: linear-gradient(135deg, #D4B66A 0%, #C9A85D 50%, #B9963D 100%);
  color: #1E1E1E;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 3px 10px rgba(201, 168, 93, 0.25), 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  text-decoration: none;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.qr-cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.qr-cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(201, 168, 93, 0.35), 0 2px 6px rgba(0, 0, 0, 0.12);
  filter: brightness(1.05);
}

.qr-cta-primary:active {
  transform: translateY(1px);
  box-shadow: 0 2px 6px rgba(201, 168, 93, 0.25), 0 1px 2px rgba(0, 0, 0, 0.1);
  filter: brightness(0.98);
}

.qr-cta-primary__label {
  display: block;
  font-size: 1.1875rem;
  font-weight: 600;
  margin-bottom: 0.1875rem;
  font-family: 'Inter', sans-serif;
  color: #1E1E1E;
  line-height: 1.3;
}

.qr-cta-primary__subtext {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: rgba(30, 30, 30, 0.75);
  line-height: 1.3;
}

.qr-btn-secondary {
  display: block;
  width: 100%;
  padding: 0.875rem 1.75rem;
  min-height: 44px;
  background-color: #FEFDFB;
  color: var(--green-primary);
  font-weight: 500;
  border-radius: 12px;
  border: 1px solid rgba(31, 111, 84, 0.2);
  text-align: center;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-btn-secondary:hover {
  background-color: rgba(31, 111, 84, 0.05);
  border-color: rgba(31, 111, 84, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  color: var(--green-primary);
}

.qr-btn-secondary:active {
  background-color: rgba(31, 111, 84, 0.08);
  transform: translateY(1px);
  border-color: rgba(31, 111, 84, 0.3);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  color: var(--green-primary);
}

.qr-quick-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0;
}

.qr-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  min-height: 44px;
  background-color: #FEFDFB;
  color: var(--green-primary);
  font-weight: 500;
  border-radius: 12px;
  border: 1px solid rgba(31, 111, 84, 0.2);
  text-decoration: none;
  transition: background-color 0.15s ease, transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.qr-contact-btn svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.qr-contact-btn:hover {
  background-color: rgba(31, 111, 84, 0.05);
  border-color: rgba(31, 111, 84, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  color: var(--green-primary);
}

.qr-contact-btn:active {
  background-color: rgba(31, 111, 84, 0.08);
  transform: translateY(1px);
  border-color: rgba(31, 111, 84, 0.3);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  color: var(--green-primary);
}

/* QR Connect Section */
.qr-connect-section {
  padding: 1rem 0 1rem;
}

.qr-connect-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 0.875rem;
  letter-spacing: 0.03em;
}

.qr-social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 0;
}

.qr-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 50%;
  background-color: transparent;
  color: #1F4D3A;
  border: none;
  transition: background-color 0.15s ease;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  box-shadow: none;
}

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

.qr-social-icon:hover,
.qr-social-icon:active {
  background-color: rgba(31, 77, 58, 0.08);
  color: #1F4D3A;
  transform: none;
  box-shadow: none;
}

/* QR Hours Section - Clean & Professional */
.qr-hours-section {
  padding: 1rem 0 2.5rem;
  padding-bottom: calc(2.5rem + env(safe-area-inset-bottom));
}

.qr-hours-content {
  max-width: 380px;
  margin: 0 auto;
  text-align: center;
}

.qr-hours-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.qr-hours-schedule {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 0.375rem;
  font-weight: 500;
  line-height: 1.4;
}

.qr-hours-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  color: #999;
  margin-bottom: 0;
  line-height: 1.5;
  font-weight: 400;
}

/* QR Footer - Minimal */
.qr-footer {
  background-color: var(--off-white);
  border-top: 1px solid rgba(31, 111, 84, 0.08);
  padding: 1.5rem 0;
  padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
  margin-top: auto;
}

.qr-footer-content {
  text-align: center;
}

.qr-footer-content p {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: #666;
  margin-bottom: 0;
}

/* Desktop adjustments for QR page */
@media (min-width: 768px) {
  .qr-hero {
    min-height: 60vh;
    max-height: 70vh;
    padding: 3rem 0 1rem;
  }

  .qr-hero__logo {
    height: 220px;
    max-width: 80%;
  }

  .qr-actions-section {
    padding: 1.25rem 0 1.25rem;
  }

  .qr-cta-stack {
    max-width: 420px;
    gap: 0.875rem;
  }

  .qr-cta-primary {
    padding: 1.25rem 2rem;
    min-height: 64px;
  }

  .qr-cta-primary__label {
    font-size: 1.375rem;
  }

  .qr-cta-primary__subtext {
    font-size: 1rem;
  }

  .qr-quick-contact {
    gap: 0.875rem;
  }

  .qr-contact-btn {
    padding: 0.9375rem 1.125rem;
    font-size: 0.9375rem;
  }

  .qr-connect-section {
    padding: 1.25rem 0 1.25rem;
  }

  .qr-hours-section {
    padding: 1.25rem 0 3rem;
    padding-bottom: calc(3rem + env(safe-area-inset-bottom));
  }

  .qr-hours-content {
    max-width: 420px;
  }

  .qr-hours-label {
    font-size: 0.875rem;
    margin-bottom: 0.625rem;
  }

  .qr-hours-schedule {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
  }

  .qr-hours-note {
    font-size: 0.75rem;
  }

  .qr-social-icons {
    gap: 1.75rem;
  }

  .qr-social-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
  }

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