


:root {
  
  --c-bg: #f5f0e8;
  --c-bg-warm: #ede7d9;
  --c-bg-dark: #2a2318;
  --c-surface: #faf7f1;
  --c-surface-glass: rgba(250, 247, 241, 0.75);

  --c-primary: #4a6741;
  --c-primary-light: #6a8f60;
  --c-primary-dark: #334a2d;
  --c-primary-pale: #e8f0e5;

  --c-secondary: #8b6914;
  --c-secondary-light: #b8900f;
  --c-secondary-pale: #f5edda;

  --c-accent: #c4713a;
  --c-accent-pale: #f5e6d8;

  --c-text-dark: #1e1a12;
  --c-text-body: #3d3526;
  --c-text-muted: #7a6e5a;
  --c-text-light: #a89f8c;

  --c-border: #d8cdb8;
  --c-border-light: #ede6d8;

  
  --g-hero: linear-gradient(135deg, #2a2318 0%, #4a3d28 40%, #3d5235 100%);
  --g-accent: linear-gradient(120deg, var(--c-primary) 0%, var(--c-secondary) 100%);
  --g-warm: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-warm) 100%);
  --g-surface: linear-gradient(160deg, var(--c-surface) 0%, #f0ead8 100%);

  
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2.5rem;
  --sp-xl: 4rem;
  --sp-2xl: 6rem;
  --sp-3xl: 8rem;

  
  --shadow-sm: 0 1px 3px rgba(42, 35, 24, 0.08), 0 1px 2px rgba(42, 35, 24, 0.06);
  --shadow-md: 0 4px 12px rgba(42, 35, 24, 0.10), 0 2px 6px rgba(42, 35, 24, 0.07);
  --shadow-lg: 0 10px 30px rgba(42, 35, 24, 0.12), 0 4px 12px rgba(42, 35, 24, 0.08);
  --shadow-xl: 0 20px 50px rgba(42, 35, 24, 0.15), 0 8px 20px rgba(42, 35, 24, 0.10);
  --shadow-glass: 0 8px 32px rgba(42, 35, 24, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.4);

  
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-pill: 9999px;

  
  --t-fast: 150ms ease-out;
  --t-base: 250ms ease-out;
  --t-slow: 400ms ease-out;

  
  --nav-h: 72px;
}


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

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--c-bg);
  color: var(--c-text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--c-primary);
  text-decoration: none;
  transition: color var(--t-base);
}

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

ul {
  list-style: none;
}


.c-page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-slow) cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: right center;
  background-color: var(--c-bg);
  position: relative;
  z-index: 1;
}

.c-page-wrapper.is-pushed {
  transform: translateX(-280px) scale(0.95);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

main {
  flex: 1;
}


.u-heading-1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-text-dark);
  letter-spacing: -0.02em;
}

.u-heading-2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--c-text-dark);
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-md);
}

.u-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--c-text-body);
  margin-bottom: var(--sp-md);
}

.u-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-primary);
  display: block;
  margin-bottom: var(--sp-sm);
}

.u-text-center { text-align: center; }
.u-text-sm { font-size: 0.875rem; color: var(--c-text-muted); }
.u-mt-md { margin-top: var(--sp-md); }
.u-hidden { display: none !important; }
.u-img-rounded {
  border-radius: var(--r-lg);
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow-lg);
}


.u-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
}


.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--r-pill);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color var(--t-base), color var(--t-base), border-color var(--t-base), transform var(--t-fast), box-shadow var(--t-base);
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}

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

.c-btn:active {
  transform: translateY(0);
}

