* {
  box-sizing: border-box;
}

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px !important; height: 8px !important; }
::-webkit-scrollbar-track { background: rgba(0,0,0,0.05) !important; }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.35) !important; border-radius: 4px !important; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,0.55) !important; }

html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

/* Stellar Designs & Concepts - Design Tokens */
/* GrapesJS Auto Dimension Utilities */
.gjs-auto-width { width: fit-content !important; }
.gjs-auto-max-width { max-width: fit-content !important; }
.gjs-auto-height { height: fit-content !important; }
.gjs-auto-min-height { min-height: fit-content !important; }
.gjs-auto-max-height { max-height: fit-content !important; }

/* Typography & Color System for Web (CSS Variables) */

:root {
  /* Site-wide max width */
  --site-max-width: 1200px;

  /* Fonts */
  --font-serif: "The Seasons", "Cormorant Garamond", "Playfair Display", "Georgia", serif;
  --font-sans: "Lato", "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;


  /* Base Font Sizes (Desktop) */
  --font-size-h1-hero: 64px;
  --font-size-h1-page: 52px;
  --font-size-h2: 32px;
  --font-size-h3: 36px;
  --font-size-body: 1.5rem;
  --font-size-label: 14px;
  --font-size-button: 16px;
  --font-size-tagline: 32px;

  /* Line Heights */
  --line-height-h1-hero: 1.1;
  --line-height-h1-page: 1.15;
  --line-height-heading: 1.25;
  --line-height-body: 1.7;

  /* Letter Spacing */
  --letter-spacing-normal: 0;
  --letter-spacing-tight: -0.5px;
  --letter-spacing-label: 0.09em;
  --letter-spacing-button: 0.03em;

  /* Text Colors */
  --color-text-body: #2F2F2F;          /* Soft charcoal */
  --color-text-h1: #2E4A43;            /* Deep sage */
  --color-text-h1-alt: #253C36;        /* Darker sage option */
  --color-text-h2-h3: #3F5F57;         /* Muted forest sage */
  --color-text-tagline: #83513f;        /* Dark blush accent */
  --color-text-label: #6E7F79;         /* Warm sage-grey */
  --color-text-italic: #C58F7B;        /* Warm blush accent */
  --color-text-italic-soft: #B67C6A;   /* Softer blush */
  --color-text-footer: #6E7F79;

  /* Pricing Colors */
  --color-price-gold: #BFA15A;         /* Refined luxury */
  --color-price-terracotta: #B65E45;   /* Strong visibility */
  --color-price-sage: #2E4A43;         /* Clean modern (heavy weight) */

  /* Button Colors */
  --color-btn-primary-bg: #2E4A43;
  --color-btn-primary-text: #F7F4EE;
  --color-btn-primary-hover-bg: #3F5F57;

  --color-btn-secondary-border: #BFA15A;
  --color-btn-secondary-text: #2E4A43;
  --color-btn-secondary-bg: transparent;

  /* Link Colors */
  --color-link: #3F5F57;
  --color-link-hover: #BFA15A;

  /* Background Neutrals (for reference) */
  --color-bg-cream: #F8F4EE;
  --color-bg-light-sage: #b5dbbf;

  /* RGB variants for rgba() usage */
  --color-text-body-rgb: 47, 47, 47;
  --color-text-h1-rgb: 46, 74, 67;
  --color-text-h2-h3-rgb: 63, 95, 87;
  --color-text-label-rgb: 110, 127, 121;
  --color-text-tagline-rgb: 131, 81, 63;
  --color-text-italic-rgb: 197, 143, 123;
  --color-price-gold-rgb: 191, 161, 90;
  --color-price-sage-rgb: 46, 74, 67;
  --color-btn-primary-bg-rgb: 46, 74, 67;
  --color-bg-cream-rgb: 248, 244, 238;
  --color-bg-light-sage-rgb: 228, 236, 230;
  --color-btn-secondary-border-rgb: 191, 161, 90;
}

/* Recommended Usage Examples */

/* Headings */
.h1-hero {
  font-family: var(--font-serif);
  font-size: var(--font-size-h1-hero);
  font-weight: 500;
  line-height: var(--line-height-h1-hero);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-text-h1);
  margin: 0; /* Remove default margins to pull elements closer */
}

