/* ============================================
   KENMAR FLOWER FARM — Design System
   Aesthetic: Botanical Editorial
   ============================================ */

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

/* --- CSS Custom Properties --- */
:root {
  /* Primary Palette */
  --green-darkest: #0B2618;
  --green-deep: #14432A;
  --green-forest: #1B5E3A;
  --green-mid: #2D7A4F;
  --green-light: #A8D5BA;
  --green-tint: #E8F5ED;

  /* Gold Palette */
  --gold-deep: #8B6914;
  --gold: #B8860B;
  --gold-warm: #C9A227;
  --gold-light: #E8D48B;
  --gold-tint: #FBF5E6;

  /* Neutrals */
  --cream: #FDF8F0;
  --cream-dark: #F5EDE0;
  --parchment: #FAF6EE;
  --charcoal: #2C2C2E;
  --charcoal-light: #4A4A4C;
  --gray-warm: #8E8B82;
  --gray-light: #D4D0C8;
  --white: #FFFFFF;

  /* Accents */
  --rose: #C4847A;
  --rose-light: #E8C4BC;
  --lavender: #9B8EC4;

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

  /* 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;

  /* Layout */
  --max-width: 1280px;
  --max-width-narrow: 900px;
  --border-radius: 4px;
  --border-radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(11, 38, 24, 0.06);
  --shadow-md: 0 4px 20px rgba(11, 38, 24, 0.08);
  --shadow-lg: 0 8px 40px rgba(11, 38, 24, 0.12);
  --shadow-gold: 0 4px 20px rgba(184, 134, 11, 0.15);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

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

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

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--green-darkest);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
}

h5 {
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font-accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

p {
  margin-bottom: 1em;
  max-width: 70ch;
}

.text-gold { color: var(--gold); }
.text-green { color: var(--green-forest); }
.text-accent {
  font-family: var(--font-accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--gold);
}

/* --- Decorative Elements --- */
.botanical-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: var(--space-lg) 0;
}

.botanical-divider::before,
.botanical-divider::after {
  content: '';
  height: 1px;
  flex: 1;
  max-width: 120px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.botanical-divider svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
  opacity: 0.7;
}

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

.gold-rule {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border: none;
  margin: var(--space-md) 0;
}

.gold-rule--center {
  margin-left: auto;
  margin-right: auto;
}

/* --- Backgrounds & Textures --- */
.bg-cream { background-color: var(--cream); }
.bg-parchment { background-color: var(--parchment); }
.bg-green-dark { background-color: var(--green-darkest); color: var(--cream); }
.bg-green-tint { background-color: var(--green-tint); }
.bg-gold-tint { background-color: var(--gold-tint); }

.bg-texture {
  position: relative;
}

.bg-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Grain overlay for hero sections */
.grain-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* --- Layout Utilities --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

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

.section--large {
  padding: var(--space-3xl) 0;
}

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

.flex {
  display: flex;
}

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

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

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.nav--scrolled {
  background-color: rgba(253, 248, 240, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height var(--transition-smooth);
}

.nav--scrolled .nav__inner {
  height: 64px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__logo-img {
  display: none;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.1;
  transition: color var(--transition-smooth);
}

.nav--scrolled .nav__logo-text {
  color: var(--green-darkest);
}

.nav__logo-text small {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 400;
  margin-top: 3px;
  transition: color var(--transition-smooth);
}

.nav--scrolled .nav__logo-text small {
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1rem;
  position: relative;
  transition: color var(--transition-smooth);
}

.nav--scrolled .nav__link {
  color: var(--charcoal);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-smooth);
}

.nav__link:hover,
.nav__link--active {
  color: var(--white);
}

.nav--scrolled .nav__link:hover,
.nav--scrolled .nav__link--active {
  color: var(--green-forest);
}

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

.nav__cta {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-darkest);
  background: var(--gold);
  padding: 0.7rem 1.6rem;
  border-radius: 2px;
  margin-left: 0.5rem;
  transition: all var(--transition-smooth);
}

.nav__cta:hover {
  background: var(--gold-warm);
  color: var(--green-darkest);
  transform: translateY(-1px);
}

.nav--scrolled .nav__cta {
  background: var(--green-forest);
  color: var(--white);
}

.nav--scrolled .nav__cta:hover {
  background: var(--green-deep);
  color: var(--white);
}