.c-btn--primary {
  background-color: var(--c-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(74, 103, 65, 0.3);
}

.c-btn--primary:hover {
  background-color: var(--c-primary-dark);
  color: #fff;
  box-shadow: 0 6px 20px rgba(74, 103, 65, 0.4);
}

.c-btn--ghost {
  background-color: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}

.c-btn--ghost:hover {
  background-color: rgba(255,255,255,0.22);
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.c-btn--outline {
  background-color: transparent;
  color: var(--c-primary);
  border-color: var(--c-primary);
}

.c-btn--outline:hover {
  background-color: var(--c-primary);
  color: #fff;
}

.c-btn--full {
  width: 100%;
}


.c-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 900;
  height: var(--nav-h);
  background-color: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-border-light);
  transition: transform var(--t-slow), box-shadow var(--t-base);
  box-shadow: var(--shadow-sm);
}

.c-nav.is-hidden {
  transform: translateY(-100%);
}

.c-nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
}

.c-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}

.c-nav__logo {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.c-nav__brand-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-text-dark);
  white-space: nowrap;
}

.c-nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
}

.c-nav__link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-text-body);
  padding: 0.4rem 0.75rem;
  border-radius: var(--r-sm);
  transition: color var(--t-base), background-color var(--t-base);
  white-space: nowrap;
}

.c-nav__link:hover,
.c-nav__link.is-active {
  color: var(--c-primary);
  background-color: var(--c-primary-pale);
}

.c-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 8px;
  border-radius: var(--r-sm);
  transition: background-color var(--t-base);
}

.c-nav__hamburger:hover {
  background-color: var(--c-primary-pale);
}

.c-nav__hamburger span {
  display: block;
  height: 2px;
  background-color: var(--c-text-dark);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}


.c-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: var(--g-hero);
  z-index: 800;
  display: flex;
  flex-direction: column;
  padding: var(--sp-xl) var(--sp-lg) var(--sp-lg);
  transform: translateX(-100%);
  transition: transform var(--t-slow) cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.c-mobile-menu.is-open {
  transform: translateX(0);
}

.c-mobile-menu__close {
  position: absolute;
  top: var(--sp-md);
  left: var(--sp-md);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-md);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--t-base);
}

.c-mobile-menu__close:hover {
  background: rgba(255,255,255,0.22);
}

.c-mobile-menu__links {
  margin-top: var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.c-mobile-menu__link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 0.75rem var(--sp-sm);
  border-radius: var(--r-md);
  transition: background-color var(--t-base), color var(--t-base);
  display: block;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.c-mobile-menu__link:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.c-mobile-menu__footer {
  margin-top: auto;
  padding-top: var(--sp-lg);
  border-top: 1px solid rgba(255,255,255,0.15);
}

.c-mobile-menu__footer p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}


.s-hero {
  position: relative;
  min-height: 100vh;
  background: var(--g-hero);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + var(--sp-2xl)) var(--sp-md) var(--sp-3xl);
  overflow: hidden;
  text-align: center;
}

.s-hero__bg-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(74, 103, 65, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 105, 20, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.s-hero__gradient {
  position: absolute;
  inset: 0;
  
  pointer-events: none;
}

.s-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.s-hero__eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--sp-md);
}

.s-hero__heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-md);
}

.s-hero__heading-accent {
  color: transparent;
  background: linear-gradient(120deg, #a8d48a 0%, #d4a843 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.s-hero__subtext {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: var(--sp-lg);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.s-hero__actions {
  display: flex;
  gap: var(--sp-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-xl);
}

.s-hero__image-wrap {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  margin-top: var(--sp-xl);
}

.s-hero__image {
  width: 100%;
  border-radius: var(--r-xl);
  object-fit: cover;
  height: 380px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 8px 20px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.12);
}

.s-hero__image-blob {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 40px;
  background: rgba(0,0,0,0.3);
  filter: blur(20px);
  border-radius: 50%;
}


.s-hero__badge {
  position: absolute;
  z-index: 3;
  background: var(--c-surface-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--r-lg);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-text-dark);
  box-shadow: var(--shadow-glass);
}

.s-hero__badge i {
  color: var(--c-primary);
  font-size: 0.9rem;
}

.s-hero__badge--tl { top: 22%; right: 8%; }
.s-hero__badge--tr { top: 28%; left: 6%; }
.s-hero__badge--bl { bottom: 22%; right: 6%; }
.s-hero__badge--br { bottom: 28%; left: 8%; }


