/*
Theme Name: CD Floral Co.
Theme URI: https://cdfloral.co
Author: CD Floral Co.
Description: A refined, editorial WordPress theme for CD Floral Co. — featuring botanical elegance, luxury typography, and a warm organic palette.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cd-floral
Tags: floral, botanical, luxury, editorial, one-page, portfolio
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  /* Colors */
  --cream:        #F5F0E8;
  --cream-dark:   #EDE5D8;
  --parchment:    #E8DED0;
  --forest:       #2C4A3E;
  --forest-light: #3D6455;
  --forest-pale:  #C8D9D4;
  --blush:        #D4A5A0;
  --blush-light:  #ECDBD9;
  --terra:        #8B6355;
  --gold:         #B8976A;
  --gold-light:   #D4B896;
  --ink:          #1A1A18;
  --ink-soft:     #3A3830;
  --ink-muted:    #6B6558;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Garamond', Georgia, serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;
  --font-accent:  'Cormorant', Georgia, serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;
  --space-2xl: 12rem;

  /* Layout */
  --max-width: 1320px;
  --gutter: clamp(1.5rem, 5vw, 4rem);
}

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

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

body {
  background-color: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 { font-size: clamp(3.5rem, 8vw, 7rem); }
h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h4 { font-size: clamp(1.3rem, 2vw, 1.8rem); }

p {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--ink-soft);
  max-width: 62ch;
}

.overline {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.lead {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 52ch;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--space-xl);
}

.section--large {
  padding-block: var(--space-2xl);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.btn:hover::before {
  transform: scaleX(1);
}

.btn--primary {
  background: var(--forest);
  color: var(--cream);
}

.btn--primary:hover {
  background: var(--forest-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 74, 62, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--forest);
}

.btn--outline:hover {
  background: var(--forest);
  color: var(--cream);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 240, 232, 0.5);
}

.btn--ghost:hover {
  background: rgba(245, 240, 232, 0.15);
  border-color: var(--cream);
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: all 0.4s ease;
}

.site-header.scrolled {
  background: rgba(245, 240, 232, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 0;
  box-shadow: 0 1px 0 rgba(44, 74, 62, 0.1);
}

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

.site-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
}

.site-logo__mark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--forest);
  line-height: 1;
}

.site-logo__tagline {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
  margin-top: 0.2rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.main-nav a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color 0.25s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: var(--forest);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 0.5rem;
  padding-left: 1.25rem;
  border-left: 1px solid rgba(26,26,24,0.12);
}

.site-header.scrolled .nav-social {
  border-left-color: rgba(44,74,62,0.2);
}

.nav-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--ink-muted);
  transition: color 0.25s ease, transform 0.2s ease;
}

.nav-social__link:hover {
  color: var(--forest);
  transform: scale(1.15);
}

/* On transparent hero header — icons show white */
.site-header:not(.scrolled) .nav-social {
  border-left-color: rgba(245,240,232,0.2);
}

.site-header:not(.scrolled) .nav-social__link {
  color: rgba(245,240,232,0.7);
}

.site-header:not(.scrolled) .nav-social__link:hover {
  color: var(--cream);
}

@media (max-width: 900px) {
  .nav-social {
    display: none; /* shown inside mobile overlay instead */
  }
}



/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

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

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--forest);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-color: var(--forest); /* fallback colour while image loads */
  transform: scale(1.05);
  transition: transform 8s ease;
  filter: brightness(0.55) saturate(0.8);
}

.hero.loaded .hero__bg {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 24, 0.65) 0%,
    rgba(44, 74, 62, 0.35) 60%,
    rgba(44, 74, 62, 0.1) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero__overline {
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero__title {
  color: var(--cream);
  margin-bottom: 2rem;
  animation: fadeUp 0.9s ease 0.4s both;
}

.hero__title em {
  font-style: italic;
  color: var(--blush-light);
}

.hero__desc {
  color: rgba(245, 240, 232, 0.8);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-style: italic;
  max-width: 50ch;
  margin-bottom: 3rem;
  animation: fadeUp 0.9s ease 0.6s both;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.9s ease 0.8s both;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245, 240, 232, 0.6);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.2s both;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(245,240,232,0.6), transparent);
  animation: scrollDrop 1.5s ease infinite;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: var(--forest);
  padding: 1rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 3rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest-pale);
}

.marquee-item::after {
  content: '✦';
  color: var(--gold);
  font-size: 0.5rem;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  background: var(--cream);
}

.about__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about__image-stack {
  position: relative;
  height: 580px;
}

.about__img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 90%;
  object-fit: cover;
  box-shadow: 16px 20px 60px rgba(44,74,62,0.18);
}