.h1-page {
  font-family: var(--font-serif);
  font-size: var(--font-size-h1-page);
  line-height: var(--line-height-h1-page);
  letter-spacing: var(--letter-spacing-normal);
  color: var(--color-text-h1);
}

.h2 {
  font-family: var(--font-serif);
  font-size: var(--font-size-h2);
  line-height: var(--line-height-heading);
  color: var(--color-text-h2-h3);
}

.h2-tagline {
    color: var(--color-text-italic);
    font-size: 3rem;
}

.h3 {
  font-family: var(--font-serif);
  font-size: var(--font-size-h3);
  line-height: var(--line-height-heading);
  color: var(--color-text-h2-h3);
  margin-bottom: 0.25rem; /* Tighten space below */
}

/* Body Text */
.body-text {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--color-text-body);
}

/* Labels / Small Caps */
.label {
  font-family: var(--font-sans);
  font-size: var(--font-size-label);
  letter-spacing: var(--letter-spacing-label);
  text-transform: uppercase;
  color: var(--color-text-label);
  margin-top: 0; /* Remove top margin */
}

/* Pricing */
.price--gold {
  font-family: var(--font-sans);
  color: var(--color-price-gold);
  font-weight: 600;
}

.price--terracotta {
  font-family: var(--font-sans);
  color: var(--color-price-terracotta);
  font-weight: 600;
}

.price--sage {
  font-family: var(--font-sans);
  color: var(--color-price-sage);
  font-weight: 700;
}

/* Buttons */
.btn-primary {
  font-family: var(--font-sans);
  font-size: var(--font-size-button);
  letter-spacing: var(--letter-spacing-button);
  font-weight: 500;
  background-color: var(--color-btn-primary-bg);
  color: var(--color-btn-primary-text);
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  border: none;
}

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

.btn-secondary {
  font-family: var(--font-sans);
  font-size: var(--font-size-button);
  letter-spacing: var(--letter-spacing-button);
  font-weight: 500;
  background-color: var(--color-btn-secondary-bg);
  color: var(--color-btn-secondary-text);
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  border: 1px solid var(--color-btn-secondary-border);
}

/* Links */
a {
  color: var(--color-link);
  text-decoration: none;
}

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

/* Responsive Scaling (Example Breakpoints) */
@media (max-width: 1024px) {
  :root {
    --font-size-h1-hero: 48px;
    --font-size-h1-page: 42px;
    --font-size-h2: 28px;
    --font-size-h3: 22px;
    --font-size-body: 17px;
  }
}

/* Layout & Utility */

.container {
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

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

.mt-1 {
  margin-top: .75rem;
}

.mt-2 {
  margin-top: 2rem;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 0 1.5rem; /* Match container padding */
  height: 80px; /* Fixed height for consistency */
  position: relative;
  z-index: 100;
}

header {
  background-color: var(--color-bg-cream);
  border-bottom: 1px solid rgba(var(--color-text-h1-rgb), 0.1);
  width: 100%;
}

.logo {
  height: 100%; /* Fill navbar */
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-logo {
  max-height: 100%; /* Use max-height to ensure it never exceeds container */
  width: auto;
  display: block;
  padding: 0 0; /* Add consistent vertical padding */
  box-sizing: border-box;
}

.footer-logo {
  max-height: 120px; /* Adjust this to your preferred height */
  width: auto;
  display: block;
  padding-right: 10px;
  transition: transform 0.3s ease;

}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

/* Hero Section */
.hero {
  min-height: 85vh; /* Fill the screen */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--color-bg-light-sage);
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-cta {
  margin-top: 2.5rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

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

.service-card {
  padding: 2.5rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}

.service-card ul li {
  padding: 0.25rem 0;
}

.service-card ul li::before {
  content: "✦";
  color: var(--color-price-gold);
  font-size: 0.65em;
  margin-right: 0.5em;
  vertical-align: middle;
}

/* About Section */
.about-flex {
  display: flex;
  gap: 3rem;
  align-items: center;
  text-align: left; /* Ensure text is left-aligned in this layout */
}

.about-text {
  font-family: var(--font-serif);
  color: var(--color-text-body);
  font-size: 1.25rem;;
  flex: 1.5; /* Give text more room */
  text-align: center;
}

.about-image {
  flex: 1;
}

.about-headshot {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  background-color: transparent;
  border: 4px solid var(--color-text-label);
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  display: block;
}

/* Gallery Filtering */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-sans);
  font-size: var(--font-size-label);
  letter-spacing: var(--letter-spacing-label);
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--color-text-label);
  color: var(--color-text-label);
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--color-text-h1);
  color: #fff;
  border-color: var(--color-text-h1);
}

