/* =====================
   CLOCKSY — Global Styles
   ===================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --cream: #FAF7F2;
  --cream-dark: #F0EAE0;
  --brown: #2C1A0E;
  --brown-mid: #5C3D22;
  --copper: #B87333;
  --copper-light: #D4944A;
  --text: #2C1A0E;
  --text-muted: #7A6352;
  --white: #FFFFFF;
  --border: #DDD2C2;
  --section-gap: 96px;
  --radius: 4px;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
}

/* =====================
   TYPOGRAPHY
   ===================== */

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

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}

/* =====================
   LAYOUT
   ===================== */

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

.section {
  padding: var(--section-gap) 0;
}

/* =====================
   HEADER / NAV
   ===================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.site-header.scrolled {
  border-bottom-color: var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: -0.01em;
}

.logo span {
  color: var(--copper);
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--brown);
  color: var(--cream) !important;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--copper) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================
   HERO
   ===================== */

.hero {
  min-height: 100vh;
  padding-top: 68px;
  display: flex;
  align-items: center;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  width: 100%;
}

.hero-content {
  padding: 60px 0;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.1;
  margin-bottom: 24px;
}

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

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--copper);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--brown);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 26, 14, 0.2);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--brown);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1.5px solid var(--brown);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--brown);
  color: var(--cream);
}

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

.hero-proof {
  margin-top: 48px;
  display: flex;
  gap: 32px;
}

.proof-item {
  display: flex;
  flex-direction: column;
}

.proof-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
}

.proof-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 2px;
}

.hero-image-badge {
  position: absolute;
  bottom: 32px;
  left: -24px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(44, 26, 14, 0.12);
}

.hero-image-badge strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
  font-family: 'Playfair Display', serif;
}

.hero-image-badge span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =====================
   FOR WHOM
   ===================== */

.for-whom {
  background: var(--brown);
  color: var(--cream);
}

.for-whom .section-label {
  color: var(--copper-light);
}

.for-whom .section-title {
  color: var(--cream);
}

.for-whom .section-subtitle {
  color: rgba(250, 247, 242, 0.65);
}

.whom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.whom-card {
  background: rgba(255,255,255,0.05);
  padding: 36px 32px;
  border-top: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.whom-card:hover {
  border-top-color: var(--copper);
  background: rgba(255,255,255,0.08);
}

.whom-icon {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

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

.whom-card p {
  font-size: 0.9rem;
  color: rgba(250, 247, 242, 0.6);
  line-height: 1.65;
}

/* =====================
   PROGRAM
   ===================== */

.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 56px;
}

.program-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 2px;
}

.program-modules {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.module-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.module-item:first-child {
  border-top: 1px solid var(--border);
}

.module-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--copper);
  opacity: 0.5;
  line-height: 1;
  min-width: 36px;
  padding-top: 2px;
}

.module-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 6px;
}

.module-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =====================
   FORMAT
   ===================== */

.format {
  background: var(--cream-dark);
}

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

.format-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.format-card-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.format-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 10px;
}

.format-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =====================
   RESULTS / GALLERY
   ===================== */

.results-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 56px;
}

.results-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.results-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.result-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.result-check::after {
  content: '';
  width: 6px;
  height: 10px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

.results-list li span {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.results-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 2px;
}

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

.gallery-strip img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.4s ease;
}

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

/* =====================
   PROCESS STEPS
   ===================== */

.process {
  background: var(--cream-dark);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.steps::after {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 16px;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--copper);
  transition: background 0.3s, border-color 0.3s;
}

.step:hover .step-num {
  background: var(--copper);
  border-color: var(--copper);
  color: white;
}

.step h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 10px;
}

.step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =====================
   TRUST / ABOUT
   ===================== */

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

.trust-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 2px;
}

.trust-content .section-title {
  margin-bottom: 28px;
}

.trust-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.trust-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.trust-fact {
  padding: 20px;
  background: var(--cream-dark);
  border-radius: var(--radius);
}

.trust-fact-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--copper);
  margin-bottom: 4px;
}

