/* ==========================================================================
   NEAN'S FLORIST — Design System & Global Styles
   Premium, warm, conversion-focused design for local florist
   ========================================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties (Design Tokens) ---------- */
:root {
  /* Brand Colors */
  --clr-sage: #8A9A7B;
  --clr-sage-light: #B5C4A8;
  --clr-sage-dark: #6B7D5E;
  --clr-cream: #FAF7F2;
  --clr-cream-dark: #F0EBE1;
  --clr-blush: #E8B4B8;
  --clr-blush-light: #F2D5D7;
  --clr-blush-dark: #D4929A;
  --clr-gold: #C9A96E;
  --clr-gold-light: #DBBF8A;
  --clr-gold-dark: #A88A4F;
  --clr-charcoal: #2C2C2C;
  --clr-charcoal-light: #4A4A4A;
  --clr-warm-white: #FFFDF9;
  --clr-overlay: rgba(30, 25, 20, 0.55);
  --clr-overlay-light: rgba(30, 25, 20, 0.35);

  /* Functional Colors */
  --clr-primary: var(--clr-sage);
  --clr-primary-hover: var(--clr-sage-dark);
  --clr-secondary: var(--clr-gold);
  --clr-secondary-hover: var(--clr-gold-dark);
  --clr-accent: var(--clr-blush);
  --clr-bg: var(--clr-warm-white);
  --clr-bg-alt: var(--clr-cream);
  --clr-text: var(--clr-charcoal);
  --clr-text-muted: #6B6B6B;
  --clr-text-light: #FFFFFF;
  --clr-border: #E5E0D8;
  --clr-success: #5A9E6F;
  --clr-error: #D4545B;

  /* Typography */
  --ff-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --fs-display: clamp(2.5rem, 5vw, 4rem);
  --fs-h1: clamp(2rem, 4vw, 3rem);
  --fs-h2: clamp(1.6rem, 3vw, 2.25rem);
  --fs-h3: clamp(1.25rem, 2.5vw, 1.75rem);
  --fs-h4: clamp(1.1rem, 2vw, 1.35rem);
  --fs-body: 1rem;
  --fs-body-lg: 1.125rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;

  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --lh-heading: 1.25;
  --lh-body: 1.7;

  /* Spacing */
  --sp-xs: 0.25rem;
  --sp-sm: 0.5rem;
  --sp-md: 1rem;
  --sp-lg: 1.5rem;
  --sp-xl: 2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 4rem;
  --sp-4xl: 6rem;
  --sp-section: clamp(4rem, 8vw, 7rem);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.06);
  --shadow-glow: 0 0 20px rgba(201, 169, 110, 0.25);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-spring: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 900px;
  --header-height: 80px;
  --banner-height: 40px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--clr-text);
  background-color: var(--clr-bg);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-heading);
  color: var(--clr-text);
}

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: var(--sp-md);
  color: var(--clr-text-muted);
}

.section-lead {
  font-size: var(--fs-body-lg);
  color: var(--clr-text-muted);
  max-width: 650px;
  margin: 0 auto var(--sp-2xl);
  text-align: center;
}

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

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

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

.section--alt {
  background-color: var(--clr-bg-alt);
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  padding: 0.85rem 2rem;
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

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

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background-color: var(--clr-sage);
  color: var(--clr-text-light);
  border-color: var(--clr-sage);
}

.btn--primary:hover {
  background-color: var(--clr-sage-dark);
  border-color: var(--clr-sage-dark);
}

.btn--secondary {
  background-color: var(--clr-gold);
  color: var(--clr-text-light);
  border-color: var(--clr-gold);
}

.btn--secondary:hover {
  background-color: var(--clr-gold-dark);
  border-color: var(--clr-gold-dark);
}

.btn--outline {
  background-color: transparent;
  color: var(--clr-text-light);
  border-color: var(--clr-text-light);
}

.btn--outline:hover {
  background-color: var(--clr-text-light);
  color: var(--clr-text);
}

.btn--outline-dark {
  background-color: transparent;
  color: var(--clr-text);
  border-color: var(--clr-text);
}

.btn--outline-dark:hover {
  background-color: var(--clr-text);
  color: var(--clr-text-light);
}

.btn--ghost {
  background: transparent;
  color: var(--clr-sage);
  border-color: transparent;
  padding: 0.85rem 1rem;
}

.btn--ghost:hover {
  background: rgba(138, 154, 123, 0.1);
  box-shadow: none;
  transform: none;
}

.btn--sm {
  padding: 0.6rem 1.4rem;
  font-size: var(--fs-small);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: var(--fs-body-lg);
}