/* Gallery Navigation (Scroll Links) */
.category-section {
  margin-top: 4rem;
  scroll-margin-top: 100px; /* Offset for sticky/fixed navbars */
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background-color: var(--color-text-h1);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--color-btn-primary-hover-bg);
  transform: translateY(-5px);
}

.category-header {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgba(var(--color-text-label-rgb), 0.2);
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}

.category-heading {
  border-bottom: none;
  margin-bottom: 0;
  text-align: center;
}

.category-footer {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 2.5rem 0;
}

.expand-category-btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--font-size-label);
  letter-spacing: var(--letter-spacing-label);
  text-transform: uppercase;
  background: transparent;
  border: 2px solid var(--color-text-tagline);
  color: var(--color-text-tagline);
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.expand-category-btn:hover {
  background-color: var(--color-text-tagline);
  color: #fff;
}

.gallery-grid.row-limited {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  max-height: 420px; /* Safeguard height for one row of squares/portrait items */
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-grid.row-limited.expanded {
  max-height: none; /* JS will set specific pixel height for smooth transition */
}

/* Album Stack Styles */
.album-item {
  cursor: pointer;
}

.album-stack {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* resolves against gallery-item's content height from ::before */
  padding: 10px;
}

.stack-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  background-color: rgba(var(--color-bg-light-sage-rgb), 0.3); /* Same light gray/sage with 30% alpha */
  border: 1px solid rgba(var(--color-text-label-rgb), 0.1);
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.layer-1 {
  transform: rotate(-6deg) translate(-10px, -5px);
  z-index: 1;
}

.layer-2 {
  transform: rotate(6deg) translate(10px, -5px);
  z-index: 2;
}


.album-cover {
  position: relative;
  width: 100%; /* fills album-stack's content box (W minus 2×padding) */
  /* No explicit height: established by ::before below, propagates up through album-stack
     to gallery-item via in-flow block layout. No aspect-ratio or height:100% in chain. */
  z-index: 3;
  border-radius: 4px;
  overflow: hidden;
  background-color: rgba(var(--color-bg-light-sage-rgb), 0.3);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

/* Forces album-cover height = its own width via the classic padding-top trick.
   padding-top:100% resolves against the element's containing block WIDTH (album-stack's
   content box width), which is always a definite value - never depends on aspect-ratio. */
.album-cover::before {
  content: '';
  display: block;
  padding-top: 100%;
}

/* Image/video must be absolutely positioned so it overlays the ::before spacer. */
.album-cover > .gallery-img,
.album-cover > .gallery-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.album-item:hover .layer-1 {
  transform: rotate(-12deg) translate(-20px, -10px);
}

.album-item:hover .layer-2 {
  transform: rotate(12deg) translate(20px, -10px);
}

.album-item:hover .album-cover {
  transform: scale(1.02);
}

/* Album Drawer */
.album-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, margin 0.5s ease;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  margin-top: 0;
}

.album-drawer.open {
  max-height: 2000px; /* High enough to contain content */
  margin-top: 2rem;
  padding: 2rem;
  border: 1px solid rgba(var(--color-price-gold-rgb), 0.3);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 100;
}

.drawer-title {
  color: var(--color-price-gold);
  font-style: italic;
}

.close-drawer-btn {
  background: rgba(var(--color-text-label-rgb), 0.1);
  border: 1px solid rgba(var(--color-text-label-rgb), 0.2);
  color: var(--color-text-label);
  font-family: var(--font-sans);
  cursor: pointer;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  z-index: 101;
}

.close-drawer-btn:hover {
  background-color: var(--color-text-h1);
  color: #fff;
}

.drawer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  /* aspect-ratio intentionally removed - iOS WebKit computes the item size correctly
     via aspect-ratio but does NOT contribute that height to grid auto-row track sizing,
     so items render on top of each other.  The ::before below forces content-based height
     which grid rows DO respect on every browser. */
  background-color: rgba(var(--color-bg-light-sage-rgb), 0.3);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
}

