/*
Theme Name: ELLAMECHATRONICS
Theme URI: https://ellamechatronics.com
Author: ELLAMECHATRONICS
Author URI: https://ellamechatronics.com
Description: Profesionální one-page WordPress téma pro ELLAMECHATRONICS.COM — Catering, Elektro, Stavby.
Version: 1.0.1
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: ellamechatronics
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --color-orange:  #F59E0B;
  --color-green:   #16A34A;
  --color-blue:    #2563EB;
  --color-dark:    #0F172A;
  --color-text:    #1E293B;
  --color-bg:      #FAFAFA;
  --color-white:   #FFFFFF;
  --color-muted:   #64748B;
  --color-border:  #E2E8F0;

  --font-main: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.15);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.20);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h:   72px;
}

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

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

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

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

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-tag--blue   { color: var(--color-blue);   background: rgba(37,99,235,.10); }
.section-tag--orange { color: var(--color-orange);  background: rgba(245,158,11,.10); }
.section-tag--green  { color: var(--color-green);   background: rgba(22,163,74,.10); }
.section-tag--white  { color: #CBD5E1; background: rgba(255,255,255,.08); }

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.section-title--white { color: var(--color-white); }

.section-lead {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 680px;
  line-height: 1.75;
}
.section-lead--white { color: #94A3B8; }

.section-accent-line {
  width: 48px;
  height: 4px;
  border-radius: 2px;
  margin: 16px 0 32px;
}
.section-accent-line--blue   { background: var(--color-blue); }
.section-accent-line--orange { background: var(--color-orange); }
.section-accent-line--green  { background: var(--color-green); }
.section-accent-line--white  { background: var(--color-orange); }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

/* ============================================================
   SCROLL-REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
}

#site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,.10);
  border-bottom-color: var(--color-border);
}

#site-header .container {
  height: 100%;
  width: 100%;
}

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

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-blue) 100%);
  flex-shrink: 0;
}
.logo-mark svg {
  width: 22px;
  height: 22px;
  fill: white;
}
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text-main {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-dark);
}
.logo-text-sub {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover {
  color: var(--color-blue);
  background: rgba(37,99,235,.07);
}
.nav-cta {
  margin-left: 8px;
  background: var(--color-dark) !important;
  color: var(--color-white) !important;
  border-radius: 8px !important;
  padding: 9px 18px !important;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}
.nav-cta:hover {
  background: #1E293B !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.2) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.hamburger:hover { background: var(--color-border); }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
  z-index: 999;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  transition: background var(--transition), color var(--transition);
  border-left: 3px solid transparent;
}
.mobile-nav a:hover {
  background: rgba(37,99,235,.07);
  color: var(--color-blue);
  border-left-color: var(--color-blue);
}
.mobile-nav a.mobile-cta {
  margin-top: 8px;
  background: var(--color-dark);
  color: var(--color-white);
  text-align: center;
  border-radius: var(--radius-md);
  border-left: none;
  font-weight: 600;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  min-height: 100vh;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
}

/* Hexagon / geometric background decoration */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(37,99,235,.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(245,158,11,.12) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 80% 10%, rgba(22,163,74,.10) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}

.hero-content { }

.hero-logo-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 32px;
  filter: brightness(1.1);
}
.hero-logo-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--color-orange), var(--color-blue));
  margin-bottom: 32px;
  font-size: 2rem;
  font-weight: 900;
  color: white;
  letter-spacing: -0.05em;
}

.hero-headline {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-white);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.hero-headline em {
  font-style: normal;
  background: linear-gradient(90deg, var(--color-orange), var(--color-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subline {
  font-size: 1.15rem;
  font-weight: 500;
  color: #94A3B8;
  margin-bottom: 20px;
  line-height: 1.5;
}

.hero-desc {
  font-size: 0.95rem;
  color: #64748B;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}

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

/* CTA Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 0.925rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--color-orange), #D97706);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(245,158,11,.35);
}
.btn-primary:hover { box-shadow: 0 8px 30px rgba(245,158,11,.45); }

.btn-secondary {
  background: rgba(255,255,255,.06);
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.3);
}

.btn-dark {
  background: var(--color-dark);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}
.btn-dark:hover { box-shadow: var(--shadow-lg); }

/* Hero right — decorative cards */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-service-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  backdrop-filter: blur(12px);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.hero-service-badge:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.20);
  transform: translateX(4px);
}
.badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}
.badge-icon--blue   { background: rgba(37,99,235,.2);  }
.badge-icon--orange { background: rgba(245,158,11,.2); }
.badge-icon--green  { background: rgba(22,163,74,.2);  }

.badge-info h3 {
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 4px;
}
.badge-info p {
  font-size: 0.8rem;
  color: #64748B;
  line-height: 1.4;
}

/* Gradient divider line */
.gradient-line {
  height: 4px;
  background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-blue) 50%, var(--color-green) 100%);
  border-radius: 2px;
}

