/* Michelle's Balloon Emporium — Landing Page Styles */

:root {
  --color-bg: #faf7f2;
  --color-surface: #ffffff;
  --color-dark: #1a1a1a;
  --color-primary: #b8860b;
  --color-primary-dark: #8b6914;
  --color-secondary: #c9a227;
  --color-accent: #e8b4b8;
  --color-gold: #d4af37;
  --color-cream: #faf3e8;
  --color-text: #2a2226;
  --color-text-muted: #6b5a62;
  --color-border: #e8dfd0;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(45, 52, 54, 0.08);
  --shadow-lg: 0 12px 40px rgba(45, 52, 54, 0.12);
  --header-height: 72px;
  --mobile-cta-height: 56px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

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

a {
  color: var(--color-primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.5rem 1rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin: 0 0 1rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
  box-shadow: 0 4px 16px rgba(184, 134, 11, 0.35);
}

.btn-secondary {
  background: var(--color-surface);
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: var(--shadow);
}

.btn-lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: #fff;
  flex-shrink: 0;
}

.logo:hover {
  color: #fff;
}

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-border);
  box-shadow: 0 2px 8px rgba(216, 27, 132, 0.15);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-gold);
}

.logo-tagline {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

.nav {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}

.nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

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

.btn-header {
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s ease;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.25rem 1.5rem;
  background: var(--color-dark);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-menu a {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 0.5rem 0;
}

.mobile-menu[hidden] {
  display: none !important;
}

.mobile-menu.is-open {
  display: flex;
}

/* Hero */
.hero {
  position: relative;
  padding: 3rem 0 5rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-dark) 0%, #2a2226 60%, var(--color-cream) 100%);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-brand-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(212, 175, 55, 0.4);
}

.hero-brand-img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.balloon {
  position: absolute;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
}

.balloon::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  width: 2px;
  height: 30px;
  background: currentColor;
  transform: translateX(-50%);
  opacity: 0.5;
}

