/*
Theme Name: Westwick Hall Flower Field
Theme URI: https://westwickhall.co.uk
Author: Custom
Description: A beautiful one-page scrolling theme for Westwick Hall Flower Field - a pick-your-own flower experience. Features time slot booking with Square payment integration.
Version: 1.0
License: GNU General Public License v2 or latermax-width: fit-content;
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-page, responsive, flowers, booking
Text Domain: westwick-hall
*/

/* =========================================
   CSS VARIABLES
   ========================================= */
:root {
  --blush:       #f5e8e4;
  --blush-mid:   #edd5cc;
  --rose:        #c45c82;
  --rose-dark:   #6b1a3a;
  --peach:       #e8a87c;
  --cream:       #fdf6f0;
  --warm-white:  #fffaf7;
  --text-dark:   #2d1a22;
  --text-mid:    #5c3347;
  --text-light:  #9c6b80;
  --green:       #5a7a4a;
  --green-light: #8aaa72;
  --gold:        #d4a853;
  --shadow-soft: 0 4px 24px rgba(107,26,58,0.08);
  --shadow-card: 0 8px 32px rgba(107,26,58,0.12);
  --radius:      16px;
  --radius-lg:   24px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: var(--rose); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--rose-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--rose-dark);
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 500; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 500; }

p { color: var(--text-mid); font-size: 1.05rem; }

section { position: relative; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--rose);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  margin-bottom: 16px;
}

.section-intro {
  max-width: 580px;
  margin: 0 auto 56px;
  text-align: center;
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 4px 20px rgba(196,92,130,0.35);
}
.btn-primary:hover {
  background: var(--rose-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(107,26,58,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--rose-dark);
  border: 2px solid var(--rose);
}
.btn-outline:hover {
  background: var(--rose);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--rose-dark);
}
.btn-white:hover {
  background: var(--blush);
  transform: translateY(-2px);
}

/* =========================================
   DECORATIVE PETALS (SVG inline via CSS)
   ========================================= */
.petal-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.18;
}

/* =========================================
   NAVIGATION
   ========================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

#site-header.scrolled {
  background-color: #f3dedc;
  box-shadow: 0 2px 20px rgba(107,26,58,0.1);
  padding: 10px 0;
  backdrop-filter: blur(10px);
}

#site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
	    background-color: #f3dedc;
}
img.custom-logo {
  width: 193px;
  height: auto;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo .logo-text {
  font-family: var(--font-display);
  color: var(--rose-dark);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.2;
}

.site-logo .logo-sub {
  font-size: 0.75rem;
  color: var(--text-light);
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 6px 14px;
  border-radius: 50px;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--rose-dark);
  background: var(--blush);
}

nav.main-nav .nav-book {
  background: var(--rose);
  color: #fff;
  padding: 8px 20px;
}
nav.main-nav .nav-book:hover {
  background: var(--rose-dark);
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--rose-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =========================================
   HERO SECTION
   ========================================= */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--blush) 0%, var(--cream) 50%, #f0e8f5 100%);
  padding: 120px 0 80px;
  overflow: hidden;
}

#hero .hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blush-mid);
  color: var(--rose-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--rose);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 40px;
  max-width: 460px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 500;
}

.hero-badge .badge-icon {
  width: 32px;
  height: 32px;
  background: var(--blush-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.hero-visual {
  position: relative;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/5;
  background: var(--blush-mid);
}

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

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: var(--rose);
  font-size: 5rem;
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-mid) 100%);
}

.hero-img-placeholder p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-light);
}

.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  max-width: 200px;
}

.hero-float-card .card-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 4px;
}

.hero-float-card .card-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--rose-dark);
  font-weight: 600;
}

.hero-float-card2 {
  position: absolute;
  top: 24px;
  right: -20px;
  background: var(--rose-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-card);
}

.hero-float-card2 .card-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 4px;
}

.hero-float-card2 .card-value {
  font-size: 1rem;
  font-weight: 600;
}

/* =========================================
   HOW IT WORKS
   ========================================= */
