/* ===================================
   TATE & IVORY - Main Stylesheet
   =================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&family=Cormorant+Garamond:wght@400;600;700&family=Allura&display=swap');

/* ===== CSS Variables ===== */
:root {
  /* Brand Colors */
  --ivory: #F8F5F0;
  --charcoal: #3F3B37;
  --sage: #79bda6;
  --pink: #F673C5;
  --blue: #1683CE;
  --gold: #FFDD62;
  --lavender: #ECA8FD;
  --peach: #FFB578;
  --forest: #133B0F;
  --plum: #4B0E4E;
  --rust: #AF5E26;
  --purple-deep: #451268;
  --navy: #202F8C;
  --sky: #86ACD8;
  --royal: #1F39A8;
  --orchid: #CB7FFF;
  --magenta: #87208C;
  --blush: #F4BADF;
  --berry: #8F1C4C;

  /* Functional Colors */
  --bg-primary: var(--ivory);
  --text-primary: var(--charcoal);
  --accent-primary: var(--sage);
  --accent-secondary: var(--blush);
  --accent-gold: var(--gold);

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
  --font-logo: 'Cormorant Garamond', serif;
  --font-script: 'Allura', cursive;

  /* Spacing */
  --section-padding: 80px 0;
  --container-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.script-text {
  font-family: var(--font-script);
  font-size: 1.5rem;
}

.section-subtitle {
  font-family: var(--font-script);
  font-size: 3.8rem;
  color: var(--accent-primary);
  margin-bottom: 0.5rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-description {
  max-width: 650px;
  margin: 0 auto 2.5rem;
  color: #6b6560;
  text-align: center;
}

/* ===== Layout ===== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: var(--section-padding);
}

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

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--accent-primary);
  color: #fff;
  border-color: var(--accent-primary);
}

.btn-primary:hover {
  background-color: #5fa88e;
  border-color: #5fa88e;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(121, 189, 166, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--text-primary);
}

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

.btn-gold {
  background-color: #fff;
  color: #ff9579;
  border-color: #fff;
}

.btn-gold:hover {
  background-color: var(--charcoal);
  border-color: var(--charcoal);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(248, 245, 240, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.nav-logo {
  display: inline-block;
}

.nav-logo img {
  height: 155px;
  width: auto;
  margin: -40px 0;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  transition: all 0.3s ease;
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 90px;
  background: linear-gradient(135deg, var(--ivory) 0%, #fff 50%, var(--ivory) 100%);
  position: relative;
  overflow: hidden;
}

.hero.hero-video-section {
  background: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(244, 186, 223, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 24px;
}

.hero-subtitle {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--accent-primary);
  margin-bottom: 1rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hero p {
  font-size: 1.8rem;
  color: #6b6560;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: 0;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Services Grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 3rem;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

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

.service-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

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

.service-card p {
  color: #6b6560;
  font-size: 0.95rem;
}

/* ===== Pricing Section ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 3rem;
}

.pricing-card {
  background: #fff;
  border-radius: 12px;
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border: 2px solid var(--accent-primary);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--accent-primary);
  color: #fff;
  padding: 4px 40px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(45deg);
}

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

.pricing-card .price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin: 1rem 0 0.25rem;
}

.pricing-card .price-note {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 1.5rem;
}

.pricing-card .tagline {
  font-style: italic;
  color: #6b6560;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.pricing-features {
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid #f0ede8;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent-primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* Included section */
.included-section {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 1.5rem;
}

.included-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.included-grid li::before {
  content: '✓';
  color: var(--accent-primary);
  font-weight: 700;
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  position: relative;
}

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

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
}

.gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.1);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid #e8e4df;
  padding: 24px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  gap: 16px;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: #6b6560;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 16px;
}

/* ===== About Section ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 3rem;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  color: #6b6560;
  margin-bottom: 1.2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 3rem;
}

.value-item {
  text-align: center;
  padding: 24px;
}

.value-item h4 {
  margin-top: 0.5rem;
  font-family: var(--font-heading);
}

/* ===== Promise Cards ===== */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 3rem;
}

.promise-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--accent-primary);
}