/* ============================================================
   INTRO / ABOUT SECTION (#uvod)
   ============================================================ */
#uvod {
  background: var(--color-bg);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 72px;
}
.intro-left { }
.intro-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.intro-stat {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.intro-stat:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.intro-stat-number {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--color-blue), var(--color-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.intro-stat-label {
  font-size: 0.85rem;
  color: var(--color-muted);
  font-weight: 500;
}

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

.feature-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-orange));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}
.feature-card:hover::after { transform: scaleX(1); }

.feature-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(37,99,235,.1), rgba(245,158,11,.1));
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.7;
}

/* ============================================================
   SERVICE SECTIONS — shared layout
   ============================================================ */
.service-section {
  position: relative;
}
.service-section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  pointer-events: none;
}
.service-section--catering::before { background: var(--color-blue); }
.service-section--elektro::before  { background: var(--color-orange); }
.service-section--stavby::before   { background: var(--color-green); }

.service-layout {
  display: grid;
  gap: 64px;
  align-items: start;
}
.service-layout--img-right { grid-template-columns: 1fr 1fr; }
.service-layout--img-left  { grid-template-columns: 1fr 1fr; }
.service-layout--img-left  .service-images { order: -1; }

/* ============================================================
   CATERING (#catering)
   ============================================================ */
#catering {
  background: #F8FAFF;
}

.catering-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.catering-gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.catering-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.catering-gallery-item:hover img { transform: scale(1.05); }
.catering-gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(37,99,235,.3) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.catering-gallery-item:hover::after { opacity: 1; }

/* ============================================================
   ELEKTRO (#elektro)
   ============================================================ */
#elektro {
  background: var(--color-white);
}

.service-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.service-checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.service-checklist li:hover {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(245,158,11,.08);
}
.checkmark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 900;
}
.checkmark--orange { background: rgba(245,158,11,.15); color: var(--color-orange); }
.checkmark--green  { background: rgba(22,163,74,.15);  color: var(--color-green); }

.service-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.service-images-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.5s ease, box-shadow var(--transition);
}
.service-images-grid img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   STAVBY (#stavby)
   ============================================================ */
#stavby {
  background: #F8FBF8;
}

/* ============================================================
   CONTACT (#kontakt)
   ============================================================ */
#kontakt {
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}
#kontakt::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 50%, rgba(37,99,235,.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 20%, rgba(22,163,74,.08) 0%, transparent 50%);
  pointer-events: none;
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.contact-info p {
  font-size: 0.95rem;
  color: #64748B;
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 4px;
}
.contact-item-text span {
  font-size: 0.95rem;
  color: #CBD5E1;
  font-weight: 500;
}

/* Contact Form */
.contact-form-wrap {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(12px);
}
.contact-form-wrap h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748B;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: 0.925rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--color-white);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group select option {
  background: #1E293B;
  color: var(--color-white);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #475569;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-orange);
  background: rgba(255,255,255,.09);
  box-shadow: 0 0 0 3px rgba(245,158,11,.15);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--color-orange), #D97706);
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 15px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(245,158,11,.3);
}
.btn-submit:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,158,11,.4);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-response {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}
.form-response.success {
  display: block;
  background: rgba(22,163,74,.15);
  border: 1px solid rgba(22,163,74,.3);
  color: #4ADE80;
}
.form-response.error {
  display: block;
  background: rgba(239,68,68,.12);
  border: 1px solid rgba(239,68,68,.25);
  color: #FCA5A5;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: #060D1A;
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.85rem;
  color: #475569;
}
.footer-tagline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #334155;
  font-weight: 500;
}
.footer-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.footer-dot--orange { background: var(--color-orange); }
.footer-dot--blue   { background: var(--color-blue); }
.footer-dot--green  { background: var(--color-green); }

/* Footer gradient line — top */
#site-footer::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-blue) 50%, var(--color-green) 100%);
  margin-bottom: 0;
}

/* ============================================================
   SKIP TO CONTENT (accessibility)
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--color-dark);
  color: white;
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ============================================================
   SECTION SEPARATOR
   ============================================================ */
.sep {
  height: 1px;
  background: var(--color-border);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .intro-right {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .intro-stat { flex: 1; min-width: 140px; }
  .service-layout--img-right,
  .service-layout--img-left {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-layout--img-left .service-images { order: 0; }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .section { padding: 72px 0; }

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

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 0;
  }
  .hero-visual { display: none; }

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

  .catering-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-images-grid { grid-template-columns: 1fr; }
  .service-images-grid img { height: 220px; }

  .contact-form-wrap { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}
