/* ============================================
   Picnic Table Hire — Style System
   Earthy, grounded, craft-inspired design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/* --- Custom Properties --- */
:root {
  --forest: #2C4A2E;
  --forest-deep: #1A3320;
  --sage: #6B8F6E;
  --sage-light: #A3C4A5;
  --amber: #D4A84B;
  --amber-warm: #E8C06A;
  --bark: #5C3D2E;
  --bark-light: #8B6347;
  --cream: #FAF6F0;
  --cream-warm: #F5EDE0;
  --stone: #E8E0D4;
  --charcoal: #2A2A28;
  --charcoal-light: #4A4A46;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(42, 42, 40, 0.08);
  --shadow-md: 0 4px 20px rgba(42, 42, 40, 0.12);
  --shadow-lg: 0 8px 40px rgba(42, 42, 40, 0.16);
  --shadow-xl: 0 16px 60px rgba(42, 42, 40, 0.2);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

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

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--cream);
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* --- Grain Overlay (subtle texture) --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  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)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn:hover::after {
  transform: translateX(100%);
}

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

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

.btn-secondary {
  background: var(--amber);
  color: var(--charcoal);
}

.btn-secondary:hover {
  background: var(--amber-warm);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-2px);
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42, 42, 40, 0.06);
  transition: box-shadow var(--transition);
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.header-logo img {
  height: 44px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--charcoal-light);
}

.header-phone svg {
  width: 18px;
  height: 18px;
  color: var(--forest);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--charcoal-light);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--forest);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--forest);
}

.header-cta .btn {
  padding: 10px 24px;
  font-size: 0.8rem;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  margin: 6px 0;
  transition: all var(--transition);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: var(--forest-deep);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/lorry-loaded.jpg');
  background-size: cover;
  background-position: center 40%;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 51, 32, 0.55) 0%, rgba(44, 74, 46, 0.4) 50%, rgba(44, 74, 46, 0.3) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--cream), transparent);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  max-width: 720px;
  padding: 60px 0;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero h1 span {
  display: block;
  color: var(--amber-warm);
}

.hero p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.8;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: var(--amber-warm);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero-decoration {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  max-width: 600px;
  opacity: 0.15;
  pointer-events: none;
}

.hero-decoration svg {
  width: 100%;
  height: auto;
}

/* --- Client Logos --- */
.clients {
  padding: 48px 0;
  background: var(--white);
  border-bottom: 1px solid var(--stone);
}

.clients-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--charcoal-light);
  margin-bottom: 28px;
  opacity: 0.6;
}

.clients-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.clients-grid img {
  height: 40px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all var(--transition);
}

.clients-grid img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* --- Section Shared --- */
.section {
  padding: 100px 0;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sage);
  margin-bottom: 16px;
}

.section-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.section-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal-light);
  max-width: 640px;
}

/* --- Split Section (image + text) --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.06);
  pointer-events: none;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split-content .section-text {
  margin-bottom: 12px;
}

/* Accent bar on split image */
.split-image-accent {
  position: relative;
}

.split-image-accent::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 3px solid var(--amber);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* --- Value Cards --- */
.value-cards {
  padding: 100px 0;
  background: var(--white);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.card {
  padding: 40px 32px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--stone);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--forest), var(--sage));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

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

.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  color: var(--white);
}

.card-icon svg {
  width: 28px;
  height: 28px;
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.card p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

/* --- Products / Highlight Section --- */
.highlight {
  padding: 100px 0;
  background: var(--forest-deep);
  position: relative;
  overflow: hidden;
}

.highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2l2 3.5-2 3z' fill='%23ffffff' fill-opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
}

.highlight .container {
  position: relative;
  z-index: 1;
}

.highlight .split-content {
  color: var(--white);
}

.highlight .section-label {
  color: var(--amber-warm);
}

.highlight .section-heading {
  color: var(--white);
}

.highlight .section-text {
  color: rgba(255, 255, 255, 0.8);
}

/* --- CTA Section --- */
.cta-section {
  padding: 100px 0;
  text-align: center;
  background: var(--cream-warm);
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--amber);
  border-radius: 2px;
}