.btn-group {
  display: flex;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

/* ---------- Top Banner ---------- */
.top-banner {
  background: linear-gradient(135deg, var(--clr-sage-dark), var(--clr-sage));
  color: var(--clr-text-light);
  text-align: center;
  padding: var(--sp-sm) var(--sp-md);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1001;
}

.top-banner__icon {
  margin-right: var(--sp-xs);
}

/* ---------- Header / Navbar ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  transition: box-shadow var(--transition-base);
}

.header--scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  text-decoration: none;
}

.header__logo-icon {
  font-size: 1.75rem;
}

.header__logo-text {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  color: var(--clr-sage-dark);
  letter-spacing: -0.01em;
}

.header__logo-sub {
  display: block;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-regular);
  color: var(--clr-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: -2px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--sp-2xl);
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
}

.header__nav-link {
  padding: var(--sp-sm) var(--sp-md);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--clr-text-muted);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  position: relative;
}

.header__nav-link:hover,
.header__nav-link--active {
  color: var(--clr-sage-dark);
  background: rgba(138, 154, 123, 0.08);
}

.header__nav-link--active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--clr-sage);
  border-radius: var(--radius-full);
}

.header__cta-group {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

/* Mobile Menu Toggle */
.header__menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-sm);
  color: var(--clr-text);
  font-size: 1.5rem;
}

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

.hero--full {
  min-height: 90vh;
}

.hero--short {
  min-height: 50vh;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 25, 20, 0.65), rgba(30, 25, 20, 0.35));
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: var(--sp-4xl) 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: var(--sp-sm) var(--sp-lg);
  border-radius: var(--radius-full);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--clr-text-light);
  margin-bottom: var(--sp-xl);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero__title {
  font-size: var(--fs-display);
  color: var(--clr-text-light);
  margin-bottom: var(--sp-lg);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero__desc {
  font-size: var(--fs-body-lg);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--sp-2xl);
  max-width: 580px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero__actions {
  display: flex;
  gap: var(--sp-md);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero__trust {
  display: flex;
  gap: var(--sp-2xl);
  margin-top: var(--sp-3xl);
  padding-top: var(--sp-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  animation: fadeInUp 0.8s ease 1s both;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.8);
}

.hero__trust-icon {
  color: var(--clr-gold-light);
  font-size: 1.1rem;
}

/* ---------- Section Header ---------- */
.section-header {
  text-align: center;
  margin-bottom: var(--sp-3xl);
}

.section-header__label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--clr-sage);
  margin-bottom: var(--sp-sm);
}

.section-header__title {
  margin-bottom: var(--sp-md);
}

.section-header__line {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-sage), var(--clr-gold));
  border-radius: var(--radius-full);
  margin: var(--sp-md) auto 0;
}

/* ---------- Service Cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
}

.service-card {
  background: var(--clr-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--clr-border);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--clr-sage-light);
}

.service-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.service-card__image-wrap {
  overflow: hidden;
  position: relative;
}

.service-card__body {
  padding: var(--sp-lg);
}

.service-card__title {
  font-size: var(--fs-h4);
  margin-bottom: var(--sp-sm);
}

.service-card__text {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-md);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--clr-sage);
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.service-card__link:hover {
  color: var(--clr-sage-dark);
  gap: var(--sp-sm);
}

.service-card__link-arrow {
  transition: transform var(--transition-fast);
}

.service-card__link:hover .service-card__link-arrow {
  transform: translateX(4px);
}

/* ---------- Welcome / About Section ---------- */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
}

.welcome__text h2 {
  margin-bottom: var(--sp-lg);
}

.welcome__text p {
  margin-bottom: var(--sp-md);
  line-height: 1.8;
}

.welcome__image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.welcome__image-wrap:hover img {
  transform: scale(1.03);
}

.welcome__image-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-lg);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--clr-text-light);
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: var(--fs-body-lg);
}

/* ---------- Testimonials ---------- */
.testimonials {
  text-align: center;
}

.testimonial-slider {
  max-width: 750px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-3xl) var(--sp-2xl);
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: var(--sp-lg);
  left: var(--sp-xl);
  font-family: var(--ff-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--clr-sage-light);
  opacity: 0.5;
}

.testimonial__stars {
  color: var(--clr-gold);
  font-size: 1.25rem;
  margin-bottom: var(--sp-lg);
  letter-spacing: 0.1em;
}

.testimonial__text {
  font-size: var(--fs-body-lg);
  font-style: italic;
  line-height: 1.9;
  color: var(--clr-text);
  margin-bottom: var(--sp-xl);
}