#how-it-works {
  padding: 30px 0;
  background: var(--warm-white);
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--blush-mid), var(--rose), var(--blush-mid));
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--blush), var(--blush-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  border: 3px solid #fff;
  box-shadow: var(--shadow-soft);
}

.step-number {
  position: absolute;
  top: 60px;
  right: calc(50% - 62px);
  width: 24px;
  height: 24px;
  background: var(--rose);
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card h3 { margin-bottom: 12px; }
.step-card p { font-size: 0.95rem; max-width: 240px; margin: 0 auto; }

/* =========================================
   FLOWERS / GALLERY
   ========================================= */
#our-flowers {
  padding: 30px 0;
  background: var(--cream);
  text-align: center;
}

.flowers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.flower-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
  max-width: 240px;
	justify-self: anchor-center;
}

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

.flower-img {
  aspect-ratio: 4/3;
  background: var(--blush);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

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

.flower-season {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.9);
  color: var(--rose-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

.flower-info {
  padding: 20px 24px 24px;
}

.flower-info h3 { font-size: 1.25rem; margin-bottom: 6px; }
.flower-info p { font-size: 0.9rem; line-height: 1.6; }

/* =========================================
   PRICING
   ========================================= */
#pricing {
  padding: 30px 0;
  background: linear-gradient(160deg, var(--rose-dark) 0%, #4a1228 100%);
  text-align: center;
  color: #fff;
}

#pricing h2, #pricing .section-label {
  color: #fff;
}

#pricing .section-label {
  color: rgba(255,255,255,0.7);
}

#pricing .section-intro { color: rgba(255,255,255,0.8); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: transform 0.3s;
  max-width: fit-content;
  justify-self: anchor-center;
}

.pricing-card:hover { transform: translateY(-4px); }

.pricing-card.featured {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
  transform: scale(1.04);
}

.pricing-card.featured:hover { transform: scale(1.04) translateY(-4px); }

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--rose-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-icon { font-size: 2.5rem; margin-bottom: 16px; }

.pricing-card h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin: 16px 0 8px;
}

.pricing-price span {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.8;
}

.pricing-desc {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.pricing-features li::before {
  content: '✿';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* =========================================
   BOOKING SECTION
   ========================================= */
#booking {
  padding: 30px 0;
  background: var(--warm-white);
}

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.booking-info h2 { margin-bottom: 16px; text-align: left; }

.booking-info p {
  font-size: 1rem;
  margin-bottom: 32px;
}

.booking-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.booking-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-mid);
}

.booking-highlights li .hl-icon {
  width: 36px;
  height: 36px;
  background: var(--blush);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.booking-hours {
  background: var(--blush);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.booking-hours h4 {
  font-size: 1rem;
  color: var(--rose-dark);
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.83rem;
}

.hours-list { list-style: none; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(196,92,130,0.1);
  font-size: 0.9rem;
  color: var(--text-mid);
}
.hours-list li:last-child { border: none; }
.hours-list .day { font-weight: 600; color: var(--rose-dark); }
.hours-list .closed { color: var(--text-light); font-style: italic; }

/* Booking Form / Widget */
.booking-widget {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.widget-header {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  padding: 28px 32px;
  color: #fff;
}

.widget-header h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.widget-header p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.widget-body {
  padding: 32px;
}

/* Step indicator */
.booking-steps {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border-radius: 50px;
  overflow: hidden;
  background: var(--blush);
}

.booking-step-tab {
  flex: 1;
  text-align: center;
  padding: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: default;
}

.booking-step-tab.active {
  background: var(--rose);
  color: #fff;
  border-radius: 50px;
}

.booking-step-tab.done {
  color: var(--rose);
}

/* Step 1 - Date */
.form-step { display: none; }
.form-step.active { display: block; }

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--rose-dark);
  margin-bottom: 8px;
}

.form-group select,
.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--blush-mid);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--warm-white);
  transition: border-color 0.2s;
  appearance: none;
}