.promise-card h4 {
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.promise-card p {
  color: #6b6560;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ===== Contact Form ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 3rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(121, 189, 166, 0.1);
}

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

.contact-info {
  padding: 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(121, 189, 166, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-primary);
  font-size: 1.2rem;
}

/* ===== Footer ===== */
.footer {
  background: #ffd1c4;
  color: var(--charcoal);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .nav-logo {
  color: var(--charcoal);
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  color: var(--charcoal);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer h4 {
  font-family: var(--font-heading);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--charcoal);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff9579;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  color: var(--charcoal);
  font-size: 1.1rem;
}

.social-links a:hover {
  background: #ff9579;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 24px;
  text-align: center;
  color: var(--charcoal);
  font-size: 0.85rem;
}

/* ===== Booking / Calendly ===== */
.booking-section {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-top: 3rem;
}

.calendly-embed {
  min-height: 650px;
  margin-top: 2rem;
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: #ff9579;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* ===== Page Header ===== */
.page-header {
  padding: 150px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, var(--ivory) 0%, #fff 100%);
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  color: #6b6560;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Responsive ===== */
@media (max-width: 968px) {
  .nav-logo img {
    height: 80px;
    margin: -10px 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: var(--ivory);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-video-section {
    display: none !important;
  }

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

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

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

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


/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

/* ===== Form Success ===== */
.form-success {
  text-align: center;
  padding: 60px 20px;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--accent-primary);
}

.form-success p {
  color: #6b6560;
  font-size: 1.1rem;
}

/* ===== Navbar Scrolled ===== */
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

/* ===== Nav Toggle Active ===== */
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

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


/* ===== Hero Video Background ===== */
.hero-video-section {
  position: relative;
  background: #1a1a1a;
  min-height: 100vh;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-video-section::before {
  display: none;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

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

.hero-video-section .hero-video-overlay,
.hero-video-section > .hero-video-overlay {
  position: absolute;
  inset: 0;
  background: none;
  z-index: 1;
}

.hero-video-section .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: left;
  padding-left: 60px;
  align-self: center;
}

.hero-video-section .hero-content p {
  margin-left: 0;
  padding-left: 0;
}

.hero-video-section .hero-subtitle {
  color: var(--accent-gold);
}

.hero-video-section h1 {
  color: #000;
}

.hero-video-section p {
  color: #000;
}


/* ===== Hero Video Slow Motion ===== */


/* ===== Service Cards with Images ===== */
.service-card-image {
  padding: 0;
  overflow: hidden;
  text-align: left;
}

.service-card-image .service-card-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

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

.service-card-image .service-card-body {
  padding: 28px 32px 36px;
}

.service-card-image .service-card-body h3 {
  margin-bottom: 0.75rem;
}

.service-card-image .service-card-body p {
  color: #6b6560;
  font-size: 0.95rem;
  margin-bottom: 0;
}


/* ===== Why Tate & Ivory Grid ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 3rem;
}

.why-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.why-card-img {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.why-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-card-body h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.why-card-body p {
  color: #6b6560;
  font-size: 0.9rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    flex-direction: column;
    text-align: center;
  }

  .why-card-img {
    width: 100%;
    height: 180px;
  }
}


/* ===== Events We Love Cards ===== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 3rem;
}

.event-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  position: relative;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(121, 189, 166, 0.2);
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.event-card-img {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

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

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

.event-card-icon {
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: -28px auto 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--accent-gold);
}

.event-card-body {
  padding: 20px 28px 32px;
}

.event-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.event-card-body p {
  color: #6b6560;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.event-card-link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent-primary);
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.event-card-link:hover {
  color: var(--charcoal);
}

@media (max-width: 768px) {
  .events-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}


/* ===== Values Stacked Full-Width Images ===== */
.values-stacked {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.value-full-img {
  width: 100%;
  line-height: 0;
}

.value-full-img img {
  width: 100%;
  height: auto;
  display: block;
}


/* ===== Mobile Hero (separate element) ===== */
.hero-mobile {
  display: none !important;
}

@media (max-width: 768px) {
  /* Hide ALL desktop hero variants */
  .hero-desktop,
  .hero.hero-video-section,
  .hero.hero-video-section.hero-desktop,
  section.hero-video-section {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
  }

  /* Show mobile hero */
  .hero-mobile {
    display: block !important;
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    padding: 0;
    margin: 0;
  }

  .hero-mobile-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
  }

  .hero-mobile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-mobile-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    padding: 110px 20px 50px;
  }

  .hero-mobile-content h1 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    line-height: 1.2;
    color: #000;
    max-width: 60%;
  }

  .hero-mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .hero-mobile-buttons .btn {
    text-align: center;
    width: 70%;
    padding: 16px 32px;
  }
}