/* Mobile Nav Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 1001;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-fast);
}

.nav--scrolled .nav__toggle span {
  background: var(--charcoal);
}

.nav__toggle--open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle--open span:nth-child(2) {
  opacity: 0;
}

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

/* Mobile Menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.nav__mobile--open {
  display: flex;
}

.nav__mobile .nav__link {
  font-size: 1.2rem;
  padding: 0.75rem 2rem;
}

/* --- Hero Sections --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--green-darkest);
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  transition: transform 8s ease-out;
}

.hero:hover .hero__bg {
  transform: scale(1.03);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 38, 24, 0.4) 0%,
    rgba(11, 38, 24, 0.7) 50%,
    rgba(11, 38, 24, 0.85) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  max-width: 800px;
}

.hero__label {
  font-family: var(--font-accent);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--gold-light);
  margin-bottom: var(--space-md);
  display: block;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

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

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--green-light);
  max-width: 580px;
  margin: 0 auto var(--space-lg);
  line-height: 1.8;
}

.hero__cta-group {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.95rem 2.2rem;
  border-radius: 2px;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gold);
  color: var(--green-darkest);
}

.btn--primary:hover {
  background: var(--gold-warm);
  color: var(--green-darkest);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

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

.btn--outline:hover {
  background: rgba(201, 162, 39, 0.1);
  color: var(--gold-light);
}

.btn--green {
  background: var(--green-forest);
  color: var(--white);
}

.btn--green:hover {
  background: var(--green-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  color: var(--green-forest);
  border: 1px solid var(--green-forest);
}

.btn--ghost:hover {
  background: var(--green-forest);
  color: var(--white);
}

.btn--sm {
  font-size: 0.72rem;
  padding: 0.6rem 1.3rem;
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

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

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

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

.card__label {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--green-darkest);
  margin-bottom: 0.5rem;
}

.card__text {
  font-size: 0.92rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-forest);
  margin-top: var(--space-sm);
  transition: gap var(--transition-fast);
}

.card__link:hover {
  gap: 0.7rem;
  color: var(--gold);
}

.card__link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* --- Service/Feature Cards --- */
.service-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}

.service-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(11, 38, 24, 0.85) 0%,
    rgba(11, 38, 24, 0.3) 50%,
    rgba(11, 38, 24, 0.1) 100%
  );
  transition: background var(--transition-smooth);
}

.service-card:hover .service-card__overlay {
  background: linear-gradient(
    0deg,
    rgba(11, 38, 24, 0.9) 0%,
    rgba(11, 38, 24, 0.4) 60%,
    rgba(11, 38, 24, 0.2) 100%
  );
}

.service-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  z-index: 2;
}

.service-card__label {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.service-card__text {
  font-size: 0.88rem;
  color: var(--green-light);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all var(--transition-smooth);
}

.service-card:hover .service-card__text {
  max-height: 100px;
  opacity: 1;
  margin-top: 0.5rem;
}

/* --- Testimonial Cards --- */
.testimonial {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold-light);
  position: absolute;
  top: 1.2rem;
  left: 1.5rem;
}

.testimonial__text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
  padding-top: 1.5rem;
}

.testimonial__author {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonial__detail {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--gray-warm);
  margin-top: 0.2rem;
}

/* --- Gallery Grid --- */
.gallery-grid {
  columns: 3;
  column-gap: var(--space-sm);
}

.gallery-grid__item {
  break-inside: avoid;
  margin-bottom: var(--space-sm);
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-grid__item img {
  width: 100%;
  display: block;
  transition: transform var(--transition-smooth);
}

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

.gallery-grid__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 38, 24, 0);
  transition: background var(--transition-fast);
}

.gallery-grid__item:hover::after {
  background: rgba(11, 38, 24, 0.15);
}

/* --- Lightbox --- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 38, 24, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox--open {
  display: flex;
}

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

.lightbox__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition-fast);
}

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

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

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

.lightbox__nav--prev {
  left: var(--space-md);
}

.lightbox__nav--next {
  right: var(--space-md);
}

/* --- Photo Grid (for service pages) --- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-sm);
}

.photo-grid__item {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
}

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

.photo-grid__item:hover img {
  transform: scale(1.08);
}

.photo-grid__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-sm) var(--space-md);
  background: linear-gradient(transparent, rgba(11, 38, 24, 0.8));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition-fast);
}

.photo-grid__item:hover .photo-grid__caption {
  opacity: 1;
  transform: translateY(0);
}

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

.form-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--border-radius);
  background: var(--white);
  color: var(--charcoal);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--green-forest);
  box-shadow: 0 0 0 3px rgba(27, 94, 58, 0.1);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green-forest);
  margin-top: 2px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

/* --- Flower Valet Feature Section --- */
.valet-section {
  background: var(--green-darkest);
  position: relative;
  overflow: hidden;
}

