/* =============================================
   IVEIN 2011 — Premium Catering Website
   Design System & Main Styles
   ============================================= */

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --color-primary-dark: #1a1a1a;
  --color-primary-gold: #c8956c;
  --color-gold-light: #ddb892;
  --color-gold-dark: #a87246;
  --color-secondary-warm: #e8c4a0;
  --color-accent-red: #8b2500;
  --color-accent-ember: #d4593c;
  --color-neutral-light: #f5f0eb;
  --color-neutral-white: #ffffff;
  --color-text-dark: #2d2d2d;
  --color-text-light: #f5f5f5;
  --color-text-muted: #6b6b6b;
  --color-border: #e0d6cc;
  --color-overlay: rgba(26, 26, 26, 0.6);
  --color-overlay-dark: rgba(0, 0, 0, 0.7);

  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;
  --font-accent: 'Montserrat', sans-serif;

  /* Font Sizes (fluid) */
  --fs-hero: clamp(2.5rem, 5vw, 4.5rem);
  --fs-h1: clamp(2rem, 4vw, 3.5rem);
  --fs-h2: clamp(1.75rem, 3vw, 2.75rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.75rem);
  --fs-h4: clamp(1.1rem, 1.5vw, 1.35rem);
  --fs-body: clamp(0.95rem, 1.2vw, 1.1rem);
  --fs-small: clamp(0.8rem, 1vw, 0.9rem);
  --fs-label: 0.75rem;

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

  /* Section Padding */
  --section-py: clamp(4rem, 8vw, 7rem);
  --section-px: clamp(1rem, 5vw, 4rem);

  /* Container */
  --container-max: 1280px;
  --container-wide: 1440px;
  --container-narrow: 900px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;

  /* Z-index layers */
  --z-header: 1000;
  --z-overlay: 900;
  --z-modal: 1100;
  --z-preloader: 1200;
  --z-back-to-top: 800;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--color-text-dark);
  background-color: var(--color-neutral-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-primary-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

ul, ol {
  list-style: none;
}

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

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-dark);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p {
  margin-bottom: 1rem;
}

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

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

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

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

.section {
  padding: var(--section-py) 0;
}

.section--dark {
  background-color: var(--color-primary-dark);
  color: var(--color-text-light);
}

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

.section--cream {
  background-color: var(--color-neutral-light);
}

.section--white {
  background-color: var(--color-neutral-white);
}

/* --- Grid System --- */
.grid {
  display: grid;
  gap: var(--space-lg);
}

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

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

.flex {
  display: flex;
}

.flex--center {
  align-items: center;
  justify-content: center;
}

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

.flex--column {
  flex-direction: column;
}

.flex--gap-sm { gap: var(--space-sm); }
.flex--gap-md { gap: var(--space-md); }
.flex--gap-lg { gap: var(--space-lg); }

/* --- Text Utilities --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-gold { color: var(--color-primary-gold); }
.text-muted { color: var(--color-text-muted); }
.text-light { color: var(--color-text-light); }
.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: var(--font-accent);
}

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

.section-title {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: var(--fs-body);
  color: var(--color-text-muted);
  max-width: 700px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header .section-subtitle {
  margin: var(--space-sm) auto 0;
}

/* --- Preloader --- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: var(--z-preloader);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader__logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-primary-gold);
  margin-bottom: var(--space-md);
  letter-spacing: 0.1em;
}

.preloader__bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.preloader__progress {
  height: 100%;
  background: var(--color-primary-gold);
  border-radius: 2px;
  animation: preloaderFill 1.5s ease-in-out forwards;
}

@keyframes preloaderFill {
  from { width: 0; }
  to { width: 100%; }
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-header);
  padding: 1.25rem 0;
  transition: background var(--transition-base), padding var(--transition-base), box-shadow var(--transition-base);
}

.header--scrolled {
  background: var(--color-neutral-white);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.header__logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-neutral-white);
  transition: color var(--transition-base);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.header--scrolled .header__logo {
  color: var(--color-text-dark);
}

.header__logo span {
  color: var(--color-primary-gold);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav__link {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-neutral-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition-fast);
  text-decoration: none;
}

.header--scrolled .nav__link {
  color: var(--color-text-dark);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary-gold);
  transition: width var(--transition-base);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

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

/* Dropdown */
.nav__item {
  position: relative;
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--color-neutral-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-sm) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: all var(--transition-base);
  z-index: 10;
}

.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown a {
  display: block;
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
  color: var(--color-text-dark);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.nav__dropdown a:hover {
  background: var(--color-neutral-light);
  color: var(--color-primary-gold);
}

/* Header Right */
.header__right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header__phone {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-neutral-white);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.header--scrolled .header__phone {
  color: var(--color-text-dark);
}

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

.header__phone svg {
  width: 16px;
  height: 16px;
  margin-right: 4px;
  vertical-align: middle;
}

/* Hamburger */
.hamburger {
  display: none;
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 10;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-neutral-white);
  position: absolute;
  left: 0;
  transition: all var(--transition-base);
}