.s-intro {
  padding: var(--sp-3xl) 0;
  background: var(--c-bg);
}

.s-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}

.s-intro__image-frame {
  position: relative;
}

.s-intro__image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
}

.s-intro__image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border-radius: var(--r-lg);
  background: var(--g-accent);
  opacity: 0.15;
  z-index: -1;
}


.s-services {
  padding: var(--sp-3xl) 0;
  background: var(--c-bg-warm);
  position: relative;
}

.s-services__header {
  margin-bottom: var(--sp-2xl);
}

.s-services__subtitle {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}


.c-accordion {
  container-type: inline-size;
  container-name: accordion;
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.c-accordion__item {
  background: var(--c-surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-base);
}

.c-accordion__item:hover {
  box-shadow: var(--shadow-md);
}

.c-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-md) var(--sp-lg);
  background: none;
  border: none;
  cursor: pointer;
  text-align: right;
  gap: var(--sp-md);
  min-height: 64px;
  transition: background-color var(--t-base);
}

.c-accordion__trigger:hover {
  background-color: var(--c-primary-pale);
}

.c-accordion__trigger[aria-expanded="true"] {
  background-color: var(--c-primary-pale);
  border-bottom: 1px solid var(--c-border-light);
}

.c-accordion__trigger-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.c-accordion__icon {
  width: 40px;
  height: 40px;
  background: var(--g-accent);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(74, 103, 65, 0.25);
}

.c-accordion__icon--sm {
  width: 32px;
  height: 32px;
  font-size: 0.8rem;
}

.c-accordion__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text-dark);
}

.c-accordion__arrow {
  color: var(--c-text-muted);
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform var(--t-base);
}

.c-accordion__trigger[aria-expanded="true"] .c-accordion__arrow {
  transform: rotate(180deg);
}

.c-accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.c-accordion__panel.is-open {
  max-height: 600px;
}

.c-accordion__panel-inner {
  padding: var(--sp-lg);
}

.c-accordion__panel-inner p {
  color: var(--c-text-body);
  line-height: 1.75;
  margin-bottom: var(--sp-sm);
}

.c-accordion__panel-inner p:last-child {
  margin-bottom: 0;
}

.c-accordion__panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: start;
}

.c-accordion__panel-highlight {
  background: var(--c-primary-pale);
  border-radius: var(--r-md);
  padding: var(--sp-md);
  border: 1px solid rgba(74, 103, 65, 0.15);
}

.c-accordion__panel-highlight h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-primary-dark);
  margin-bottom: var(--sp-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.c-accordion__panel-highlight ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.c-accordion__panel-highlight ul li {
  font-size: 0.9rem;
  color: var(--c-text-body);
  padding-right: 1rem;
  position: relative;
}

.c-accordion__panel-highlight ul li::before {
  content: '•';
  position: absolute;
  right: 0;
  color: var(--c-primary);
}


.c-accordion--compact .c-accordion__trigger {
  padding: var(--sp-sm) var(--sp-md);
  min-height: 52px;
}

.c-accordion--compact .c-accordion__panel-inner {
  padding: var(--sp-sm) var(--sp-md);
}


.s-process {
  padding: var(--sp-3xl) 0;
  background: var(--c-bg-dark);
  position: relative;
  overflow: hidden;
}

.s-process__bg-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(74, 103, 65, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(139, 105, 20, 0.12) 0%, transparent 40%);
  pointer-events: none;
}

.s-process__header {
  margin-bottom: var(--sp-2xl);
}

.s-process__header .u-label {
  color: rgba(255,255,255,0.5);
}

.s-process__header .u-heading-2 {
  color: #fff;
}

.s-process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.c-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--sp-md);
  position: relative;
}

.c-step__number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-primary-light);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.c-step__icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a8d48a;
  font-size: 1.3rem;
  margin-bottom: var(--sp-md);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-glass);
  transition: background-color var(--t-base), transform var(--t-base);
}