.about__img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48%;
  height: 55%;
  object-fit: cover;
  box-shadow: 8px 10px 30px rgba(44,74,62,0.15);
  border: 6px solid var(--cream);
}

.about__badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.3;
  box-shadow: 0 4px 20px rgba(184,151,106,0.4);
}

.about__content {
  padding-left: 2rem;
}

.about__content .overline {
  margin-bottom: 1rem;
  display: block;
}

.about__content h2 {
  margin-bottom: 1.5rem;
  color: var(--forest);
}

.about__content .lead {
  margin-bottom: 2rem;
}

.about__content p {
  margin-bottom: 1.5rem;
}

.about__signature {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--forest);
  margin-top: 2rem;
  border-top: 1px solid var(--parchment);
  padding-top: 1.5rem;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184,151,106,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.services__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.services__header .overline {
  color: var(--gold-light);
  margin-bottom: 1rem;
  display: block;
}

.services__header h2 {
  color: var(--cream);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(245,240,232,0.08);
}

.service-card {
  background: rgba(245,240,232,0.03);
  padding: 3rem 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--blush));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  background: rgba(245,240,232,0.07);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card__icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-card__num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(184,151,106,0.2);
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  line-height: 1;
}

.service-card h3 {
  color: var(--cream);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--forest-pale);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: none;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: gap 0.3s ease;
}

.service-card__link:hover {
  gap: 1rem;
}

/* ============================================================
   PORTFOLIO / GALLERY
   ============================================================ */
.portfolio {
  background: var(--cream-dark);
}

.portfolio__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  gap: 2rem;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.portfolio-item:nth-child(2) { grid-column: span 4; }
.portfolio-item:nth-child(3) { grid-column: span 3; }
.portfolio-item:nth-child(4) { grid-column: span 4; }
.portfolio-item:nth-child(5) { grid-column: span 3; }
.portfolio-item:nth-child(6) { grid-column: span 7; }

.portfolio-item__img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-item__img {
  transform: scale(1.06);
}

.portfolio-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,24,0.75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

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

.portfolio-item__label {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process {
  background: var(--cream);
}

.process__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

.process__header .overline {
  margin-bottom: 1rem;
  display: block;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, var(--forest-pale), var(--gold), var(--forest-pale));
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.process-step__num {
  width: 5rem;
  height: 5rem;
  background: var(--cream);
  border: 1px solid var(--forest-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--forest);
  transition: all 0.3s ease;
}

.process-step:hover .process-step__num {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
  box-shadow: 0 8px 24px rgba(44,74,62,0.25);
}

.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--forest);
}

.process-step p {
  font-size: 0.85rem;
  color: var(--ink-muted);
  max-width: none;
  margin: 0 auto;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--parchment);
  overflow: hidden;
}

.testimonials__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.testimonials__header .overline {
  margin-bottom: 1rem;
  display: block;
}

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

.testimonial-card {
  background: var(--cream);
  padding: 2.5rem;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  left: 2rem;
  line-height: 1;
}

.testimonial-card__stars {
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}

.testimonial-card__text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  max-width: none;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--forest-pale);
}

.testimonial-card__name {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--forest);
}

.testimonial-card__event {
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin-top: 0.1rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--forest);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-section::before {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184,151,106,0.1) 0%, transparent 70%);
  top: -200px;
  left: -100px;
}

.cta-section::after {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,165,160,0.08) 0%, transparent 70%);
  bottom: -100px;
  right: -50px;
}

.cta-section .overline {
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  display: block;
}

.cta-section h2 {
  color: var(--cream);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.cta-section .lead {
  color: var(--forest-pale);
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}

.cta-section__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============================================================
   FOOTER SOCIAL BAR
   ============================================================ */
.footer-social-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(245,240,232,0.1);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.footer-social-bar__text p {
  color: rgba(245,240,232,0.55);
  font-size: 0.9rem;
  margin-top: 0.4rem;
  max-width: none;
}

.footer-social-bar__links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  border: 1px solid rgba(245,240,232,0.2);
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all 0.3s ease;
  min-height: 48px;
}

.social-pill:hover {
  transform: translateY(-2px);
}

.social-pill--instagram:hover {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  border-color: transparent;
}

.social-pill--tiktok:hover {
  background: #010101;
  border-color: #010101;
}

.social-pill__handle {
  font-size: 0.72rem;
  opacity: 0.6;
  letter-spacing: 0.04em;
}

.footer-icon-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(245,240,232,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,240,232,0.6);
  transition: all 0.3s ease;
  min-height: 40px;
}

.footer-icon-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--cream);
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(245,240,232,0.55) !important;
  text-decoration: none;
  transition: color 0.25s ease;
  min-height: 36px;
}

.footer-social-link:hover {
  color: var(--cream) !important;
}