.valet-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.valet-text h2 {
  color: var(--white);
}

.valet-text p {
  color: var(--green-light);
}

.valet-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.valet-step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.valet-step__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  min-width: 40px;
}

.valet-step__text h4 {
  color: var(--white);
  font-family: var(--font-display);
  margin-bottom: 0.3rem;
}

.valet-step__text p {
  color: var(--green-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* --- Delivery Info --- */
.delivery-table {
  width: 100%;
  border-collapse: collapse;
}

.delivery-table th,
.delivery-table td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--gray-light);
}

.delivery-table th {
  font-family: var(--font-accent);
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.delivery-table td {
  font-size: 0.95rem;
}

.delivery-table .free {
  color: var(--green-forest);
  font-weight: 600;
}

/* --- Footer --- */
.footer {
  background: var(--green-darkest);
  color: var(--green-light);
  padding: var(--space-2xl) 0 var(--space-lg);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer__brand h3 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
}

.footer__brand p {
  font-size: 0.88rem;
  color: var(--green-light);
  opacity: 0.8;
  max-width: 300px;
}

.footer__heading {
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.footer__link {
  display: block;
  color: var(--green-light);
  font-size: 0.88rem;
  padding: 0.25rem 0;
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--gold-light);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.88rem;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

/* Flower Tip in Footer */
.footer__tip {
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: var(--border-radius-lg);
  padding: var(--space-md);
  margin-top: var(--space-md);
}

.footer__tip-label {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.footer__tip-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 0;
}

.footer__bottom {
  border-top: 1px solid rgba(168, 213, 186, 0.1);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--gray-warm);
}

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

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

.footer__social a:hover {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
}

.footer__social svg {
  width: 16px;
  height: 16px;
  fill: var(--green-light);
}

/* --- Page Header (for inner pages) --- */
.page-header {
  position: relative;
  padding: calc(80px + var(--space-2xl)) 0 var(--space-2xl);
  background: var(--green-darkest);
  text-align: center;
  overflow: hidden;
}

.page-header__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.page-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 38, 24, 0.5) 0%, rgba(11, 38, 24, 0.85) 100%);
}

.page-header__content {
  position: relative;
  z-index: 2;
}

.page-header__label {
  font-family: var(--font-accent);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--gold-light);
  margin-bottom: var(--space-sm);
  display: block;
}

.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.page-header__subtitle {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--green-light);
  max-width: 500px;
  margin: 0 auto;
}

/* --- Price Tags --- */
.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-forest);
}

.price-range {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.price-range__item {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--border-radius-lg);
  padding: 0.6rem 1.2rem;
  text-align: center;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.price-range__item:hover,
.price-range__item--active {
  border-color: var(--gold);
  background: var(--gold-tint);
}

.price-range__amount {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green-darkest);
  display: block;
}

/* --- Occasions List --- */
.occasions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.occasion-tag {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-forest);
  border: 1px solid var(--green-light);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: all var(--transition-fast);
}

.occasion-tag:hover {
  background: var(--green-forest);
  color: var(--white);
  border-color: var(--green-forest);
}

/* --- Feature Strip --- */
.feature-strip {
  background: var(--gold-tint);
  border-top: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
  padding: var(--space-md) 0;
}

.feature-strip__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.feature-strip__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-accent);
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.feature-strip__item svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.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--left {
  transform: translateX(-30px);
}

.reveal--left.reveal--visible {
  transform: translateX(0);
}

.reveal--right {
  transform: translateX(30px);
}

.reveal--right.reveal--visible {
  transform: translateX(0);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .valet-content { grid-template-columns: 1fr; gap: var(--space-xl); }
  .gallery-grid { columns: 2; }
}

@media (max-width: 768px) {
  :root {
    --space-2xl: 4rem;
    --space-3xl: 5rem;
  }

  .nav__links { display: none; }
  .nav__cta--desktop { display: none; }
  .nav__toggle { display: flex; }

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

  .hero { min-height: 70vh; }
  .hero--short { min-height: 40vh; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: var(--space-sm); text-align: center; }

  .form-row { grid-template-columns: 1fr; }

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

  .feature-strip__inner { gap: var(--space-md); }
}

@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
  .photo-grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 2.2rem; }
  .occasions { gap: 0.35rem; }
}

/* --- Print Styles --- */
@media print {
  .nav, .footer, .lightbox { display: none; }
  body { background: white; color: black; }
  .hero { min-height: auto; background: white; }
  .hero__title, .hero__subtitle { color: black; }
}