/* Forces 1:1 aspect ratio via content height (not CSS aspect-ratio).
   padding-top:100% on an in-flow block = 100% of the containing block's WIDTH,
   which is always definite from the grid column track. Grid auto-row sizing
   uses this content height, fixing iOS WebKit's aspect-ratio track bug. */
.gallery-item::before {
  content: '';
  display: block;
  padding-top: 100%;
}

/* Regular (non-album) images/videos must be absolutely positioned
   to overlay the ::before spacer instead of stacking below it. */
.gallery-item > .gallery-img,
.gallery-item > .gallery-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.gallery-item:hover {
  transform: translateY(-5px);
  z-index: 10; /* Bring hovered item above others */
}

.gallery-img, .gallery-video, .preview-img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Shows the full image without cropping */
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  pointer-events: auto; /* Allow clicking the overlay to open the lightbox */
  z-index: 20; /* Ensure it's in front of album layers (z-3) and cover */
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.description-scroll-container {
  width: 100%;
  max-height: 100%;
  overflow: hidden;
  position: relative;
}

.description-scroll-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.description-text {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
  opacity: 0.9;
}

/* Auto-scroll Animation */
.gallery-item:hover .description-scroll-content.should-scroll {
  animation: scroll-vertical 10s linear infinite;
}

@keyframes scroll-vertical {
  0% { transform: translateY(0); }
  10% { transform: translateY(0); } /* Pause at start */
  90% { transform: translateY(calc(-100% + 150px)); } /* 150px is approx visible area */
  100% { transform: translateY(calc(-100% + 150px)); }
}

.gallery-overlay .label {
  color: var(--color-price-gold);
  margin: 0;
  display: block;
}

/* Modal Caption Styling */
.modal-caption {
  width: 280px;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  padding: 1.5rem 1.75rem;
  color: #fff;
  text-align: left;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 4px 4px 0;
  overflow-y: auto;
  display: none;          /* hidden by default */
  flex-direction: column;
  justify-content: center;
}

.modal.show-caption .modal-caption {
  display: flex;          /* shown when content exists */
}

.modal-caption-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-price-gold);
  margin-bottom: 0.25rem;
}

.modal-caption-scroll-container {
  max-height: 100%;
  overflow: hidden;
  position: relative;
}

.modal-caption-scroll-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.modal-caption-scroll-content.should-scroll {
  animation: scroll-vertical 10s linear infinite;
}

.modal-caption-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.4;
  opacity: 0.9;
}

/* Hide items/sections for filtering */
.gallery-item.hidden,
.category-section.hidden {
  display: none;
}

/* Modal (Lightbox) Styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 10000; /* High z-index to be on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.95);
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
}

.modal-close {
  position: absolute;
  top: 2rem;
  right: 3rem;
  color: #fff;
  font-family: Arial, sans-serif; /* Standard font for clear character rendering */
  font-size: 3.5rem;
  font-weight: 300;
  background: transparent;
  border: none;
  transition: 0.3s;
  cursor: pointer;
  z-index: 10001;
  line-height: 1;
}

.modal-close:hover,
.modal-close:focus {
  color: var(--color-price-gold);
  text-decoration: none;
}

/* Lightbox Navigation Buttons */
.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border: none;
  font-size: 2.5rem;
  padding: 1.5rem 1rem;
  cursor: pointer;
  z-index: 10002;
  transition: all 0.3s ease;
  user-select: none;
  display: none; /* Hidden by default, JS shows them for albums */
}

.modal-nav:hover {
  background: rgba(0, 0, 0, 0.8);
  color: var(--color-price-gold);
}

.modal-nav.prev {
  left: 0;
  border-radius: 0 8px 8px 0;
}

.modal-nav.next {
  right: 0;
  border-radius: 8px 0 0 8px;
}

/* Show buttons when the modal is active and has album context */
.modal.has-album .modal-nav {
  display: block;
}

@media (max-width: 768px) {
  .modal-nav {
    padding: 1rem 0.5rem;
    font-size: 1.5rem;
    background: rgba(0, 0, 0, 0.5);
  }
}