@media (max-width: 640px) {
  .footer-social-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-social-bar__links {
    width: 100%;
  }

  .social-pill {
    flex: 1;
    justify-content: center;
  }
}


.site-footer {
  background: var(--ink);
  color: rgba(245,240,232,0.7);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(245,240,232,0.08);
  margin-bottom: var(--space-md);
}

.footer-brand .site-logo__mark {
  color: var(--cream);
  font-size: 2rem;
  margin-bottom: 0.3rem;
}

.footer-brand .site-logo__tagline {
  margin-bottom: 1.5rem;
  display: block;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.55);
  max-width: 30ch;
  line-height: 1.7;
}

.footer-brand__social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.footer-brand__social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(245,240,232,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(245,240,232,0.6);
  transition: all 0.3s ease;
}

.footer-brand__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--cream);
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.55);
  transition: color 0.25s ease;
}

.footer-col ul a:hover {
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.35);
  max-width: none;
}

/* ============================================================
   WORDPRESS SPECIFIC CLASSES
   ============================================================ */
.wp-block-image img {
  max-width: 100%;
  height: auto;
}

.entry-content > * + * {
  margin-top: 1.5rem;
}

.entry-content h2,
.entry-content h3 {
  margin-top: 2.5rem;
}

.entry-content a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes scrollDrop {
  0%, 100% { transform: translateY(0); opacity: 1; }
  100%     { transform: translateY(10px); opacity: 0; }
}

.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; }

/* ============================================================
   SPLIT SECTIONS (WEDDINGS & EVENTS)
   ============================================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.split-section--dark {
  background: var(--forest);
}

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

.split-section--reversed .split-section__image {
  order: 2;
}

.split-section--reversed .split-section__content {
  order: 1;
}

.split-section__image {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.split-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.split-section__image:hover img {
  transform: scale(1.04);
}

.split-section__image-tag {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: var(--gold);
  color: var(--cream);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
}

/* Placeholder bg when no image */
.split-section__image:not(:has(img[src*="jpg"])) {
  background: var(--forest-light);
}

.split-section__content {
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-section--dark .split-section__content h2 {
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.split-section--light .split-section__content h2 {
  color: var(--forest);
  margin-bottom: 1.5rem;
}

/* ============================================================
   OFFERING LIST (WEDDING INCLUSIONS)
   ============================================================ */
.offering-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(200, 217, 212, 0.2);
}

.offering-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--forest-pale);
  line-height: 1.5;
}

.offering-check {
  color: var(--gold);
  font-size: 0.55rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

/* ============================================================
   EVENT TYPE CARDS
   ============================================================ */
.event-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.event-type-card {
  background: var(--cream-dark);
  padding: 1.4rem 1.6rem;
  border-left: 2px solid var(--gold);
  transition: all 0.3s ease;
}

.event-type-card:hover {
  background: var(--parchment);
  transform: translateX(4px);
}

.event-type-card h3 {
  font-size: 1rem;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.event-type-card p {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.6;
  max-width: none;
}

/* ============================================================
   ACCESSIBILITY & SEO
   ============================================================ */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--forest);
  color: var(--cream);
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s ease;
}

.skip-to-content:focus {
  top: 1rem;
}

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


.form-success-msg {
  display: none;
  background: rgba(245,240,232,0.1);
  border: 1px solid var(--gold);
  padding: 1.5rem 2rem;
  color: var(--cream);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.inquiry-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.inquiry-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.inquiry-form-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest-pale);
}

.inquiry-input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(245,240,232,0.08);
  border: 1px solid rgba(245,240,232,0.2);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.inquiry-input:focus {
  border-color: rgba(245,240,232,0.5);
}

.inquiry-input::placeholder {
  color: rgba(245,240,232,0.35);
}

.inquiry-select {
  cursor: pointer;
}

.inquiry-date {
  color-scheme: dark;
}

.inquiry-textarea {
  resize: vertical;
  line-height: 1.6;
  min-height: 130px;
}

.inquiry-submit {
  width: 100%;
  justify-content: center;
  font-size: 0.75rem;
}

/* ============================================================
   RESPONSIVE — SPLIT SECTIONS
   ============================================================ */