.form-group select:focus,
.form-group input:focus {
  outline: none;
  border-color: var(--rose);
}

.mini-calendar {
  border: 2px solid var(--blush-mid);
  border-radius: var(--radius);
  overflow: hidden;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--blush);
}

.cal-header h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--rose-dark);
}

.cal-nav {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--rose);
  font-size: 1.2rem;
  padding: 4px 10px;
  border-radius: 8px;
  transition: background 0.2s;
}

.cal-nav:hover { background: var(--blush-mid); }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.cal-day-name {
  padding: 8px 0;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  background: var(--blush);
  border-bottom: 1px solid var(--blush-mid);
}

.cal-day {
  padding: 10px 6px;
  font-size: 0.88rem;
  cursor: pointer;
  color: var(--text-dark);
  border: 1px solid transparent;
  transition: all 0.15s;
}

.cal-day:hover:not(.disabled):not(.empty) {
  background: var(--blush);
  border-color: var(--blush-mid);
}

.cal-day.selected {
  background: var(--rose) !important;
  color: #fff !important;
  border-radius: 8px;
}

.cal-day.today {
  font-weight: 700;
  color: var(--rose);
}

.cal-day.disabled {
  color: var(--blush-mid);
  cursor: not-allowed;
  background: none;
}

.cal-day.empty { cursor: default; }

/* Time slots */
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.time-slot {
  padding: 12px 8px;
  border: 2px solid var(--blush-mid);
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--warm-white);
}

.time-slot:hover:not(.booked) {
  border-color: var(--rose);
  background: var(--blush);
}

.time-slot.selected {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
}

.time-slot.booked {
  background: var(--blush-mid);
  color: var(--text-light);
  cursor: not-allowed;
  opacity: 0.6;
}

.time-slot .time-main {
  font-weight: 700;
  font-size: 0.92rem;
  display: block;
}

.time-slot .time-avail {
  font-size: 0.7rem;
  opacity: 0.75;
  display: block;
  margin-top: 2px;
}

.ticket-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.ticket-option {
  border: 2px solid var(--blush-mid);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--warm-white);
}

.ticket-option:hover {
  border-color: var(--rose);
}

.ticket-option.selected {
  border-color: var(--rose);
  background: var(--blush);
}

.ticket-option input[type="radio"] { display: none; }

.ticket-option .tick-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.ticket-option .tick-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--rose-dark);
  display: block;
}

.ticket-option .tick-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--rose);
  font-weight: 600;
  display: block;
}

.ticket-option .tick-desc {
  font-size: 0.75rem;
  color: var(--text-light);
  display: block;
}

.visitor-counter {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid var(--blush-mid);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 160px;
}

.visitor-counter button {
  width: 44px;
  height: 44px;
  border: none;
  background: var(--blush);
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--rose-dark);
  transition: background 0.2s;
}

.visitor-counter button:hover { background: var(--blush-mid); }

.visitor-counter span {
  flex: 1;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--rose-dark);
  font-family: var(--font-display);
}

/* Contact fields */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Order summary */
.order-summary {
  background: var(--blush);
  border-radius: var(--radius);
  padding: 20px;
  margin: 20px 0;
}

.order-summary h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--rose-dark);
  margin-bottom: 12px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(196,92,130,0.1);
}

.summary-line:last-child { border: none; }
.summary-line.total {
  font-weight: 700;
  color: var(--rose-dark);
  font-size: 1.05rem;
  margin-top: 4px;
  padding-top: 10px;
  border-top: 2px solid var(--rose);
  border-bottom: none;
}

/* Square payment placeholder */
.square-container {
  background: var(--warm-white);
  border: 2px solid var(--blush-mid);
  border-radius: var(--radius);
  padding: 24px;
  margin: 16px 0;
  min-height: 120px;
}

.square-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#card-container {
  min-height: 80px;
}

.square-notice {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 12px;
}

.step-nav {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 24px;
}

.step-nav .btn { flex: 1; justify-content: center; }