.c-step:hover .c-step__icon {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}

.c-step__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.625rem;
}

.c-step__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

.c-step__connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.3), rgba(255,255,255,0.1));
  margin-top: 48px;
  flex-shrink: 0;
  position: relative;
}

.c-step__connector::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-primary-light);
}


.s-markets {
  padding: var(--sp-3xl) 0;
  background: var(--c-bg);
}

.s-markets__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}

.s-markets__image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
}

.s-markets__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--sp-md);
}

.c-tag {
  background: var(--c-secondary-pale);
  color: var(--c-secondary);
  border: 1px solid rgba(139, 105, 20, 0.2);
  padding: 0.3rem 0.85rem;
  border-radius: var(--r-pill);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
}


.s-newsletter {
  padding: var(--sp-xl) 0;
  background: var(--g-accent);
}

.s-newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-lg);
}

.s-newsletter__heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}

.s-newsletter__sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.s-newsletter__form {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.s-newsletter__input {
  padding: 0.75rem 1.25rem;
  border-radius: var(--r-pill);
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  min-width: 260px;
  backdrop-filter: blur(8px);
  transition: border-color var(--t-base), background-color var(--t-base);
}

.s-newsletter__input::placeholder {
  color: rgba(255,255,255,0.6);
}

.s-newsletter__input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.2);
}

.s-newsletter .c-btn--primary {
  background-color: #fff;
  color: var(--c-primary-dark);
  box-shadow: none;
}

.s-newsletter .c-btn--primary:hover {
  background-color: var(--c-bg-warm);
  color: var(--c-primary-dark);
}


.s-why {
  padding: var(--sp-3xl) 0;
  background: var(--c-bg-warm);
}

.s-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: start;
}

.s-why__image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
}


.s-location {
  padding: var(--sp-3xl) 0;
  background: var(--c-bg);
}

.s-location__header {
  margin-bottom: var(--sp-2xl);
}

.s-location__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-2xl);
  align-items: start;
}

.s-location__info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.s-location__map iframe {
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}

.c-contact-item {
  display: flex;
  gap: var(--sp-md);
  align-items: flex-start;
}

.c-contact-item__icon {
  width: 44px;
  height: 44px;
  background: var(--c-primary-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid rgba(74, 103, 65, 0.15);
}

.c-contact-item h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.c-contact-item p {
  font-size: 0.95rem;
  color: var(--c-text-body);
  line-height: 1.6;
}

.c-contact-item a {
  color: var(--c-primary);
}


.s-page-hero {
  padding: calc(var(--nav-h) + var(--sp-2xl)) var(--sp-md) var(--sp-2xl);
  background: var(--g-hero);
  position: relative;
  overflow: hidden;
}

.s-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(74, 103, 65, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.s-page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.s-page-hero__heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-md);
}

.s-page-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

.s-page-hero .u-label {
  color: rgba(255,255,255,0.5);
}


.s-expertise-intro {
  padding: var(--sp-3xl) 0;
  background: var(--c-bg);
}

.s-expertise-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: start;
}

.s-approach {
  padding: var(--sp-3xl) 0;
  background: var(--c-bg-warm);
}

.s-approach__header {
  margin-bottom: var(--sp-2xl);
}

.s-sectors {
  padding: var(--sp-3xl) 0;
  background: var(--c-bg);
}

.s-sectors__header {
  margin-bottom: var(--sp-2xl);
}

.s-sectors__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-md);
}

.c-sector-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  box-shadow: var(--shadow-sm);
}

.c-sector-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(74, 103, 65, 0.25);
}

.c-sector-card__icon {
  width: 48px;
  height: 48px;
  background: var(--c-primary-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  font-size: 1.1rem;
  margin-bottom: var(--sp-md);
  border: 1px solid rgba(74, 103, 65, 0.15);
}

.c-sector-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text-dark);
  margin-bottom: 0.5rem;
}

.c-sector-card p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}