@media (max-width: 1000px) {
  .split-section {
    grid-template-columns: 1fr;
  }

  .split-section--reversed .split-section__image {
    order: 0;
  }

  .split-section--reversed .split-section__content {
    order: 0;
  }

  .split-section__content {
    padding: var(--space-lg) var(--gutter);
  }

  .split-section__image {
    min-height: 360px;
  }

  .offering-list {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   RESPONSIVE — TABLET (≤1100px)
   ============================================================ */
@media (max-width: 1100px) {
  .services__grid,
  .testimonials__track {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
}

/* ============================================================
   RESPONSIVE — TABLET PORTRAIT (≤900px)
   ============================================================ */
@media (max-width: 900px) {
  .about__layout {
    grid-template-columns: 1fr;
  }
  .about__image-stack {
    height: 420px;
  }
  .about__content {
    padding-left: 0;
  }
  .process__steps {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
  .process__steps::before {
    display: none;
  }
  .portfolio__grid {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .portfolio__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 150;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a {
    font-size: 1.1rem;
  }
  .menu-toggle {
    display: flex;
    z-index: 200;
  }
  /* Show social icons in mobile overlay */
  .main-nav .nav-social {
    display: flex;
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    margin-top: 1rem;
    gap: 1.5rem;
  }
  .main-nav .nav-social__link {
    width: 48px;
    height: 48px;
    border: 1px solid var(--forest-pale);
    color: var(--forest);
  }
  .main-nav .nav-social__link:hover {
    background: var(--forest);
    color: var(--cream);
    border-color: var(--forest);
  }
  /* Override transparent-header rules inside open mobile nav */
  .site-header:not(.scrolled) .main-nav.open .nav-social__link {
    color: var(--forest);
  }
  .site-header:not(.scrolled) .main-nav.open a {
    color: var(--ink);
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤640px)
   ============================================================ */
@media (max-width: 640px) {

  /* --- Base spacing --- */
  :root {
    --space-xl:  4rem;
    --space-2xl: 6rem;
  }

  .section {
    padding-block: 3rem;
  }

  /* --- Hero --- */
  .hero {
    min-height: 100svh; /* avoids address bar jumping */
    min-height: 100vh;  /* fallback */
    align-items: flex-end;
    padding-bottom: 4rem;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__title {
    font-size: clamp(3rem, 12vw, 4.5rem);
  }

  .hero__desc {
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    text-align: center;
    justify-content: center;
  }

  /* --- Nav mobile overlay --- */
  .main-nav a {
    font-size: 1.3rem;
    padding: 0.5rem 1rem;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 1rem;
    width: 80%;
    text-align: center;
    justify-content: center;
  }

  /* --- About --- */
  .about__image-stack {
    height: 300px;
  }

  .about__img-main {
    width: 80%;
    height: 85%;
  }

  .about__img-accent {
    width: 52%;
    height: 50%;
  }

  .about__badge {
    width: 70px;
    height: 70px;
    font-size: 0.65rem;
  }

  /* --- Split sections (weddings/events) --- */
  .split-section__image {
    min-height: 280px;
  }

  .split-section__content {
    padding: 2.5rem var(--gutter);
  }

  .offering-list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .event-types {
    grid-template-columns: 1fr;
  }

  /* --- Portfolio --- */
  .services__grid,
  .testimonials__track {
    grid-template-columns: 1fr;
  }

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

  .portfolio-item__img {
    min-height: 240px;
  }

  /* --- Process --- */
  .process__steps {
    grid-template-columns: 1fr;
  }

  /* --- Testimonials --- */
  .testimonial-card {
    padding: 2rem 1.5rem;
  }

  /* --- Contact form --- */
  .inquiry-form-row {
    grid-template-columns: 1fr !important;
  }

  .cta-section {
    padding-block: 3.5rem;
  }

  .cta-section__actions {
    flex-direction: column;
    align-items: center;
  }

  /* --- Footer --- */
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  /* --- Typography scale --- */
  h1 { font-size: clamp(2.8rem, 11vw, 4rem); }
  h2 { font-size: clamp(2rem,  9vw, 3rem);  }
  h3 { font-size: clamp(1.5rem, 6vw, 2rem); }

  .lead {
    font-size: clamp(1rem, 4vw, 1.2rem);
  }

  /* Overline labels — bump up slightly for readability */
  .overline {
    font-size: 0.7rem;
  }

  /* --- Touch targets --- */
  .btn {
    padding: 1rem 2rem;
    min-height: 48px;
  }

  input, select, textarea {
    font-size: 1rem !important; /* prevent iOS zoom on focus */
    min-height: 48px;
  }

  textarea {
    min-height: 120px;
  }

  /* --- Marquee strip --- */
  .marquee-item {
    font-size: 0.65rem;
    padding-right: 16px;
  }

  /* --- Service cards --- */
  .service-card {
    padding: 2rem 1.5rem;
  }

  /* --- Process step numbers --- */
  .process-step__num {
    width: 4rem;
    height: 4rem;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤390px)
   ============================================================ */
@media (max-width: 390px) {
  .hero__title {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2rem;
  }

  .about__image-stack {
    height: 260px;
  }

  .split-section__image {
    min-height: 240px;
  }

  .site-logo__mark {
    font-size: 1.2rem;
  }
}