/* Two-column wrapper: image + caption side by side, centred in viewport */
.modal-content-wrapper {
  display: flex;
  align-items: stretch;        /* caption column matches image height */
  max-width: 90vw;
  max-height: 85vh;
  animation: zoom 0.5s;
}

.modal-content-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
}

.modal-content {
  display: block;
  max-height: 80vh;
  max-width: min(60vw, 900px);  /* leave room for caption column */
  object-fit: contain;
  border-radius: 4px 0 0 4px;
}

/* When there's no caption, give the image full rounded corners */
.modal:not(.show-caption) .modal-content {
  border-radius: 4px;
}

#modalVideo.modal-content {
  background: #000;
}

@keyframes zoom {
  from {transform:scale(0.8); opacity: 0;} 
  to {transform:scale(1); opacity: 1;}
}

/* Ensure page doesn't scroll when modal is open */
html.modal-open {
  overflow: hidden;
}
body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

@media (max-width: 768px) {
  .modal-close {
    top: 1rem;
    right: 1.5rem;
    font-size: 2.5rem;
  }

  .modal-content-wrapper {
    flex-direction: column;
    max-width: 95vw;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-content {
    max-width: 95vw;
    max-height: 60vh;
    border-radius: 4px 4px 0 0;
  }

  .modal:not(.show-caption) .modal-content {
    border-radius: 4px;
  }

  .modal-caption {
    width: auto;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 4px 4px;
  }
}

footer {
  background-color: var(--color-bg-cream);
  padding: 4rem 0 2rem;
  margin-top: 0rem;
  border-top: 1px solid rgba(var(--color-text-h1-rgb), 0.1);
}

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

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

/* Background Image Utilities */
.bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.main-content-bg {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-overlay {
  background-color: rgba(var(--color-bg-cream-rgb), 0.9); /* var(--color-bg-cream) with opacity */
  padding: 3rem;
  border-radius: 8px;
  max-width: 1000px; /* Increased from 800px to fit side-by-side content */
  width: 95%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Hero Logo Video */
.hero-logo-container {
  margin-bottom: 1rem; /* Reduced from 2rem */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;  /* Width of the oval */
  height: 310px; /* Height of the oval */
  border: 4px solid var(--color-text-label); /* Soft sage-grey border */
  border-radius: 50%; /* Creates the elegant oval shape */
  background-color: var(--color-bg-cream); /* Inner background matching mockup */
  overflow: hidden; /* Clips the video to the oval */
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); /* Subtle depth */
}

.hero-logo-video {
  height: 100%; /* Fits to the height of the oval with a small margin */
  width: auto;  /* Maintains aspect ratio */
  object-fit: contain;
}

/* Tagline */
.tagline {
  font-family: var(--font-serif);
  font-size: var(--font-size-tagline);
  font-style: italic;
  font-weight: 400;    /* Heavier weight for more punch */
  color: var(--color-text-tagline);
  margin-top: 0.75rem;
}

/* Contact Details Styling */
.contact-text {
  text-transform: none; /* Keep email lowercase for shorter width */
  overflow-wrap: anywhere; /* Professional way to wrap if it hits the edge */
  display: inline-block;
  max-width: 100%;
  vertical-align: bottom;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    height: auto; /* Let it expand on mobile */
    padding: 1rem;
  }

  .logo {
    height: 60px; /* Specific height for mobile logo */
    margin-bottom: 1rem;
  }

  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-logo-container {
    width: 180px;
    height: 250px;
  }
  
  .about-flex {
    flex-direction: column;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  /* Footer Mobile Fix */
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

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

  .footer-links ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0;
  }

  /* Contact Form Mobile Fixes */
  .contact-form {
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
  }

  .radio-option {
    flex-wrap: wrap; /* Allow "Other" text input to wrap below if needed */
    gap: 0.5rem;
  }

  .inline-other {
    flex-direction: column;
    align-items: flex-start;
  }

  .inline-other input[type="text"] {
    margin-left: 0 !important;
    margin-top: 0.5rem;
    width: 100% !important;
  }

  .form-section h4 {
    font-size: 1.25rem;
  }

  .upload-zone {
    padding: 1.75rem 1rem;
  }

  .upload-preview-item {
    width: 72px;
    height: 72px;
  }
}

/* Contact Page Specifics*/
.contact-details .h1-page,
.contact-details .h3 {
  margin: 0;
}

/* Pricing Page Specifics */
.pricing-section {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-item {
  margin: 2.5rem 0;
  font-size: 1.5rem;
}

.pricing-item h3 {
  font-family: var(--font-serif);
  font-size: 2rem; /* Slightly larger than standard h3 for prominence */
  color: var(--color-text-h1);
  font-weight: 400;
  margin-bottom: 0rem;
}

.pricing-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-text-tagline); /* Warm terracotta/blush */
  font-style: italic;
  font-weight: 500;
  margin: 0;
}