.s-cta-strip {
  padding: var(--sp-2xl) 0;
  background: var(--c-primary-pale);
  border-top: 1px solid rgba(74, 103, 65, 0.15);
  border-bottom: 1px solid rgba(74, 103, 65, 0.15);
}

.s-cta-strip__inner {
  max-width: 600px;
  margin: 0 auto;
}

.s-cta-strip__inner .u-body {
  margin-bottom: var(--sp-lg);
}


.s-booking {
  padding: var(--sp-3xl) 0;
  background: var(--c-bg);
}

.s-booking__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: start;
}

.s-booking__steps {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  margin: var(--sp-lg) 0;
}

.c-booking-step {
  display: flex;
  gap: var(--sp-md);
  align-items: flex-start;
}

.c-booking-step__num {
  width: 36px;
  height: 36px;
  background: var(--g-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(74, 103, 65, 0.3);
}

.c-booking-step h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-text-dark);
  margin-bottom: 0.25rem;
}

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

.s-booking__note {
  display: flex;
  gap: var(--sp-sm);
  align-items: flex-start;
  background: var(--c-secondary-pale);
  border: 1px solid rgba(139, 105, 20, 0.2);
  border-radius: var(--r-md);
  padding: var(--sp-md);
}

.s-booking__note i {
  color: var(--c-secondary);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.s-booking__note p {
  font-size: 0.875rem;
  color: var(--c-text-body);
  line-height: 1.6;
}

.s-booking-image {
  padding: 0 0 var(--sp-3xl);
  background: var(--c-bg);
}

.s-booking-image__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
}


.c-form-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-lg);
}

.c-form-card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--c-text-dark);
  margin-bottom: var(--sp-lg);
}

.c-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.c-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.c-form__label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-text-dark);
}

.c-form__input,
.c-form__select,
.c-form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--c-text-dark);
  transition: border-color var(--t-base), box-shadow var(--t-base), background-color var(--t-base);
  min-height: 44px;
}

.c-form__input:focus,
.c-form__select:focus,
.c-form__textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  background: var(--c-surface);
  box-shadow: 0 0 0 3px rgba(74, 103, 65, 0.12);
}

.c-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.c-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a6e5a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 1rem center;
  padding-left: 2.5rem;
}

.c-form__checkbox-wrap {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.c-form__checkbox {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--c-primary);
  cursor: pointer;
}

.c-form__checkbox-label {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  cursor: pointer;
}

.c-form__checkbox-label a {
  color: var(--c-primary);
  text-decoration: underline;
}


.s-hours {
  padding: var(--sp-3xl) 0;
  background: var(--c-bg);
}

.s-hours__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: start;
}

.c-hours-table {
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin: var(--sp-lg) 0;
  background: var(--c-surface);
  box-shadow: var(--shadow-sm);
}

.c-hours-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  padding: 0.875rem var(--sp-md);
  border-bottom: 1px solid var(--c-border-light);
  align-items: center;
  transition: background-color var(--t-base);
}

.c-hours-row:last-child {
  border-bottom: none;
}

.c-hours-row:hover {
  background-color: var(--c-primary-pale);
}

.c-hours-day {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-text-dark);
}

.c-hours-time {
  font-size: 0.9rem;
  color: var(--c-text-body);
}

.c-hours-status {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-pill);
}

.c-hours-status--open {
  background: var(--c-primary-pale);
  color: var(--c-primary-dark);
}

.c-hours-status--closed {
  background: #f0e8e8;
  color: #8b3a3a;
}

.s-hours__note {
  display: flex;
  gap: var(--sp-sm);
  align-items: flex-start;
  background: var(--c-secondary-pale);
  border: 1px solid rgba(139, 105, 20, 0.2);
  border-radius: var(--r-md);
  padding: var(--sp-md);
  margin-top: var(--sp-md);
}

.s-hours__note i {
  color: var(--c-secondary);
  flex-shrink: 0;
  margin-top: 3px;
}