/* Success state */
.booking-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.booking-success .success-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.booking-success h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.booking-success p {
  color: var(--text-mid);
  margin-bottom: 24px;
}

.booking-ref {
  background: var(--blush);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: inline-block;
  font-family: monospace;
  font-size: 1.1rem;
  color: var(--rose-dark);
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* =========================================
   ON-SITE EATS
   ========================================= */
#on-site-eats {
  padding: 30px 0;
  background: var(--blush);
}

.eats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
}

.eats-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.eats-img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--blush-mid);
}

.eats-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.4s ease;
}

.eats-card:hover .eats-img-wrap img {
  transform: scale(1.04);
}

.eats-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 3.5rem;
  color: var(--rose);
  background: linear-gradient(135deg, var(--blush), var(--blush-mid));
}

.eats-img-placeholder p {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

.eats-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  color: var(--rose-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 50px;
}

.eats-info {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.eats-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rose);
  margin-bottom: 8px;
}

.eats-info h3 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.eats-info p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.eats-menu-preview {
  list-style: none;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.eats-menu-preview li {
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 7px 12px;
  background: var(--blush);
  border-radius: 8px;
}

@media (max-width: 740px) {
  .eats-grid { grid-template-columns: 1fr; }
}

/* =========================================
   GALLERY
   ========================================= */
#gallery {
  padding: 30px 0;
  background: var(--cream);
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--blush);
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

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

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
  font-size: 5rem;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(107,26,58,0);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(107,26,58,0.25);
}

/* =========================================
   LOCATION & CONTACT
   ========================================= */
#location {
  padding: 30px 0;
  background: var(--warm-white);
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.location-info h2 { text-align: left; margin-bottom: 24px; }

.location-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.location-details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.loc-icon {
  width: 44px;
  height: 44px;
  background: var(--blush);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.loc-text strong {
  display: block;
  color: var(--rose-dark);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.loc-text span { color: var(--text-mid); font-size: 0.95rem; }

.map-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--blush), var(--blush-mid));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--rose);
  font-size: 2.5rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
}

.map-placeholder p {
  font-size: 0.9rem;
  color: var(--text-light);
  font-family: var(--font-body);
}

/* Google Maps embed */
.map-embed {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

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

/* =========================================
   FOOTER
   ========================================= */
#site-footer {
  background: linear-gradient(160deg, #986f6f, #1a0e14);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-sub { color: rgba(255,255,255,0.5); }

.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin: 16px 0 24px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.2s;
  color: #fff;
}

.social-link:hover {
  background: var(--rose);
  color: #fff;
}

.footer-col h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links li a:hover { color: var(--rose); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================================
   MOBILE NAV DRAWER
   ========================================= */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}

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

.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45,26,34,0.6);
  backdrop-filter: blur(4px);
}

.mobile-nav-drawer {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw);
  background: var(--cream);
  padding: 80px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}

.mobile-nav-close {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--blush);
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-dark);
}

.mobile-nav-drawer a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--blush);
  font-family: var(--font-display);
}

.mobile-nav-drawer a:last-child {
  border: none;
  margin-top: 16px;
  background: var(--rose);
  color: #fff;
  padding: 14px;
  border-radius: 50px;
  text-align: center;
  font-family: var(--font-body);
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  #hero .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-img-wrap { aspect-ratio: 16/9; }
  .hero-float-card { display: none; }
  .hero-float-card2 { display: none; }

  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }

  .booking-inner { grid-template-columns: 1fr; gap: 40px; }
  .location-inner { grid-template-columns: 1fr; gap: 40px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: 1; grid-row: 1; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  nav.main-nav { display: none; }
  .hamburger { display: flex; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .pricing-card.featured { transform: none; }

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

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .section-intro { font-size: 1rem; }
  section { padding: 72px 0; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .time-slots-grid { grid-template-columns: repeat(2, 1fr); }
  .ticket-options { grid-template-columns: 1fr; }
  .flowers-grid { grid-template-columns: 1fr; }
  
  .footer-bottom { flex-direction: column; text-align: center; }
}