.pricing-subtext {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-text-label);
  margin-top: 0rem;
  display: block !important;
  width: fit-content !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  white-space: pre-line;
  background: rgba(var(--color-bg-cream-rgb), 0.35);
  border-radius: 4px;
  padding: 0.2rem 0.6rem;
}

.pricing-divider {
  width: 80%;
  height: 2px;
  background-color: rgba(var(--color-text-label-rgb), 0.2); /* Soft sage-grey */
  margin: 2rem auto;
  border: none;
}

.pricing-footer {
  margin-top: 1rem;
  text-align: center;
}

.pricing-footer p {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-text-h2-h3);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.pricing-footer .pricing-disclaimer {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-text-label);
}

.pricing-dots {
  text-align: center;
  color: var(--color-text-tagline);
  font-size: 2.5rem;
  letter-spacing: 0.2em;
  margin: 1rem auto; /* Reduced from 2.5rem */
}


/* Pricing - category headings */
.pricing-category-header {
  margin: 3rem 0 1.5rem;
}

.pricing-category-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--color-text-h2-h3);
  text-align: center;
  margin: 0;
}

/* Pricing - grids */
.pricing-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

/* Pricing - cards */
.pricing-package {
  background: rgba(var(--color-bg-cream-rgb), 0.82);
  border: 1px solid rgba(var(--color-text-label-rgb), 0.25);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
}

.pricing-package h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--color-text-h1);
  font-weight: 400;
  margin: 0 0 0.5rem;
}

/* Pricing - star decoration */
.pricing-star {
  color: var(--color-price-gold);
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

/* Pricing - feature list */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-text-body);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(var(--color-text-label-rgb), 0.15);
  justify-content: center;
}

.pricing-features li::before {
  content: "✦";
  color: var(--color-price-gold);
  font-size: 0.65em;
  margin-right: 0.5em;
  flex-shrink: 0;
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* Responsive - collapse grids on mobile */
@media (max-width: 768px) {
  .pricing-grid-3,
  .pricing-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Form Styling */
.contact-form {
  max-width: 800px;
  margin: 3rem auto 0;
  text-align: left;
}

.form-section {
  margin-bottom: 3rem;
}

.form-section h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-text-h1);
  border-bottom: 1px solid rgba(var(--color-text-h1-rgb), 0.1);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text-body);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(var(--color-text-label-rgb), 0.3);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.8);
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select {
  height: 45px;
}

.form-group textarea {
  padding: 0.75rem;
  min-height: 120px;
  height: auto;
  resize: vertical;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  cursor: pointer;
}

.inline-other {
  display: flex;
  align-items: center;
  width: 100%;
}

.inline-other input[type="text"] {
  height: 35px !important;
  margin-left: 0.5rem;
  flex: 1; /* Grow to fill space */
  width: auto !important; /* Override the global 100% width */
}

.hidden {
  display: none;
}

.submit-container {
  margin-top: 2rem;
}

.form-hint {
  margin-top: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  opacity: 0.65;
}

.form-section-optional {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: normal;
  opacity: 0.65;
}

/* Upload Zone */
.upload-zone {
  border: 2px solid rgba(var(--color-text-label-rgb), 0.45);
  border-radius: 8px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  background-color: rgba(var(--color-bg-light-sage-rgb), 0.35);
}

.upload-zone:hover,
.upload-zone.drag-over {
  border-color: var(--color-text-h1);
  background-color: rgba(var(--color-bg-light-sage-rgb), 0.6);
}

.upload-zone.upload-zone--full {
  cursor: default;
  border-style: solid;
}