.s-hours__note p {
  font-size: 0.875rem;
  color: var(--c-text-body);
  line-height: 1.6;
}

.s-hours__remote-options {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  margin: var(--sp-lg) 0;
}

.c-remote-option {
  display: flex;
  gap: var(--sp-md);
  align-items: flex-start;
}

.c-remote-option__icon {
  width: 44px;
  height: 44px;
  background: var(--c-primary-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid rgba(74, 103, 65, 0.15);
}

.c-remote-option h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-text-dark);
  margin-bottom: 0.25rem;
}

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

.s-hours__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  margin-top: var(--sp-md);
}

.s-hours-accordion {
  padding: var(--sp-3xl) 0;
  background: var(--c-bg-warm);
}

.s-hours-accordion__header {
  margin-bottom: var(--sp-2xl);
}


.s-contact {
  padding: var(--sp-3xl) 0;
  background: var(--c-bg);
}

.s-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: start;
}

.s-contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  margin: var(--sp-lg) 0;
}

.s-contact__map iframe {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}


.s-accessibility {
  padding: var(--sp-2xl) 0;
  background: var(--c-bg-warm);
}

.s-accessibility__card {
  display: flex;
  gap: var(--sp-lg);
  align-items: flex-start;
  background: var(--c-surface);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-md);
}

.s-accessibility__icon {
  width: 56px;
  height: 56px;
  background: var(--c-primary-pale);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  font-size: 1.4rem;
  flex-shrink: 0;
  border: 1px solid rgba(74, 103, 65, 0.15);
}

.s-accessibility__content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-text-dark);
  margin-bottom: var(--sp-sm);
}

.s-accessibility__content p {
  font-size: 0.95rem;
  color: var(--c-text-body);
  line-height: 1.7;
  margin-bottom: var(--sp-sm);
}

.s-accessibility__content p:last-child {
  margin-bottom: 0;
}


.s-thanks-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--nav-h) - 200px);
  padding: var(--sp-3xl) var(--sp-md);
  position: relative;
  background: var(--g-hero);
}

.s-thanks__bg-texture {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(74, 103, 65, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.s-thanks__card {
  position: relative;
  z-index: 1;
  background: var(--c-surface-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--r-xl);
  padding: var(--sp-2xl);
  text-align: center;
  max-width: 560px;
  width: 100%;
  box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255,255,255,0.5);
}

.s-thanks__icon {
  width: 72px;
  height: 72px;
  background: var(--c-primary-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--c-primary);
  margin: 0 auto var(--sp-lg);
  border: 2px solid rgba(74, 103, 65, 0.2);
}

.s-thanks__heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--c-text-dark);
  margin-bottom: var(--sp-md);
}

.s-thanks__text {
  font-size: 1rem;
  color: var(--c-text-body);
  line-height: 1.7;
  margin-bottom: var(--sp-md);
}

.s-thanks__subtext {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-lg);
}

.s-thanks__subtext a {
  color: var(--c-primary);
}


.s-legal {
  padding: calc(var(--nav-h) + var(--sp-2xl)) 0 var(--sp-3xl);
  background: var(--c-bg);
}

.s-legal__header {
  max-width: 780px;
  margin: 0 auto var(--sp-2xl);
  padding: 0 var(--sp-md);
}

.s-legal__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--c-text-dark);
  margin-bottom: 0.5rem;
}

.s-legal__meta {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-md);
}

.s-legal__intro {
  font-size: 1rem;
  color: var(--c-text-body);
  line-height: 1.75;
  padding: var(--sp-md);
  background: var(--c-primary-pale);
  border-radius: var(--r-md);
  border-right: 4px solid var(--c-primary);
}

.s-legal__body {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

.s-legal__body h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--c-text-dark);
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-sm);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--c-border-light);
}

.s-legal__body p {
  font-size: 0.95rem;
  color: var(--c-text-body);
  line-height: 1.8;
  margin-bottom: var(--sp-sm);
}