.testimonial__author {
  font-weight: var(--fw-semibold);
  color: var(--clr-sage-dark);
  font-size: var(--fs-body);
}

.testimonial__location {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
  margin-top: var(--sp-xs);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: var(--sp-sm);
  margin-top: var(--sp-xl);
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--clr-border);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonial-dot--active {
  background: var(--clr-sage);
  width: 28px;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--clr-sage-dark), var(--clr-sage));
  color: var(--clr-text-light);
  text-align: center;
  padding: var(--sp-3xl) var(--sp-xl);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.cta-banner--full {
  border-radius: 0;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent);
  border-radius: 50%;
}

.cta-banner h2,
.cta-banner h3 {
  color: var(--clr-text-light);
  margin-bottom: var(--sp-md);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto var(--sp-xl);
}

/* ---------- Alternating Rows (Services Page) ---------- */
.alt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
  padding: var(--sp-3xl) 0;
}

.alt-row:not(:last-child) {
  border-bottom: 1px solid var(--clr-border);
}

.alt-row--reverse {
  direction: rtl;
}

.alt-row--reverse > * {
  direction: ltr;
}

.alt-row__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.alt-row__image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.alt-row__image:hover img {
  transform: scale(1.03);
}

.alt-row__content h2 {
  margin-bottom: var(--sp-md);
}

.alt-row__content p {
  margin-bottom: var(--sp-md);
  line-height: 1.8;
}

.alt-row__list {
  margin-bottom: var(--sp-xl);
}

.alt-row__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-sm);
  color: var(--clr-text-muted);
  font-size: var(--fs-body);
}

.alt-row__list li::before {
  content: '✓';
  color: var(--clr-sage);
  font-weight: var(--fw-bold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Process Steps ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
}

.process-step {
  text-align: center;
  padding: var(--sp-2xl) var(--sp-lg);
  background: var(--clr-bg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--clr-border);
  transition: all var(--transition-base);
  position: relative;
}

.process-step:hover {
  border-color: var(--clr-sage-light);
  box-shadow: var(--shadow-md);
}

.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--clr-sage), var(--clr-sage-dark));
  color: var(--clr-text-light);
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-lg);
}

.process-step__icon {
  font-size: 2rem;
  margin-bottom: var(--sp-md);
}

.process-step__title {
  font-size: var(--fs-h4);
  margin-bottom: var(--sp-sm);
}

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

/* ---------- Gallery Grid ---------- */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  margin-bottom: var(--sp-2xl);
}

.gallery-filter-btn {
  padding: var(--sp-sm) var(--sp-lg);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--clr-text-muted);
  background: transparent;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gallery-filter-btn:hover {
  color: var(--clr-sage);
  border-color: var(--clr-sage);
}

.gallery-filter-btn--active {
  background: var(--clr-sage);
  color: var(--clr-text-light);
  border-color: var(--clr-sage);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

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

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

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(30, 25, 20, 0.75));
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-lg);
}

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

.gallery-item__title {
  color: var(--clr-text-light);
  font-family: var(--ff-heading);
  font-size: var(--fs-body-lg);
  margin-bottom: var(--sp-xs);
}

.gallery-item__tag {
  color: var(--clr-gold-light);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.lightbox--open {
  opacity: 1;
  visibility: visible;
}

.lightbox__content {
  max-width: 90%;
  max-height: 90vh;
  position: relative;
}

.lightbox__content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.lightbox__close {
  position: absolute;
  top: var(--sp-xl);
  right: var(--sp-xl);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
  z-index: 10;
}

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

.lightbox__caption {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  margin-top: var(--sp-lg);
  font-size: var(--fs-body-lg);
}

.lightbox__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  color: var(--clr-gold-light);
  font-weight: var(--fw-semibold);
  margin-top: var(--sp-sm);
}

/* ---------- Contact / Forms ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
}

.contact-info-block {
  margin-bottom: var(--sp-2xl);
}

.contact-info-block__icon {
  font-size: 1.5rem;
  margin-bottom: var(--sp-sm);
}

.contact-info-block__label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-sage);
  margin-bottom: var(--sp-xs);
}

.contact-info-block__value {
  font-size: var(--fs-body-lg);
  color: var(--clr-text);
  font-weight: var(--fw-medium);
}

.contact-info-block__hint {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
  margin-top: var(--sp-xs);
}

.form {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-2xl);
  box-shadow: var(--shadow-md);
}

.form__group {
  margin-bottom: var(--sp-lg);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
}

.form__label {
  display: block;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--clr-text);
  margin-bottom: var(--sp-xs);
}

.form__label--required::after {
  content: ' *';
  color: var(--clr-error);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: var(--fs-body);
  color: var(--clr-text);
  background: var(--clr-cream);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  outline: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--clr-sage);
  box-shadow: 0 0 0 3px rgba(138, 154, 123, 0.15);
  background: var(--clr-bg);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__submit {
  width: 100%;
  margin-top: var(--sp-md);
}

/* ---------- Map Container ---------- */
.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- Why Choose Us / Features Grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-xl);
}