.header--scrolled .hamburger span {
  background: var(--color-text-dark);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  background: var(--color-neutral-white);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
  background: var(--color-neutral-white);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary-dark);
  z-index: var(--z-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

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

.mobile-menu__link {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-text-light);
  padding: 0.75rem 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-base);
}

.mobile-menu.active .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu__link:hover {
  color: var(--color-primary-gold);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--color-primary-gold);
  color: var(--color-neutral-white);
  border-color: var(--color-primary-gold);
}

.btn--primary:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  color: var(--color-neutral-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--color-neutral-white);
  border-color: var(--color-neutral-white);
}

.btn--ghost:hover {
  background: var(--color-neutral-white);
  color: var(--color-primary-dark);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--color-primary-dark);
  color: var(--color-neutral-white);
  border-color: var(--color-primary-dark);
}

.btn--dark:hover {
  background: transparent;
  color: var(--color-primary-dark);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary-gold);
  border-color: var(--color-primary-gold);
}

.btn--outline:hover {
  background: var(--color-primary-gold);
  color: var(--color-neutral-white);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1.15rem 2.75rem;
  font-size: 0.9rem;
}

.btn--sm {
  padding: 0.65rem 1.5rem;
  font-size: 0.75rem;
}

.btn__arrow {
  transition: transform var(--transition-fast);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

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

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-overlay);
  z-index: -1;
}

.hero__content {
  text-align: center;
  padding: var(--space-xl) var(--section-px);
  max-width: 900px;
}

.hero__label {
  font-family: var(--font-accent);
  font-size: var(--fs-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-primary-gold);
  margin-bottom: var(--space-md);
  display: block;
}

.hero__title {
  font-size: var(--fs-hero);
  color: var(--color-neutral-white);
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 2s infinite;
}

.hero__scroll svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-neutral-white);
  opacity: 0.6;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* --- Page Hero (Internal Pages) --- */
.page-hero {
  position: relative;
  padding: 10rem 0 4rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-overlay-dark);
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--color-neutral-white);
  margin-bottom: var(--space-sm);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--fs-body);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--space-md);
  font-size: var(--fs-small);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

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

.breadcrumb span {
  color: var(--color-primary-gold);
}

/* --- Trust Bar / Marquee --- */
.trust-bar {
  background: var(--color-primary-dark);
  padding: 1rem 0;
  overflow: hidden;
}

.trust-bar__track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.trust-bar__item {
  font-family: var(--font-accent);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--color-primary-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-bar__dot {
  width: 6px;
  height: 6px;
  background: var(--color-primary-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Cards --- */
.card {
  background: var(--color-neutral-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card__image {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.card__body {
  padding: var(--space-md);
}

.card__title {
  font-size: var(--fs-h4);
  margin-bottom: var(--space-xs);
}

.card__text {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-accent);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-primary-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: var(--space-sm);
}

.card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.card__link:hover svg {
  transform: translateX(4px);
}

/* Dark card variant */
.card--dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card--dark:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary-gold);
}

.card--dark .card__title {
  color: var(--color-text-light);
}

.card--dark .card__text {
  color: rgba(255, 255, 255, 0.6);
}

/* Occasion/Overlay Card */
.card--overlay {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.card--overlay .card__image {
  aspect-ratio: 4 / 3;
  transition: transform var(--transition-slow);
}

.card--overlay:hover .card__image {
  transform: scale(1.08);
}

.card--overlay .card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  z-index: 1;
}

.card--overlay .card__title {
  color: var(--color-neutral-white);
  font-size: var(--fs-h4);
}

.card--overlay .card__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-small);
}

/* --- Icon Box --- */
.icon-box {
  text-align: center;
  padding: var(--space-lg);
}

.icon-box__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  color: var(--color-primary-gold);
}

.icon-box__icon svg {
  width: 100%;
  height: 100%;
}

.icon-box__title {
  font-size: var(--fs-h4);
  margin-bottom: var(--space-xs);
}

.icon-box__text {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* --- Process / Timeline --- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--color-border);
}

.process__step {
  text-align: center;
  position: relative;
}

.process__number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-primary-gold);
  color: var(--color-neutral-white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  position: relative;
  z-index: 1;
}

.process__title {
  font-size: var(--fs-h4);
  margin-bottom: var(--space-xs);
}

.process__text {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --- Counter / Stats --- */
.stats {
  position: relative;
  padding: var(--section-py) 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-overlay-dark);
}

.stats__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.stats__item {
  padding: var(--space-md);
}