.s-legal__body ul {
  list-style: disc;
  padding-right: 1.5rem;
  margin-bottom: var(--sp-md);
}

.s-legal__body ul li {
  font-size: 0.95rem;
  color: var(--c-text-body);
  line-height: 1.75;
  margin-bottom: 0.4rem;
}

.s-legal__body a {
  color: var(--c-primary);
  text-decoration: underline;
}

.s-legal__table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-md) 0 var(--sp-lg);
  font-size: 0.875rem;
  box-shadow: var(--shadow-sm);
  border-radius: var(--r-md);
  overflow: hidden;
}

.s-legal__table th {
  background: var(--c-primary-pale);
  color: var(--c-primary-dark);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  padding: 0.75rem 1rem;
  text-align: right;
  border-bottom: 1px solid rgba(74, 103, 65, 0.2);
}

.s-legal__table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--c-border-light);
  color: var(--c-text-body);
  vertical-align: top;
  line-height: 1.6;
}

.s-legal__table tr:last-child td {
  border-bottom: none;
}

.s-legal__table tr:hover td {
  background-color: rgba(245, 240, 232, 0.6);
}

.s-legal__dl {
  margin: var(--sp-md) 0 var(--sp-lg);
}

.s-legal__dl dt {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--c-primary-dark);
  font-size: 0.95rem;
  margin-top: var(--sp-sm);
}

.s-legal__dl dd {
  font-size: 0.9rem;
  color: var(--c-text-body);
  line-height: 1.7;
  padding-right: var(--sp-md);
  border-right: 2px solid var(--c-primary-pale);
  margin-right: 0.25rem;
  margin-bottom: 0.5rem;
}

code {
  font-family: 'Courier New', monospace;
  background: var(--c-bg-warm);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.85em;
  color: var(--c-accent);
}


.c-footer {
  background: var(--c-bg-dark);
  padding-top: var(--sp-3xl);
  margin-top: auto;
}

.c-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--sp-md) var(--sp-2xl);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--sp-2xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.c-footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.c-footer__logo {
  width: 44px;
  height: 44px;
}

.c-footer__brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.c-footer__story {
  font-size: 0.925rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 380px;
}

.c-footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

.c-footer__col-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-md);
}

.c-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.c-footer__col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--t-base);
}

.c-footer__col ul li a:hover {
  color: #fff;
}

.c-footer__bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--sp-md) var(--sp-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

.c-footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.c-footer__bottom a {
  color: rgba(255,255,255,0.5);
}

.c-footer__bottom a:hover {
  color: rgba(255,255,255,0.8);
}


.c-cookie-consent {
  position: fixed;
  bottom: var(--sp-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 2rem);
  max-width: 480px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  padding: var(--sp-lg);
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(16px);
}

.c-cookie-consent.is-expanded {
  max-width: 540px;
}

.c-cookie-consent__compact {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.c-cookie-consent__compact p {
  font-size: 0.9rem;
  color: var(--c-text-body);
  line-height: 1.6;
}

.c-cookie-consent__compact a {
  color: var(--c-primary);
  text-decoration: underline;
}

.c-cookie-consent__actions {
  display: flex;
  gap: 0.5rem;
}

.c-cookie-consent__expanded {
  display: none;
}

.c-cookie-consent.is-expanded .c-cookie-consent__compact {
  display: none;
}

.c-cookie-consent.is-expanded .c-cookie-consent__expanded {
  display: block;
}

.c-cookie-consent__expanded h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text-dark);
  margin-bottom: var(--sp-md);
}

.c-cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--c-border-light);
}

.c-cookie-toggle:last-of-type {
  border-bottom: none;
}

.c-cookie-toggle__info h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-text-dark);
  margin-bottom: 0.2rem;
}

.c-cookie-toggle__info p {
  font-size: 0.8rem;
  color: var(--c-text-muted);
}

.c-cookie-toggle__switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.c-cookie-toggle__switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.c-cookie-toggle__slider {
  position: absolute;
  inset: 0;
  background: var(--c-border);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background-color var(--t-base);
}