.cta-section .section-heading {
  max-width: 600px;
  margin: 0 auto 20px;
}

.cta-section .section-text {
  max-width: 560px;
  margin: 0 auto 32px;
}

.cta-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.sister-link {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  margin-top: 24px;
}

.sister-link a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sister-link a:hover {
  color: var(--forest-deep);
}

/* --- Footer --- */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 36px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  color: var(--sage-light);
}

.footer-contact-item a:hover {
  color: var(--white);
}

.footer-links a {
  display: block;
  margin-bottom: 12px;
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 100%);
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  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='%23ffffff' fill-opacity='0.04'%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;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--cream), transparent);
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.page-hero p {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 16px;
  max-width: 560px;
  font-weight: 300;
}

/* --- About Page --- */
.about-intro {
  padding: 80px 0 60px;
}

.about-intro .section-text {
  font-size: 1.15rem;
  max-width: 720px;
}

.event-types {
  padding: 60px 0 100px;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.event-card {
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--stone);
  text-align: center;
  transition: all var(--transition);
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-light);
}

.event-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-warm);
  border-radius: 50%;
  margin: 0 auto 16px;
  color: var(--forest);
}

.event-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
}

/* --- Contact Page --- */
.contact-layout {
  padding: 80px 0 100px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
}

.contact-intro {
  margin-bottom: 40px;
}

.contact-intro p {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.contact-intro a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--stone);
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.form-group label .required {
  color: var(--bark-light);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  border: 1.5px solid var(--stone);
  border-radius: var(--radius-md);
  background: var(--cream);
  color: var(--charcoal);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(44, 74, 46, 0.1);
  background: var(--white);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--charcoal-light);
  opacity: 0.4;
}

.form-submit {
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 0.9rem;
}

.form-message {
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(44, 74, 46, 0.08);
  color: var(--forest);
  border: 1px solid rgba(44, 74, 46, 0.15);
}

.form-message.error {
  display: block;
  background: rgba(180, 60, 40, 0.08);
  color: #8B3020;
  border: 1px solid rgba(180, 60, 40, 0.15);
}

/* Contact sidebar */
.contact-sidebar {
  padding-top: 20px;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--stone);
  margin-bottom: 24px;
}

.sidebar-card h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sage);
  margin-bottom: 24px;
}

.sidebar-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.sidebar-item:last-child {
  margin-bottom: 0;
}

.sidebar-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-warm);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  color: var(--forest);
}

.sidebar-icon svg {
  width: 20px;
  height: 20px;
}

.sidebar-item-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

.sidebar-item-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--charcoal-light);
  margin-bottom: 2px;
}

.sidebar-item-text a:hover {
  color: var(--forest);
}

/* --- Privacy Policy --- */
.policy-content {
  padding: 80px 0 100px;
  max-width: 780px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 48px 0 16px;
  color: var(--charcoal);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--stone);
}

.policy-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 32px 0 12px;
  color: var(--charcoal);
}

.policy-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--charcoal-light);
  margin-bottom: 16px;
}

.policy-content ul {
  margin: 12px 0 20px 24px;
  list-style: disc;
}

.policy-content li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--charcoal-light);
  margin-bottom: 8px;
}

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

.policy-meta {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 2px solid var(--stone);
  font-size: 0.85rem;
  color: var(--charcoal-light);
}

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

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

.animate-in {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-in.delay-1 { animation-delay: 0.1s; }
.animate-in.delay-2 { animation-delay: 0.2s; }
.animate-in.delay-3 { animation-delay: 0.3s; }
.animate-in.delay-4 { animation-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .split {
    gap: 48px;
  }

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

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

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

@media (max-width: 768px) {
  .header-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 24px;
    gap: 24px;
    z-index: 999;
  }

  .header-nav.open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 24px;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: 70vh;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split.reverse .split-image {
    order: -1;
  }

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

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

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    padding: 28px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .clients-grid {
    gap: 24px;
  }

  .clients-grid img {
    height: 28px;
  }

  .hero-decoration {
    display: none;
  }
}

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

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

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

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

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