.feature-item {
  text-align: center;
  padding: var(--sp-2xl) var(--sp-lg);
  border-radius: var(--radius-xl);
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  transition: all var(--transition-base);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-sage-light);
}

.feature-item__icon {
  font-size: 2.5rem;
  margin-bottom: var(--sp-md);
}

.feature-item__title {
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-xs);
}

.feature-item__text {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
  margin-bottom: 0;
}

/* ---------- Wedding Page Specifics ---------- */
.wedding-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-xl);
}

.wedding-feature-card {
  text-align: center;
  padding: var(--sp-xl);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  transition: all var(--transition-base);
}

.wedding-feature-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-blush);
}

.wedding-feature-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: var(--sp-lg);
}

.wedding-feature-card__title {
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-sm);
}

.wedding-feature-card__text {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--clr-charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--sp-4xl) 0 var(--sp-xl);
}

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

.footer__brand-name {
  font-family: var(--ff-heading);
  font-size: 1.35rem;
  color: var(--clr-text-light);
  margin-bottom: var(--sp-sm);
}

.footer__brand-desc {
  font-size: var(--fs-small);
  line-height: 1.7;
  margin-bottom: var(--sp-lg);
  color: rgba(255, 255, 255, 0.5);
}

.footer__abn {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.35);
}

.footer__heading {
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-text-light);
  margin-bottom: var(--sp-lg);
}

.footer__links li {
  margin-bottom: var(--sp-sm);
}

.footer__links a {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

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

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-md);
  font-size: var(--fs-small);
}

.footer__contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__hours-table {
  font-size: var(--fs-small);
}

.footer__hours-table tr td {
  padding: var(--sp-xs) 0;
}

.footer__hours-table tr td:first-child {
  padding-right: var(--sp-xl);
  color: rgba(255, 255, 255, 0.5);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-xl);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.35);
}

.footer__bottom-links {
  display: flex;
  gap: var(--sp-lg);
}

.footer__bottom-links a {
  color: rgba(255, 255, 255, 0.35);
}

.footer__bottom-links a:hover {
  color: var(--clr-gold-light);
}

/* ---------- Mobile CTA (Phone Sticky) ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--clr-sage-dark);
  color: var(--clr-text-light);
  padding: var(--sp-md) var(--sp-xl);
}

.mobile-cta__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-body-lg);
}

.mobile-cta a {
  color: var(--clr-text-light);
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Intersection Observer Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

/* ---------- Page-Specific: Wedding ---------- */
.wedding-hero-overlay {
  background: linear-gradient(135deg, rgba(90, 60, 40, 0.5), rgba(30, 25, 20, 0.4));
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--clr-bg);
    flex-direction: column;
    justify-content: flex-start;
    padding: 6rem var(--sp-xl) var(--sp-xl);
    box-shadow: var(--shadow-xl);
    transition: right var(--transition-base);
    z-index: 1001;
  }

  .header__nav--open {
    right: 0;
  }

  .header__nav-list {
    flex-direction: column;
    gap: var(--sp-sm);
    width: 100%;
  }

  .header__nav-link {
    display: block;
    width: 100%;
    padding: var(--sp-md);
    font-size: var(--fs-body);
    border-radius: var(--radius-md);
  }

  .header__cta-group {
    flex-direction: column;
    width: 100%;
    margin-top: var(--sp-xl);
  }

  .header__cta-group .btn {
    width: 100%;
    justify-content: center;
  }

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

  /* Mobile Menu Overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }

  .nav-overlay--open {
    display: block;
  }

  .hero {
    min-height: 70vh;
  }

  .hero__trust {
    flex-direction: column;
    gap: var(--sp-md);
  }

  .welcome-grid,
  .alt-row,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .alt-row--reverse {
    direction: ltr;
  }

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

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

  .features-grid,
  .wedding-features {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-2xl);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--sp-md);
  }

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

  .mobile-cta {
    display: block;
  }

  body {
    padding-bottom: 60px;
  }

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

  .btn-group .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .wedding-features {
    grid-template-columns: 1fr;
  }

  .hero__content {
    padding: var(--sp-2xl) 0;
  }

  .gallery-filters {
    overflow-x: auto;
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding-bottom: var(--sp-sm);
  }

  .gallery-filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }
}