.c-cookie-toggle__slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--t-base);
  box-shadow: var(--shadow-sm);
}

.c-cookie-toggle__switch input:checked + .c-cookie-toggle__slider {
  background: var(--c-primary);
}

.c-cookie-toggle__switch input:checked + .c-cookie-toggle__slider::before {
  transform: translateX(20px);
}

.c-cookie-toggle__switch input:disabled + .c-cookie-toggle__slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.c-cookie-consent__expanded-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: var(--sp-md);
}




@media (max-width: 1024px) {
  .s-hero__badge--tl { top: 18%; right: 4%; }
  .s-hero__badge--tr { top: 24%; left: 3%; }
  .s-hero__badge--bl { bottom: 18%; right: 3%; }
  .s-hero__badge--br { bottom: 24%; left: 4%; }

  .s-intro__grid,
  .s-markets__grid,
  .s-why__grid,
  .s-location__grid,
  .s-expertise-intro__grid,
  .s-booking__grid,
  .s-contact__grid,
  .s-hours__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

  .s-intro__image,
  .s-why__image {
    height: 320px;
  }

  .s-markets__image {
    height: 280px;
  }

  .s-process__steps {
    flex-direction: column;
    align-items: center;
  }

  .c-step {
    max-width: 320px;
    width: 100%;
  }

  .c-step__connector {
    width: 1px;
    height: 40px;
    margin-top: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.3), rgba(255,255,255,0.1));
  }

  .c-step__connector::after {
    right: -3px;
    top: auto;
    bottom: 0;
  }

  .s-newsletter__inner {
    flex-direction: column;
    text-align: center;
  }

  .s-newsletter__form {
    width: 100%;
    justify-content: center;
  }

  .s-newsletter__input {
    min-width: 0;
    flex: 1;
    max-width: 320px;
  }

  .c-footer__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

  .c-footer__links {
    grid-template-columns: repeat(3, 1fr);
  }

  .s-sectors__grid {
    grid-template-columns: 1fr 1fr;
  }

  .c-accordion__panel-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 768px) {
  :root {
    --sp-2xl: 3.5rem;
    --sp-3xl: 5rem;
  }

  .c-nav__links {
    display: none;
  }

  .c-nav__hamburger {
    display: flex;
  }

  .s-hero__badge {
    display: none;
  }

  .s-hero__image {
    height: 240px;
  }

  .s-intro__image,
  .s-why__image {
    height: 260px;
  }

  .s-booking-image__img {
    height: 260px;
  }

  .s-hours__image {
    height: 180px;
  }

  .s-sectors__grid {
    grid-template-columns: 1fr;
  }

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

  .c-footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .s-accessibility__card {
    flex-direction: column;
  }

  .s-legal__table {
    font-size: 0.8rem;
  }

  .s-legal__table th,
  .s-legal__table td {
    padding: 0.5rem 0.625rem;
  }

  .s-newsletter__form {
    flex-direction: column;
    align-items: stretch;
  }

  .s-newsletter__input {
    max-width: 100%;
  }

  .c-form-card {
    padding: var(--sp-lg);
  }

  .s-contact__map iframe {
    height: 220px;
  }

  .s-location__map iframe {
    height: 260px;
  }

  .c-accordion__trigger {
    padding: var(--sp-sm) var(--sp-md);
  }

  .c-accordion__trigger-inner {
    gap: var(--sp-sm);
  }
}

@media (max-width: 480px) {
  .s-hero__actions {
    flex-direction: column;
    align-items: center;
  }

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

  .s-hero__actions .c-btn {
    max-width: 280px;
  }

  .c-footer__links {
    grid-template-columns: 1fr;
    gap: var(--sp-md);
  }

  .c-hours-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem;
  }

  .c-hours-status {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .s-thanks__card {
    padding: var(--sp-lg);
  }

  .c-cookie-consent__actions {
    flex-direction: column;
  }
}