.balloon-1 {
  width: 80px;
  height: 96px;
  background: var(--color-primary);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.balloon-2 {
  width: 60px;
  height: 72px;
  background: var(--color-secondary);
  top: 20%;
  right: 10%;
  animation-delay: -2s;
}

.balloon-3 {
  width: 50px;
  height: 60px;
  background: var(--color-accent);
  bottom: 25%;
  left: 15%;
  animation-delay: -4s;
}

.balloon-4 {
  width: 70px;
  height: 84px;
  background: #00b894;
  bottom: 15%;
  right: 8%;
  animation-delay: -6s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-content {
  position: relative;
  color: #fff;
}

.hero-content h1 {
  color: #fff;
}

.hero-lead {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.hero-price-note {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.hero-content .eyebrow {
  color: var(--color-gold);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
}

.hero-trust li::before {
  content: none;
}

/* Perfect for strip */
.perfect-for {
  background: var(--color-dark);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 1.25rem 0;
}

.perfect-for-inner {
  text-align: center;
}

.perfect-for-label {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-gold);
}

.perfect-for-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
}

.perfect-for-list li {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.perfect-for-list li:not(:last-child)::after {
  content: "·";
  margin-left: 1rem;
  color: rgba(255, 255, 255, 0.35);
}

.service-area {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Pricing guide */
.pricing-guide {
  margin-top: 2.5rem;
  padding: 1.75rem 2rem;
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
}

.pricing-guide-title {
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.pricing-guide p {
  margin-bottom: 1rem;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-tiers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-tiers li {
  padding: 0.5rem 1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text);
}

/* Booking details */
.booking-details {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.booking-details li {
  padding: 1rem 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.booking-details strong {
  display: block;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.gallery .cta-banner {
  margin-top: 2.5rem;
}

/* Mobile sticky CTA bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  height: var(--mobile-cta-height);
  background: var(--color-dark);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.mobile-cta-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
  padding: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: background 0.15s ease;
}

.mobile-cta-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.mobile-cta-item--primary {
  background: var(--color-primary);
  color: #fff;
}

.mobile-cta-item--primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

.mobile-cta-icon {
  font-size: 1.125rem;
  line-height: 1;
}

/* Popular requests */
.popular {
  background: var(--color-surface);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
}

.popular-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9375rem;
  text-align: center;
  text-decoration: none;
  color: var(--color-text);
  transition: border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.popular-item:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* FAQ */
.faq {
  background: var(--color-surface);
}

.faq-search-wrap {
  max-width: 480px;
  margin: 0 auto 2rem;
}

.faq-search {
  width: 100%;
  padding: 0.875rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-bg);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.faq-search:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  background: var(--color-bg);
  overflow: hidden;
}

.faq-item[hidden] {
  display: none;
}

.faq-item summary {
  padding: 1.125rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-primary);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 1.5rem 1.25rem;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.faq-no-results {
  text-align: center;
  color: var(--color-text-muted);
  margin-top: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-header {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-header p:last-child {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.card h3 {
  margin-bottom: 0.5rem;
  padding-top: 0.25rem;
}

.card h3::before {
  content: "";
  display: block;
  width: 2rem;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

.card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* Occasions */
.occasions {
  background: linear-gradient(180deg, var(--color-bg) 0%, #fef0f6 100%);
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.occasion-item {
  background: var(--color-surface);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 500;
  font-size: 0.9375rem;
  border: 1px solid var(--color-border);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.occasion-item:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.cta-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  background: var(--color-dark);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #fff;
  border-radius: var(--radius-lg);
}

.cta-banner h3 {
  color: #fff;
  margin-bottom: 0.25rem;
}

.cta-banner p {
  margin: 0;
  opacity: 0.85;
  font-size: 0.9375rem;
}

.cta-banner .btn-primary {
  flex-shrink: 0;
}

/* Gallery */
.gallery {
  background: var(--color-surface);
}

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

.gallery-item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--wide img {
  height: 320px;
}

.gallery-item figcaption {
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-surface);
}

.gallery-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

/* Reviews */
.reviews {
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-bg) 100%);
}

.rating-badge--inline {
  margin-top: 0;
  margin-bottom: 1.25rem;
  width: 100%;
}

.review-highlights {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.25rem;
}

.review-highlights li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.5rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}

.review-highlights li:last-child {
  border-bottom: none;
}

.review-highlights li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 0.75rem;
}

.review-summary-note {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.review-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.review-trust .trust-badge-img {
  max-width: 200px;
  margin-bottom: 1rem;
}

.review-trust .trust-caption {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.section-header--center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.rating-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  margin-top: 1rem;
  padding: 1.25rem 2rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow);
}

.rating-score {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.rating-label {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
}

.rating-count {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.reviews-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.review-card--embed {
  padding: 0;
  overflow: hidden;
  min-height: 720px;
}

.review-card--embed iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 720px;
}

.reviews-footer {
  margin-top: 2.5rem;
  text-align: center;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-footer .trust-badge-img {
  max-width: 280px;
  margin-bottom: 1rem;
}

.reviews-footer .trust-caption {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.review-card {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.trust-badge-img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius);
}

.review-stars {
  color: var(--color-gold);
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.review-author {
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.review-recommends {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.review-date {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.review-text {
  margin: 1.25rem 0;
  padding: 0;
  border: none;
}

.review-text p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  font-style: italic;
}

.review-text p:last-child {
  margin-bottom: 0;
}

.review-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.review-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
}

.review-summary {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

/* Process */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
}

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.75rem 2rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.step-num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 50%;
}

.step h3 {
  margin-bottom: 0.25rem;
}

.step p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* Contact */
.contact {
  background: linear-gradient(180deg, var(--color-bg) 0%, #f8f0ff 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-methods {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.contact-methods li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-methods li:last-child {
  border-bottom: none;
}

.contact-methods strong {
  display: block;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.contact-methods a {
  font-weight: 500;
}

.contact-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-form-wrap {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.contact-form-wrap h3 {
  margin-bottom: 0.25rem;
}

.form-note {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.enquiry-form .form-group {
  margin-bottom: 1.25rem;
}

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

.enquiry-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
}

.required {
  color: var(--color-primary);
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(232, 67, 122, 0.15);
}

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

.form-fallback {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-align: center;
}

.hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.form-message {
  padding: 1.25rem;
  border-radius: var(--radius);
  margin-top: 1rem;
}

.form-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Footer */
.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.footer-brand p {
  font-size: 0.9375rem;
  opacity: 0.8;
  margin: 0;
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.875rem;
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-brand-card {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }

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

  .gallery-item--wide {
    grid-column: span 2;
  }

  .reviews-cards {
    grid-template-columns: 1fr;
  }

  .review-card--embed iframe {
    min-height: 600px;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: var(--mobile-cta-height);
  }

  .mobile-cta-bar {
    display: flex;
  }

  .nav,
  .btn-header {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding: 3rem 0 4rem;
  }

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

  .hero-cta .btn {
    width: 100%;
  }

  .section {
    padding: 3.5rem 0;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem;
  }

  .cta-banner .btn {
    width: 100%;
  }

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

  .step {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .logo-tagline {
    display: none;
  }

  .perfect-for-list li:not(:last-child)::after {
    content: none;
    margin: 0;
  }

  .perfect-for-list {
    flex-direction: column;
    gap: 0.375rem;
  }

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

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

  .gallery-item--wide {
    grid-column: span 1;
  }

  .gallery-item img,
  .gallery-item--wide img {
    height: 220px;
  }
}