.trust-fact-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =====================
   FAQ
   ===================== */

.faq {
  background: var(--cream-dark);
}

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

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--brown);
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--copper);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--copper);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 0 24px;
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  display: block;
}

/* =====================
   LEAD FORM
   ===================== */

.lead-form-section {
  background: var(--brown);
  color: var(--cream);
}

.lead-form-section .section-label {
  color: var(--copper-light);
}

.lead-form-section .section-title {
  color: var(--cream);
}

.lead-form-section .section-subtitle {
  color: rgba(250, 247, 242, 0.6);
}

.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 56px;
}

.form-promise {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-promise-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.promise-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1;
}

.form-promise-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--cream);
  margin-bottom: 4px;
}

.form-promise-item span {
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.55);
  line-height: 1.5;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(250, 247, 242, 0.6);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select {
  padding: 14px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--cream);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder {
  color: rgba(250, 247, 242, 0.3);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--copper);
  background: rgba(255,255,255,0.1);
}

.form-group select option {
  background: var(--brown);
  color: var(--cream);
}

.form-note {
  font-size: 0.75rem;
  color: rgba(250, 247, 242, 0.35);
  line-height: 1.5;
}

.form-note a {
  color: rgba(250, 247, 242, 0.55);
  text-decoration: underline;
}

.btn-primary-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--copper);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
}

.btn-primary-light:hover {
  background: var(--copper-light);
  transform: translateY(-1px);
}

/* =====================
   FOOTER
   ===================== */

.site-footer {
  background: #1C0E06;
  color: rgba(250, 247, 242, 0.5);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
}

.footer-logo span {
  color: var(--copper);
}

.footer-logo p {
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.4);
  margin-top: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.45);
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal {
  font-size: 0.78rem;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.78rem;
  color: rgba(250, 247, 242, 0.35);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(250, 247, 242, 0.65);
}

/* =====================
   COOKIE BANNER
   ===================== */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(640px, calc(100% - 32px));
  background: var(--brown);
  color: var(--cream);
  padding: 20px 24px;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 999;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner.hidden {
  transform: translate(-50%, 120%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner p {
  font-size: 0.85rem;
  line-height: 1.5;
  flex: 1;
}

.cookie-banner p a {
  color: var(--copper-light);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie-accept {
  padding: 8px 18px;
  background: var(--copper);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-cookie-accept:hover {
  background: var(--copper-light);
}

.btn-cookie-decline {
  padding: 8px 14px;
  background: transparent;
  color: rgba(250,247,242,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  font-size: 0.85rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.btn-cookie-decline:hover {
  color: var(--cream);
  border-color: rgba(255,255,255,0.4);
}

/* =====================
   LEGAL PAGES
   ===================== */

.legal-page {
  padding: 120px 0 80px;
}

.legal-page h1 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 12px;
}

.legal-page .updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.legal-body {
  max-width: 760px;
}

.legal-body h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--brown);
  font-family: 'Playfair Display', serif;
}

.legal-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-body ul li {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 4px;
}

/* =====================
   SUCCESS PAGE
   ===================== */

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.success-inner {
  max-width: 480px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--copper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 2rem;
}

.success-inner h1 {
  font-size: 2rem;
  color: var(--brown);
  margin-bottom: 16px;
}

.success-inner p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* =====================
   RESPONSIVE
   ===================== */

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 68px;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    height: 380px;
  }

  .hero-image-badge {
    left: 16px;
    bottom: 16px;
  }

  .hero-content {
    padding: 40px 0 60px;
  }

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

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

  .program-image {
    order: -1;
  }

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

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

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

  .trust-image {
    order: -1;
  }

  .form-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .steps::after {
    display: none;
  }

  .step {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 64px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

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

  .burger {
    display: flex;
  }

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

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

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

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

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

  .footer-top {
    flex-direction: column;
  }

  .hero-proof {
    gap: 24px;
  }

  .trust-facts {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
  }

  .btn-cookie-accept, .btn-cookie-decline {
    flex: 1;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