.upload-zone input[type="file"] {
  display: none;
}

.upload-zone-icon {
  color: var(--color-text-label);
  display: block;
  margin: 0 auto 0.75rem;
}

.upload-zone-title {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-text-h2-h3);
  margin: 0 0 0.25rem;
}

.upload-zone-sub {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--color-text-label);
  margin: 0 0 0.5rem;
}

.upload-zone-link {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--color-text-h1);
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.15s;
}

.upload-zone-link:hover {
  color: var(--color-btn-primary-hover-bg);
}

/* Image previews */
.upload-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.upload-preview-item {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(var(--color-text-label-rgb), 0.3);
  background-color: var(--color-bg-light-sage);
}

.upload-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.upload-preview-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  background: rgba(30, 30, 30, 0.65);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.15s;
}

.upload-preview-remove:hover {
  background: rgba(30, 30, 30, 0.9);
}

/* ============================================================
   Editor / Custom Page Components
   Classes used by GrapesJS-built custom pages.
   ============================================================ */

/* ── Column layout system ──────────────────────────────────── */
.col-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.col-cell {
  flex: 1;
  min-width: 180px;
}

/* ── Content elements ──────────────────────────────────────── */

/* Bullet list - uses brand bullet character (default ★, customisable via Theme Settings) */
.body-list {
  list-style: none;
  padding-left: 1.5rem;
  margin: 0.75rem 0;
  color: var(--color-text-body);
  font-family: var(--font-sans);
  font-size: 1.1rem;
  line-height: 1.75;
}

.body-list li {
  position: relative;
  padding-left: 1.25em;
  margin-bottom: 0.35rem;
}

.body-list li::before {
  content: var(--bullet-char, '✦');
  color: var(--brand-accent, #c8a96e);
  position: absolute;
  left: 0;
}

/* Numbered list */
.ordered-list {
  list-style: decimal;
  padding-left: 1.5rem;
  margin: 0.75rem 0;
  color: var(--color-text-body);
  font-family: var(--font-sans);
  font-size: 1.1rem;
  line-height: 1.75;
}

.ordered-list li {
  margin-bottom: 0.35rem;
}

/* Large decorative step number (for process/step layouts) */
.step-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  /* Use RGBA color instead of opacity so child elements aren't affected */
  color: rgba(var(--color-text-h1-rgb), 0.18);
  line-height: 1;
  margin: 0;
  user-select: none;
}

/* Horizontal rule matching site aesthetic */
.section-divider {
  border: none;
  border-top: 1px solid rgba(var(--color-text-label-rgb), 0.3);
  margin: 2rem 0;
}

/* ── Process Step ──────────────────────────────────────────── */
.process-step {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(var(--color-text-label-rgb), 0.12);
}

.process-step:last-child {
  border-bottom: none;
}

.process-goal {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-text-h2-h3);
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(var(--color-text-label-rgb), 0.2);
}

/* ── Pull Quote / Blockquote ───────────────────────────────── */
.pull-quote {
  border-left: 4px solid var(--color-price-gold);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background-color: rgba(var(--color-price-gold-rgb), 0.06);
  border-radius: 0 8px 8px 0;
}

.pull-quote-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--color-text-h1);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.pull-quote-cite {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--color-text-label);
  font-style: normal;
  display: block;
}

/* ── Testimonial ───────────────────────────────────────────── */
.testimonial {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 12px;
  border: 1px solid rgba(var(--color-text-label-rgb), 0.18);
  text-align: center;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-text-h1);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-name {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--color-text-h2-h3);
  margin-bottom: 0.2rem;
}

.testimonial-role {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--color-text-label);
}

/* ── Icon + Text Card ──────────────────────────────────────── */
.icon-text-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  border: 1px solid rgba(var(--color-text-label-rgb), 0.15);
}

.icon-text-icon {
  font-size: 2rem;
  line-height: 1;
  color: var(--color-text-h1);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ── Card Grid ─────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(var(--color-text-label-rgb), 0.18);
  border-radius: 10px;
  padding: 2rem;
  transition: box-shadow 0.2s ease;
}

.card:hover {
  box-shadow: 0 4px 20px rgba(var(--color-text-h1-rgb), 0.1);
}