.stats__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--color-primary-gold);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stats__label {
  font-family: var(--font-accent);
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- Testimonials --- */
.testimonial {
  background: var(--color-neutral-white);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.testimonial__stars {
  color: var(--color-primary-gold);
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  letter-spacing: 0.2em;
}

.testimonial__quote {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  font-style: italic;
  color: var(--color-text-dark);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.testimonial__author {
  font-family: var(--font-accent);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-text-dark);
}

.testimonial__occasion {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
}

/* --- CTA Section --- */
.cta-section {
  position: relative;
  padding: var(--section-py) 0;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-overlay);
}

.cta-section__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.cta-section__title {
  font-size: var(--fs-h2);
  color: var(--color-neutral-white);
  margin-bottom: var(--space-sm);
}

.cta-section__text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-lg);
  font-size: var(--fs-body);
}

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.gallery-grid__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-grid__item:hover img {
  transform: scale(1.1);
}

.gallery-grid__item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background var(--transition-base);
}

.gallery-grid__item:hover::after {
  background: rgba(0, 0, 0, 0.3);
}

/* Masonry variant */
.gallery-grid--masonry {
  gap: var(--space-sm);
}

.gallery-grid--masonry .gallery-grid__item {
  aspect-ratio: auto;
  border-radius: var(--radius-md);
}

.gallery-grid--masonry .gallery-grid__item:nth-child(3n+1) {
  grid-row: span 2;
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border: none;
  transition: background var(--transition-fast);
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }

/* --- Split / Alternating Content --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}

.split__image {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.split__content {
  padding: var(--space-lg) 0;
}

/* --- Feature List (Check marks) --- */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.feature-list__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--fs-body);
  padding: 0.75rem 0;
}

.feature-list__check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: var(--color-primary-gold);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* --- FAQ Accordion --- */
.accordion__item {
  border-bottom: 1px solid var(--color-border);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--color-text-dark);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
}

.accordion__icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  position: relative;
  transition: transform var(--transition-base);
}

.accordion__icon::before,
.accordion__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-primary-gold);
  transition: transform var(--transition-base);
}

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

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

.accordion__item.active .accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.accordion__content {
  padding: 0 0 1.25rem;
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* --- Contact Form --- */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-family: var(--font-accent);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: var(--space-xs);
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-body);
  color: var(--color-text-dark);
  background: var(--color-neutral-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary-gold);
  box-shadow: 0 0 0 3px rgba(200, 149, 108, 0.15);
}

.form-control::placeholder {
  color: var(--color-text-muted);
}

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

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--color-primary-gold);
}

.form-check label {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.form-message {
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: var(--fs-small);
  margin-top: var(--space-md);
  display: none;
}

.form-message--success {
  background: #e8f5e9;
  color: #2e7d32;
  display: block;
}

.form-message--error {
  background: #ffebee;
  color: #c62828;
  display: block;
}

/* --- Footer --- */
.footer {
  background: var(--color-primary-dark);
  color: var(--color-text-light);
  padding: var(--space-3xl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-neutral-white);
  margin-bottom: var(--space-md);
  display: block;
}

.footer__logo span {
  color: var(--color-primary-gold);
}

.footer__about {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

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

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  background: var(--color-primary-gold);
  border-color: var(--color-primary-gold);
  color: white;
}

.footer__heading {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-neutral-white);
  margin-bottom: var(--space-md);
}

.footer__links a {
  display: block;
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.6);
  padding: 0.3rem 0;
  transition: color var(--transition-fast);
}

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

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: var(--space-sm);
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.6);
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--color-primary-gold);
  margin-top: 2px;
}

.footer__contact-item a {
  color: rgba(255, 255, 255, 0.6);
}

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

.footer__bottom {
  padding: var(--space-md) 0;
  text-align: center;
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.4);
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--color-primary-gold);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: var(--z-back-to-top);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-gold-dark);
  transform: translateY(-3px);
}

/* --- Blog Cards --- */
.blog-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-neutral-white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-card__body {
  padding: var(--space-md);
}

.blog-card__category {
  font-family: var(--font-accent);
  font-size: var(--fs-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary-gold);
  margin-bottom: var(--space-xs);
  display: block;
}

.blog-card__title {
  font-size: var(--fs-h4);
  margin-bottom: var(--space-xs);
}

.blog-card__title a {
  color: var(--color-text-dark);
}

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

.blog-card__excerpt {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.blog-card__meta {
  font-size: var(--fs-label);
  color: var(--color-text-muted);
}

/* --- Filter Tabs --- */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
}

.filter-tab {
  font-family: var(--font-accent);
  font-size: var(--fs-small);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  color: var(--color-text-muted);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

/* --- Slider / Carousel --- */
.slider-container {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slider-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--color-neutral-white);
  border: none;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-dark);
  transition: all var(--transition-fast);
  z-index: 5;
}

.slider-nav:hover {
  background: var(--color-primary-gold);
  color: white;
}

.slider-prev { left: 1rem; }
.slider-next { right: 1rem; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--space-md);
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.slider-dot.active {
  background: var(--color-primary-gold);
  transform: scale(1.2);
}

/* --- Parallax Image --- */
.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  z-index: -1;
  will-change: transform;
}