/* ── Stats Row ─────────────────────────────────────────────── */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-text-h1);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--color-text-label);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ── Video Embed (responsive 16:9) ─────────────────────────── */
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── FAQ / Accordion ───────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 2rem;
}

.faq-item {
  border: 1px solid rgba(var(--color-text-label-rgb), 0.22);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text-h2-h3);
  background: rgba(var(--color-bg-light-sage-rgb), 0.35);
  transition: background 0.15s ease;
  user-select: none;
}

.faq-question-text {
  flex: 1;
}

.faq-icon {
  flex-shrink: 0;
  margin-left: 1rem;
  color: var(--color-price-gold);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.25s ease;
  display: block;
  width: 1em;
  text-align: center;
}

.faq-icon::before { content: '+'; }

.faq-item.open .faq-question-wrap {
  background: rgba(var(--color-bg-light-sage-rgb), 0.6);
}

.faq-item.open .faq-icon::before { content: '−'; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 2000px;
}

.faq-answer-inner {
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.8);
}

/* ── Alert / Notice Banner ─────────────────────────────────── */
.alert-banner {
  padding: 1rem 1.5rem;
  background: rgba(var(--color-price-gold-rgb), 0.1);
  border: 1px solid rgba(var(--color-price-gold-rgb), 0.35);
  border-left: 4px solid var(--color-price-gold);
  border-radius: 0 6px 6px 0;
}

/* ── Divider with Label ────────────────────────────────────── */
.ep-dot-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 2rem 0;
}

.ep-dot-divider span {
  color: var(--color-accent, #c9a96e);
  font-size: 0.5rem;
  line-height: 1;
}

.divider-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.divider-label::before,
.divider-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(var(--color-text-label-rgb), 0.3);
}

.divider-label-text {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-label);
  white-space: nowrap;
}

/* ── Responsive: stack columns on mobile ───────────────────── */
@media (max-width: 768px) {
  .col-row {
    flex-direction: column;
  }

  .col-cell {
    width: 100%;
    flex: 0 0 100%;
  }
}

/* ── Responsive visibility helpers ─────────────────────────── */
@media (max-width: 480px) {
  .ep-hide-mobile { display: none !important; }
}
@media (min-width: 481px) and (max-width: 992px) {
  .ep-hide-tablet { display: none !important; }
}
@media (min-width: 993px) {
  .ep-hide-desktop { display: none !important; }
}

/* ── Clickable containers ────────────────────────────────────────────────── */
[data-href] { cursor: pointer; }

/* ── Social Links block ─────────────────────────────────────────────────── */
.social-links-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.5rem 0;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--color-text-body);
  text-decoration: none;
  font-size: 0.88rem;
  opacity: 0.65;
  transition: opacity 0.2s ease;
}
.social-link:hover { opacity: 1; }
.social-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── Social Links component ─────────────────────────────────────────────── */
.ep-social-links {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
}
.ep-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-body, #dcdce8);
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.2s ease, transform 0.15s ease;
  line-height: 1;
}
.ep-social-link:hover { opacity: 1; transform: translateY(-2px); }
.ep-social-link svg { width: 22px; height: 22px; fill: currentColor; display: block; }

/* ── Pricing Tier blocks ────────────────────────────────────────────────── */
.ep-pricing-tier { padding: 2rem 0; }
.ep-pricing-tier-header { text-align: center; margin-bottom: 2rem; }
.ep-pricing-grid { display: grid; gap: 1.5rem; }
.ep-pricing-grid--1col { grid-template-columns: minmax(0, 520px); justify-content: center; }
.ep-pricing-grid--2col { grid-template-columns: repeat(2, 1fr); }
.ep-pricing-grid--3col { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 768px) {
  .ep-pricing-grid--2col,
  .ep-pricing-grid--3col { grid-template-columns: 1fr; }
}
.ep-pricing-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.ep-pricing-card-name {
  font-family: var(--font-heading, 'The Seasons', serif);
  font-size: 1.15rem;
  color: var(--color-heading, #f5f0eb);
  margin: 0;
}
.ep-pricing-card-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-accent, #c9a96e);
  line-height: 1;
}
.ep-pricing-card-features {
  flex: 1;
  padding: 0;
  margin: 0;
}
.ep-pricing-placeholder { min-height: 80px; }
