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

:root {
  --color-bg: #f7f5f0;
  --color-surface: #ffffff;
  --color-surface-2: #f0ede6;
  --color-border: #e8e2d9;
  --color-text: #1c1a17;
  --color-text-muted: #6b6459;
  --color-text-light: #9c9082;
  --color-gold: #b8860b;
  --color-gold-light: #d4a017;
  --color-gold-pale: #f5e6c0;
  --color-gold-warm: #c9a227;
  --color-dark: #1a1714;
  --color-dark-2: #2a2520;
  --color-accent: #8b5e0a;
  --color-green: #2d6a4f;
  --color-yellow: #b07d11;
  --color-red: #8b2020;
  --color-blue: #1a4a6b;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(28,26,23,0.08), 0 1px 2px rgba(28,26,23,0.04);
  --shadow-md: 0 4px 12px rgba(28,26,23,0.10), 0 2px 6px rgba(28,26,23,0.06);
  --shadow-lg: 0 8px 24px rgba(28,26,23,0.12), 0 4px 12px rgba(28,26,23,0.07), 0 1px 4px rgba(28,26,23,0.04);
  --shadow-xl: 0 20px 48px rgba(28,26,23,0.16), 0 8px 24px rgba(28,26,23,0.09), 0 2px 8px rgba(28,26,23,0.05);
  --shadow-gold: 0 4px 16px rgba(184,134,11,0.25), 0 2px 8px rgba(184,134,11,0.15);
  --font-heading: 'General Sans', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;
  --header-h: 72px;
}

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

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

body.u-body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.u-hidden { display: none !important; }
.u-hidden-mobile { display: none; }
.u-text-center { text-align: center; }
.u-text-gold { color: var(--color-gold-light); }
.u-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}
.u-eyebrow--light { color: rgba(255,255,255,0.75); }


.c-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(247,245,240,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.c-header.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.c-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}
.c-header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}
.c-header__logo-img { width: 32px; height: 32px; }
.c-header__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-text);
  letter-spacing: -0.02em;
}


.c-nav { display: flex; align-items: center; gap: var(--space-1); }
.c-nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
}
.c-nav__link:hover, .c-nav__link.is-active {
  color: var(--color-text);
  background: var(--color-surface-2);
}
.c-nav__link.is-active { color: var(--color-gold); }


.c-hamburger {
  width: 44px; height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}
.c-hamburger:hover { background: var(--color-surface-2); }
.c-hamburger__line {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-text);
  border-radius: var(--radius-full);
  transition: transform 0.3s ease, opacity 0.3s ease;
}


.c-mini-nav {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99;
}
.c-mini-nav__btn {
  width: 48px; height: 48px;
  background: var(--color-gold);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-gold);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.c-mini-nav__btn:hover {
  background: var(--color-accent);
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}


.c-drawer { position: fixed; inset: 0; z-index: 200; pointer-events: none; }
.c-drawer.is-open { pointer-events: all; }
.c-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,23,20,0.6);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.c-drawer.is-open .c-drawer__overlay { opacity: 1; }
.c-drawer__panel {
  position: absolute;
  top: 0; right: 0;
  width: min(360px, 90vw);
  height: 100vh;
  background: var(--color-surface);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: var(--shadow-xl);
}
.c-drawer.is-open .c-drawer__panel { transform: translateX(0); }
.c-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--color-border);
}
.c-drawer__close {
  width: 44px; height: 44px;
  background: var(--color-surface-2);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--color-text);
  transition: background 0.2s ease;
}
.c-drawer__close:hover { background: var(--color-border); }
.c-drawer__nav {
  flex: 1;
  padding: var(--space-5) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  overflow-y: auto;
}
.c-drawer__link {
  font-size: 17px;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  transition: color 0.2s ease, background 0.2s ease;
}
.c-drawer__link:hover, .c-drawer__link.is-active {
  color: var(--color-gold);
  background: var(--color-gold-pale);
}
.c-drawer__footer {
  padding: var(--space-5) var(--space-6);
  border-top: 1px solid var(--color-border);
}
.c-drawer__legal {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-4);
  justify-content: center;
}
.c-drawer__legal a {
  font-size: 12px;
  color: var(--color-text-light);
  transition: color 0.2s ease;
}
.c-drawer__legal a:hover { color: var(--color-gold); }


.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.c-btn--primary {
  background: var(--color-gold);
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.c-btn--primary:hover {
  background: var(--color-accent);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184,134,11,0.35);
}
.c-btn--secondary {
  background: var(--color-surface-2);
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}
.c-btn--secondary:hover {
  background: var(--color-border);
  transform: translateY(-1px);
}
.c-btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.c-btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-1px);
}
.c-btn--cta {
  background: #fff;
  color: var(--color-gold);
  box-shadow: var(--shadow-lg);
  font-size: 15px;
  padding: 14px 32px;
}
.c-btn--cta:hover {
  background: var(--color-gold-pale);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}
.c-btn--full { width: 100%; }
.c-btn--large { padding: 14px 28px; font-size: 15px; }


.s-hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100svh;
  padding-top: var(--header-h);
}
.s-hero__image-side {
  position: relative;
  height: 50vh;
  overflow: hidden;
}
.s-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,23,20,0.5) 0%, rgba(184,134,11,0.15) 100%);
}
.s-hero__badge {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  background: rgba(26,23,20,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(184,134,11,0.4);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-5);
  text-align: center;
  color: #fff;
}
.s-hero__badge-label { display: block; font-size: 14px; font-weight: 700; color: var(--color-gold-light); }
.s-hero__badge-sub { display: block; font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 2px; }
.s-hero__stat-card {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  box-shadow: var(--shadow-lg);
}
.s-hero__stat-icon { color: var(--color-gold); font-size: 20px; }
.s-hero__stat-num { font-size: 24px; font-weight: 800; color: var(--color-text); line-height: 1; }
.s-hero__stat-label { font-size: 11px; color: var(--color-text-muted); }
.s-hero__panel {
  background: var(--color-dark);
  display: flex;
  align-items: center;
  padding: var(--space-8) var(--space-6);
}
.s-hero__panel-inner { max-width: 480px; }
.s-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(184,134,11,0.18);
  color: var(--color-gold-light);
  font-size: 12px;
  font-weight: 600;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
  letter-spacing: 0.04em;
}
.s-hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
}
.s-hero__subtext {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}
.s-hero__ctas { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-bottom: var(--space-6); }
.s-hero__meta { display: flex; flex-wrap: wrap; gap: var(--space-5); }
.s-hero__meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}
.s-hero__meta-item i { color: var(--color-gold-light); }


.s-intro { padding: var(--space-9) 0; background: var(--color-bg); }
.s-intro__container { max-width: 1280px; margin: 0 auto; padding: 0 var(--space-6); }
.s-intro__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-8); }
.s-intro__heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: var(--space-5);
  line-height: 1.15;
}
.s-intro__body { font-size: 16px; color: var(--color-text-muted); line-height: 1.75; margin-bottom: var(--space-4); }
.s-intro__text-col { display: flex; flex-direction: column; justify-content: center; }
.s-intro__text-col .c-btn { align-self: flex-start; margin-top: var(--space-4); }
.s-intro__widget-col { display: flex; flex-direction: column; gap: var(--space-4); }


.c-widget {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.c-widget:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.c-widget--process { }
.c-widget__header { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-5); }
.c-widget__icon { font-size: 20px; color: var(--color-gold); }
.c-widget__title { font-weight: 700; font-size: 15px; color: var(--color-text); }
.c-widget__steps { display: flex; flex-direction: column; gap: var(--space-4); }
.c-widget__step { display: flex; align-items: flex-start; gap: var(--space-3); }
.c-widget__step-num {
  background: var(--color-gold-pale);
  color: var(--color-gold);
  font-size: 11px;
  font-weight: 800;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.c-widget__step-info strong { display: block; font-size: 14px; font-weight: 600; color: var(--color-text); }
.c-widget__step-info p { font-size: 13px; color: var(--color-text-muted); margin-top: 2px; }
.c-widget--location {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.c-widget__icon-lg { font-size: 28px; color: var(--color-gold); flex-shrink: 0; }
.c-widget__loc-title { font-size: 15px; font-weight: 700; color: var(--color-text); }
.c-widget__loc-sub { font-size: 13px; color: var(--color-text-muted); margin-top: 2px; }
.c-widget--small { display: flex; align-items: center; gap: var(--space-4); padding: var(--space-4) var(--space-5); }
.c-widget__icon-sm { font-size: 22px; color: var(--color-gold); flex-shrink: 0; }
.c-widget--small strong { font-size: 14px; font-weight: 600; display: block; }
.c-widget--small p { font-size: 13px; color: var(--color-text-muted); margin-top: 2px; }


.s-services {
  padding: var(--space-9) 0;
  background: var(--color-surface);
}
.s-services__container { max-width: 1280px; margin: 0 auto; padding: 0 var(--space-6); }
.s-services__header { text-align: center; margin-bottom: var(--space-8); max-width: 600px; margin-left: auto; margin-right: auto; }
.s-services__heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-3);
}
.s-services__sub { font-size: 16px; color: var(--color-text-muted); }
.s-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}


.c-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}
.c-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--color-gold-pale); }
.c-card--service { }
.c-card--highlight { background: var(--color-dark); border-color: var(--color-gold); }
.c-card--highlight .c-card__title { color: #fff; }
.c-card--highlight .c-card__body { color: rgba(255,255,255,0.7); }
.c-card--highlight .c-card__icon { color: var(--color-gold-light); }
.c-card__icon-wrap {
  width: 48px; height: 48px;
  background: var(--color-gold-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.c-card--highlight .c-card__icon-wrap { background: rgba(184,134,11,0.2); }
.c-card__icon { font-size: 20px; color: var(--color-gold); }
.c-card__title { font-family: var(--font-heading); font-size: 17px; font-weight: 700; margin-bottom: var(--space-3); color: var(--color-text); }
.c-card__body { font-size: 14px; color: var(--color-text-muted); line-height: 1.65; }
.c-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-top: var(--space-4);
}


.s-quote {
  padding: var(--space-8) 0;
  background: var(--color-gold-pale);
}
.s-quote--alt { background: var(--color-surface-2); }
.s-quote__container { max-width: 860px; margin: 0 auto; padding: 0 var(--space-6); }
.s-quote__block { position: relative; padding: var(--space-6) var(--space-7); }
.s-quote__mark {
  position: absolute;
  top: -10px; left: var(--space-4);
  font-size: 100px;
  line-height: 1;
  color: var(--color-gold);
  opacity: 0.25;
  font-family: Georgia, serif;
  pointer-events: none;
}
.s-quote__text {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.5;
  font-style: italic;
  letter-spacing: -0.01em;
}
.s-quote__source {
  display: block;
  margin-top: var(--space-4);
  font-size: 13px;
  color: var(--color-gold);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}


.s-why { padding: var(--space-9) 0; background: var(--color-bg); }
.s-why__container { max-width: 1280px; margin: 0 auto; padding: 0 var(--space-6); }
.s-why__header { text-align: center; margin-bottom: var(--space-8); }
.s-why__heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.s-why__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-5); }
.c-why-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.c-why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.c-why-card__icon-wrap {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--color-gold-pale), rgba(184,134,11,0.08));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}
.c-why-card__title { font-size: 17px; font-weight: 700; margin-bottom: var(--space-3); }
.c-why-card__body { font-size: 14px; color: var(--color-text-muted); line-height: 1.65; }


.s-dashboard {
  padding: var(--space-9) 0;
  background: var(--color-surface);
}
.s-dashboard__container { max-width: 1280px; margin: 0 auto; padding: 0 var(--space-6); }
.s-dashboard__header { text-align: center; margin-bottom: var(--space-8); }
.s-dashboard__heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.s-dashboard__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-5); }

.c-info-widget {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.c-info-widget:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.c-info-widget__top {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
}
.c-info-widget__top i { color: var(--color-gold); font-size: 18px; }
.c-info-widget__label { font-size: 13px; font-weight: 600; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.c-info-widget__row { display: flex; justify-content: space-between; align-items: center; padding: var(--space-3) 0; border-bottom: 1px solid var(--color-border); }
.c-info-widget__row:last-child { border-bottom: none; }
.c-info-widget__day { font-weight: 600; font-size: 14px; color: var(--color-gold); }
.c-info-widget__desc { font-size: 13px; color: var(--color-text-muted); }
.c-info-widget__img { width: 100%; height: 120px; object-fit: cover; border-radius: var(--radius-md); margin-bottom: var(--space-3); }
.c-info-widget__loc-text { font-size: 14px; font-weight: 600; color: var(--color-text); }
.c-info-widget__list { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.c-info-widget__list li { display: flex; align-items: center; gap: var(--space-3); font-size: 14px; color: var(--color-text-muted); }
.c-info-widget__list li i { color: var(--color-green); font-size: 13px; }
.c-info-widget__level-text { font-size: 14px; color: var(--color-text-muted); line-height: 1.6; margin-bottom: var(--space-4); }
.c-info-widget__dots { display: flex; gap: var(--space-2); margin-bottom: var(--space-2); }
.c-info-widget__dot { width: 10px; height: 10px; border-radius: var(--radius-full); background: var(--color-border); }
.c-info-widget__dot.is-active { background: var(--color-gold); }
.c-info-widget__level-label { font-size: 12px; font-weight: 600; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.08em; }


.s-gallery { padding: var(--space-9) 0; background: var(--color-bg); }
.s-gallery__container { max-width: 1280px; margin: 0 auto; padding: 0 var(--space-6); }
.s-gallery__heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-7);
}
.s-gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
.s-gallery__item { overflow: hidden; border-radius: var(--radius-lg); }
.s-gallery__img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.s-gallery__item:hover .s-gallery__img { transform: scale(1.04); }


.s-cta { padding: var(--space-9) 0; }
.s-cta__container { max-width: 1280px; margin: 0 auto; padding: 0 var(--space-6); }
.s-cta__inner {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-2) 50%, var(--color-accent) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-9) var(--space-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.s-cta__inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184,134,11,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.s-cta__content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.s-cta__heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-4);
}
.s-cta__heading--dark { color: var(--color-text); }
.s-cta__body { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: var(--space-6); }
.s-cta__body--dark { color: var(--color-text-muted); }
.s-cta--light .s-cta__inner--light {
  background: var(--color-gold-pale);
  border: 1px solid rgba(184,134,11,0.2);
}


.s-page-hero {
  padding-top: calc(var(--header-h) + var(--space-9));
  padding-bottom: var(--space-9);
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}
.s-page-hero::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(184,134,11,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.s-page-hero--bottega::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/gold-leaf-workshop-florence.jpg') center/cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}
.s-page-hero__container { max-width: 1280px; margin: 0 auto; padding: 0 var(--space-6); position: relative; z-index: 1; }
.s-page-hero__content { max-width: 680px; }
.s-page-hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
}
.s-page-hero__sub { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.7; max-width: 560px; }


.s-story { padding: var(--space-9) 0; background: var(--color-bg); }
.s-story__container { max-width: 1280px; margin: 0 auto; padding: 0 var(--space-6); }
.s-story__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-8); align-items: center; }
.s-story__img { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); }
.s-story__heading {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
}
.s-story__text-col p { font-size: 15px; color: var(--color-text-muted); line-height: 1.75; margin-bottom: var(--space-4); }


.s-space { padding: var(--space-9) 0; background: var(--color-surface); }
.s-space__container { max-width: 1280px; margin: 0 auto; padding: 0 var(--space-6); }
.s-space__header { text-align: center; margin-bottom: var(--space-8); }
.s-space__heading {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-3);
}
.s-space__sub { font-size: 16px; color: var(--color-text-muted); max-width: 500px; margin: 0 auto; }
.s-space__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-6); }
.c-space-card {
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.c-space-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.c-space-card__img { width: 100%; height: 220px; object-fit: cover; }
.c-space-card__content { padding: var(--space-6); }
.c-space-card__title { font-size: 20px; font-weight: 700; margin-bottom: var(--space-3); }
.c-space-card__body { font-size: 15px; color: var(--color-text-muted); line-height: 1.7; }


.s-oltrarno { padding: var(--space-9) 0; background: var(--color-bg); }
.s-oltrarno__container { max-width: 1280px; margin: 0 auto; padding: 0 var(--space-6); }
.s-oltrarno__inner { display: grid; grid-template-columns: 1fr; gap: var(--space-8); }
.s-oltrarno__heading {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
}
.s-oltrarno__text p { font-size: 15px; color: var(--color-text-muted); line-height: 1.75; margin-bottom: var(--space-4); }
.s-oltrarno__widget-stack { display: flex; flex-direction: column; gap: var(--space-4); }


.s-sessions { padding: var(--space-9) 0; background: var(--color-bg); }
.s-sessions__container { max-width: 1080px; margin: 0 auto; padding: 0 var(--space-6); }
.s-sessions__header { text-align: center; margin-bottom: var(--space-8); }
.s-sessions__heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.s-sessions__timeline { display: flex; flex-direction: column; gap: var(--space-7); }
.c-session-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-7);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-6);
  align-items: start;
  transition: box-shadow 0.25s ease;
}
.c-session-card:hover { box-shadow: var(--shadow-md); }
.c-session-card--alt { background: var(--color-dark); border-color: rgba(184,134,11,0.3); }
.c-session-card--alt .c-session-card__title { color: #fff; }
.c-session-card--alt .c-session-card__intro { color: rgba(255,255,255,0.65); }
.c-session-card--alt .c-session-card__tag { background: rgba(184,134,11,0.2); color: var(--color-gold-light); }
.c-session-card--alt .c-session-card__topic i { color: var(--color-gold-light); }
.c-session-card--alt .c-session-card__topic strong { color: #fff; }
.c-session-card--alt .c-session-card__topic p { color: rgba(255,255,255,0.6); }
.c-session-card__number {
  font-size: 56px;
  font-weight: 900;
  color: var(--color-gold-pale);
  line-height: 1;
  font-family: var(--font-heading);
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.c-session-card--alt .c-session-card__number { color: rgba(184,134,11,0.2); }
.c-session-card__tag {
  display: inline-block;
  background: var(--color-gold-pale);
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 600;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.c-session-card__title {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
  color: var(--color-text);
}
.c-session-card__intro { font-size: 15px; color: var(--color-text-muted); line-height: 1.7; margin-bottom: var(--space-5); }
.c-session-card__topics { display: flex; flex-direction: column; gap: var(--space-4); }
.c-session-card__topic { display: flex; gap: var(--space-3); align-items: flex-start; }
.c-session-card__topic i { color: var(--color-gold); margin-top: 3px; flex-shrink: 0; }
.c-session-card__topic strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: var(--space-1); }
.c-session-card__topic p { font-size: 13px; color: var(--color-text-muted); line-height: 1.6; }


.s-materials { padding: var(--space-9) 0; background: var(--color-surface); }
.s-materials__container { max-width: 1280px; margin: 0 auto; padding: 0 var(--space-6); }
.s-materials__header { text-align: center; margin-bottom: var(--space-8); }
.s-materials__heading {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-3);
}
.s-materials__sub { font-size: 16px; color: var(--color-text-muted); }
.s-materials__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-5); }
.c-material-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.c-material-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.c-material-card__icon {
  width: 44px; height: 44px;
  background: var(--color-gold-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}
.c-material-card__title { font-size: 16px; font-weight: 700; margin-bottom: var(--space-3); }
.c-material-card p { font-size: 14px; color: var(--color-text-muted); line-height: 1.65; }


.s-applications { padding: var(--space-9) 0; background: var(--color-bg); }
.s-applications__container { max-width: 1280px; margin: 0 auto; padding: 0 var(--space-6); }
.s-applications__left, .s-applications__right { }
.s-applications__heading {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-4);
}
.s-applications__left p { font-size: 15px; color: var(--color-text-muted); line-height: 1.7; margin-bottom: var(--space-4); }
.s-applications__list { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.s-applications__list li { display: flex; align-items: center; gap: var(--space-3); font-size: 15px; color: var(--color-text-muted); }
.s-applications__list li i { color: var(--color-gold); }
.s-applications__img { width: 100%; height: 360px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); margin-top: var(--space-6); }


.s-cancellation { padding: var(--space-9) 0; background: var(--color-bg); }
.s-cancellation__container { max-width: 1080px; margin: 0 auto; padding: 0 var(--space-6); }
.s-cancellation__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-5); margin-bottom: var(--space-8); }
.c-cancel-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.c-cancel-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.c-cancel-card__icon { font-size: 28px; color: var(--color-gold); margin-bottom: var(--space-4); }
.c-cancel-card__title { font-size: 17px; font-weight: 700; margin-bottom: var(--space-3); }
.c-cancel-card__body { font-size: 14px; color: var(--color-text-muted); line-height: 1.7; margin-bottom: var(--space-4); }
.c-cancel-card__badge { display: inline-block; font-size: 12px; font-weight: 600; padding: var(--space-1) var(--space-3); border-radius: var(--radius-full); }
.c-cancel-card__badge--green { background: rgba(45,106,79,0.12); color: var(--color-green); }
.c-cancel-card__badge--yellow { background: rgba(176,125,17,0.12); color: var(--color-yellow); }
.c-cancel-card__badge--red { background: rgba(139,32,32,0.12); color: var(--color-red); }
.c-cancel-card__badge--blue { background: rgba(26,74,107,0.12); color: var(--color-blue); }
.s-cancellation__how { padding: var(--space-7); background: var(--color-surface); border-radius: var(--radius-lg); border: 1px solid var(--color-border); margin-bottom: var(--space-5); }
.s-cancellation__how-title { font-size: 22px; font-weight: 700; margin-bottom: var(--space-5); }
.s-cancellation__how p { font-size: 15px; color: var(--color-text-muted); line-height: 1.75; margin-bottom: var(--space-3); }
.s-cancellation__how a { color: var(--color-gold); text-decoration: underline; }
.s-cancellation__lab-cancel { padding: var(--space-7); background: var(--color-dark); border-radius: var(--radius-lg); }
.s-cancellation__lab-cancel .s-cancellation__how-title { color: #fff; }
.s-cancellation__lab-cancel p { color: rgba(255,255,255,0.7); }


.s-contact { padding: var(--space-9) 0; background: var(--color-bg); }
.s-contact__container { max-width: 1280px; margin: 0 auto; padding: 0 var(--space-6); }
.s-contact__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-8); }
.c-form-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-7);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}
.c-form-card__title { font-size: 24px; font-weight: 700; margin-bottom: var(--space-6); }
.c-form__group { margin-bottom: var(--space-5); }
.c-form__label { display: block; font-size: 13px; font-weight: 600; color: var(--color-text); margin-bottom: var(--space-2); letter-spacing: 0.01em; }
.c-form__input, .c-form__textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--color-text);
  font-family: var(--font-body);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.c-form__input:focus, .c-form__textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(184,134,11,0.12);
}
.c-form__textarea { resize: vertical; min-height: 140px; }
.c-form__group--check { display: flex; align-items: flex-start; gap: var(--space-3); }
.c-form__check { width: 18px; height: 18px; accent-color: var(--color-gold); flex-shrink: 0; margin-top: 2px; cursor: pointer; }
.c-form__check-label { font-size: 14px; color: var(--color-text-muted); cursor: pointer; display: flex; align-items: flex-start; gap: var(--space-3); }
.c-form__link { color: var(--color-gold); text-decoration: underline; }
.c-form__error {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(139,32,32,0.08);
  color: var(--color-red);
  border: 1px solid rgba(139,32,32,0.2);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: 13px;
  margin-bottom: var(--space-4);
}
.c-contact-info {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-5);
}
.c-contact-info__title { font-size: 20px; font-weight: 700; margin-bottom: var(--space-5); }
.c-contact-info__item { display: flex; align-items: flex-start; gap: var(--space-4); padding: var(--space-4) 0; border-bottom: 1px solid var(--color-border); }
.c-contact-info__item:last-child { border-bottom: none; }
.c-contact-info__icon { width: 40px; height: 40px; background: var(--color-gold-pale); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--color-gold); font-size: 16px; flex-shrink: 0; }
.c-contact-info__item strong { display: block; font-size: 13px; font-weight: 600; margin-bottom: var(--space-1); }
.c-contact-info__item p, .c-contact-info__item a { font-size: 14px; color: var(--color-text-muted); }
.c-contact-info__item a:hover { color: var(--color-gold); }
.s-contact__map { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); }


.s-timeline { padding: var(--space-9) 0; background: var(--color-surface); }
.s-timeline__container { max-width: 800px; margin: 0 auto; padding: 0 var(--space-6); }
.s-timeline__header { text-align: center; margin-bottom: var(--space-8); }
.s-timeline__heading {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-3);
}
.s-timeline__sub { font-size: 16px; color: var(--color-text-muted); }
.s-timeline__steps { display: flex; flex-direction: column; gap: 0; }
.c-timeline-step { display: grid; grid-template-columns: 56px 1fr; gap: var(--space-5); align-items: start; }
.c-timeline-step__dot {
  width: 56px; height: 56px;
  background: var(--color-gold);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.c-timeline-step__connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), var(--color-border));
  margin: 0 auto;
  grid-column: 1;
}
.c-timeline-step__content { padding-top: var(--space-3); padding-bottom: var(--space-6); }
.c-timeline-step__content h3 { font-size: 17px; font-weight: 700; margin-bottom: var(--space-2); }
.c-timeline-step__content p { font-size: 14px; color: var(--color-text-muted); line-height: 1.65; }


.s-thanks {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-h) - 120px);
  padding: var(--space-9) var(--space-6);
}
.s-thanks__container { text-align: center; max-width: 500px; }
.s-thanks__icon { font-size: 72px; color: var(--color-gold); margin-bottom: var(--space-5); }
.s-thanks__heading { font-family: var(--font-heading); font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin-bottom: var(--space-4); letter-spacing: -0.03em; }
.s-thanks__body { font-size: 16px; color: var(--color-text-muted); line-height: 1.7; margin-bottom: var(--space-6); }
.s-thanks__countdown { height: 6px; background: var(--color-border); border-radius: var(--radius-full); margin-bottom: var(--space-6); overflow: hidden; }
.s-thanks__countdown-bar { height: 100%; background: linear-gradient(to right, var(--color-gold), var(--color-gold-light)); border-radius: var(--radius-full); transition: width 0.9s linear; }
.s-thanks__link { display: inline-flex; }


.s-legal { padding-top: calc(var(--header-h) + var(--space-7)); padding-bottom: var(--space-9); }
.s-legal__container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-6); }
.s-legal__layout { display: grid; grid-template-columns: 1fr; gap: var(--space-7); }
.s-legal__sidebar { display: none; }
.s-legal__sidebar-inner { position: sticky; top: calc(var(--header-h) + var(--space-5)); }
.s-legal__sidebar-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-text-light); margin-bottom: var(--space-4); }
.s-legal__toc { display: flex; flex-direction: column; gap: var(--space-1); }
.s-legal__toc-link { font-size: 13px; color: var(--color-text-muted); padding: var(--space-2) var(--space-3); border-radius: var(--radius-sm); border-left: 2px solid transparent; transition: all 0.2s ease; }
.s-legal__toc-link:hover, .s-legal__toc-link.is-active { color: var(--color-gold); background: var(--color-gold-pale); border-left-color: var(--color-gold); }
.s-legal__doc-header { margin-bottom: var(--space-7); padding-bottom: var(--space-7); border-bottom: 1px solid var(--color-border); }
.s-legal__doc-title { font-family: var(--font-heading); font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: var(--space-3); }
.s-legal__doc-meta { font-size: 13px; color: var(--color-text-light); margin-bottom: var(--space-4); }
.s-legal__doc-intro { font-size: 16px; color: var(--color-text-muted); line-height: 1.75; }
.s-legal__section { margin-bottom: var(--space-7); padding-bottom: var(--space-7); border-bottom: 1px solid var(--color-border); }
.s-legal__section:last-child { border-bottom: none; }
.s-legal__section h2 { font-family: var(--font-heading); font-size: clamp(20px, 2.5vw, 26px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: var(--space-5); color: var(--color-text); }
.s-legal__section p { font-size: 15px; color: var(--color-text-muted); line-height: 1.8; margin-bottom: var(--space-4); }
.s-legal__section p:last-child { margin-bottom: 0; }
.s-legal__section a { color: var(--color-gold); text-decoration: underline; }
.s-legal__section strong { color: var(--color-text); font-weight: 600; }


.s-legal__mobile-toc { margin-bottom: var(--space-5); }
.s-legal__mobile-toc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  transition: background 0.2s ease;
}
.s-legal__mobile-toc-btn:hover { background: var(--color-surface-2); }
.s-legal__mobile-toc-arrow { margin-left: auto; transition: transform 0.25s ease; }
.s-legal__mobile-toc-btn.is-open .s-legal__mobile-toc-arrow { transform: rotate(180deg); }
.s-legal__mobile-toc-nav {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.s-legal__mobile-toc-nav.is-open { display: flex !important; }


.c-cookie-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-dark);
  border-bottom: 1px solid rgba(184,134,11,0.3);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.c-cookie-banner.is-visible { transform: translateY(0); }
.c-cookie-banner__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.c-cookie-banner__text {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  flex: 1;
  min-width: 200px;
}
.c-cookie-banner__link { color: var(--color-gold-light); text-decoration: underline; }
.c-cookie-banner__actions { display: flex; gap: var(--space-2); flex-wrap: wrap; }
.c-cookie-banner__btn {
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
  min-height: 44px;
}
.c-cookie-banner__btn--customize { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.2); }
.c-cookie-banner__btn--customize:hover { background: rgba(255,255,255,0.08); color: #fff; }
.c-cookie-banner__btn--reject { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); }
.c-cookie-banner__btn--reject:hover { background: rgba(255,255,255,0.15); }
.c-cookie-banner__btn--accept { background: var(--color-gold); color: #fff; }
.c-cookie-banner__btn--accept:hover { background: var(--color-gold-warm); transform: translateY(-1px); }


.c-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
}
.c-cookie-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,23,20,0.75);
  backdrop-filter: blur(4px);
}
.c-cookie-modal__box {
  position: relative;
  z-index: 1;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-7);
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
}
.c-cookie-modal__title { font-size: 20px; font-weight: 700; margin-bottom: var(--space-5); }
.c-cookie-modal__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border);
}
.c-cookie-modal__item:last-of-type { border-bottom: none; margin-bottom: var(--space-4); }
.c-cookie-modal__item strong { font-size: 14px; font-weight: 600; display: block; margin-bottom: 2px; }
.c-cookie-modal__item p { font-size: 12px; color: var(--color-text-muted); }
.c-cookie-modal__badge { font-size: 11px; font-weight: 600; color: var(--color-green); background: rgba(45,106,79,0.1); padding: 4px 10px; border-radius: var(--radius-full); white-space: nowrap; }
.c-cookie-modal__actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.c-cookie-modal__btn {
  flex: 1;
  padding: 11px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease, transform 0.2s ease;
  min-height: 44px;
}
.c-cookie-modal__btn--save { background: var(--color-surface-2); color: var(--color-text); }
.c-cookie-modal__btn--save:hover { background: var(--color-border); }
.c-cookie-modal__btn--accept { background: var(--color-gold); color: #fff; }
.c-cookie-modal__btn--accept:hover { background: var(--color-accent); transform: translateY(-1px); }


.c-toggle { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.c-toggle input { opacity: 0; width: 0; height: 0; }
.c-toggle__slider {
  position: absolute;
  inset: 0;
  background: var(--color-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.25s ease;
}
.c-toggle__slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; top: 3px;
  background: #fff;
  border-radius: var(--radius-full);
  transition: transform 0.25s ease;
  box-shadow: var(--shadow-sm);
}
.c-toggle input:checked + .c-toggle__slider { background: var(--color-gold); }
.c-toggle input:checked + .c-toggle__slider::before { transform: translateX(20px); }


.c-footer {
  background: var(--color-dark);
  padding: var(--space-9) 0 var(--space-5);
  margin-top: auto;
  position: relative;
}
.c-footer__container { max-width: 1280px; margin: 0 auto; padding: 0 var(--space-6); }
.c-footer__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-7); margin-bottom: var(--space-8); }
.c-footer__col--brand { }
.c-footer__logo { display: flex; align-items: center; gap: var(--space-2); margin-bottom: var(--space-4); }
.c-footer__logo-img { width: 28px; height: 28px; filter: brightness(0) invert(1) opacity(0.85); }
.c-footer__logo-text { font-family: var(--font-heading); font-weight: 700; font-size: 17px; color: rgba(255,255,255,0.9); }
.c-footer__brand-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.65; max-width: 280px; }
.c-footer__col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: var(--space-4); }
.c-footer__links { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.c-footer__links a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s ease; }
.c-footer__links a:hover { color: var(--color-gold-light); }
.c-footer__contact { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.c-footer__contact li { display: flex; align-items: center; gap: var(--space-3); font-size: 14px; color: rgba(255,255,255,0.55); }
.c-footer__contact i { color: var(--color-gold); font-size: 13px; width: 16px; }
.c-footer__contact a { color: rgba(255,255,255,0.55); transition: color 0.2s ease; }
.c-footer__contact a:hover { color: var(--color-gold-light); }
.c-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.c-footer__copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.c-footer__address { font-size: 12px; color: rgba(255,255,255,0.25); }


.c-back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px; height: 48px;
  background: var(--color-gold);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-gold);
  z-index: 50;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, opacity 0.3s ease;
  opacity: 0;
}
.c-back-to-top.is-visible {
  opacity: 1;
  display: flex !important;
}
.c-back-to-top:hover { background: var(--color-accent); transform: translateY(-3px); box-shadow: var(--shadow-xl); }


.u-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.u-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.u-reveal--delay-1 { transition-delay: 0.1s; }
.u-reveal--delay-2 { transition-delay: 0.2s; }
.u-reveal--delay-3 { transition-delay: 0.3s; }
.u-reveal--delay-4 { transition-delay: 0.4s; }


@media (min-width: 640px) {
  .s-services__grid { grid-template-columns: repeat(2, 1fr); }
  .s-why__grid { grid-template-columns: repeat(2, 1fr); }
  .s-dashboard__grid { grid-template-columns: repeat(2, 1fr); }
  .s-materials__grid { grid-template-columns: repeat(2, 1fr); }
  .s-cancellation__grid { grid-template-columns: repeat(2, 1fr); }
  .c-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .s-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .s-space__grid { grid-template-columns: repeat(2, 1fr); }
}


@media (min-width: 1024px) {
  .u-hidden-mobile { display: flex; }
  .c-hamburger { display: none; }

  .s-hero {
    grid-template-columns: 1fr 480px;
    min-height: 100svh;
  }
  .s-hero__image-side { height: auto; }
  .s-hero__panel { padding: var(--space-10) var(--space-8); }

  .s-intro__grid { grid-template-columns: 1fr 1fr; align-items: center; }
  .s-services__grid { grid-template-columns: repeat(3, 1fr); }
  .s-why__grid { grid-template-columns: repeat(4, 1fr); }
  .s-dashboard__grid { grid-template-columns: repeat(2, 1fr); }
  .s-gallery__grid { grid-template-columns: 1fr 1fr 1fr; grid-template-rows: auto auto; }
  .s-gallery__item--large { grid-column: 1; grid-row: 1 / 3; }
  .s-gallery__item--wide { grid-column: 2 / 4; }
  .s-gallery__img { height: 300px; }
  .s-gallery__item--large .s-gallery__img { height: 100%; min-height: 500px; }
  .s-gallery__item--wide .s-gallery__img { height: 240px; }

  .s-story__grid { grid-template-columns: 1fr 1fr; }
  .s-oltrarno__inner { grid-template-columns: 1fr 380px; align-items: start; }
  .s-applications__container { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); align-items: center; }
  .s-applications__heading { margin-bottom: var(--space-4); }
  .s-applications__img { margin-top: 0; }
  .s-contact__grid { grid-template-columns: 1fr 400px; }
  .s-materials__grid { grid-template-columns: repeat(4, 1fr); }
  .s-cancellation__grid { grid-template-columns: repeat(2, 1fr); }
  .c-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .c-footer__bottom { flex-direction: row; justify-content: space-between; }

  .s-legal__layout { grid-template-columns: 220px 1fr; gap: var(--space-9); }
  .s-legal__sidebar { display: block; }
  .s-legal__mobile-toc { display: none; }

  .s-sessions__timeline { gap: var(--space-6); }
}

@media (min-width: 1280px) {
  .s-hero { grid-template-columns: 1fr 520px; }
  .s-services__grid { grid-template-columns: repeat(3, 1fr); }
  .s-dashboard__grid { grid-template-columns: repeat(4, 1fr); }
}


@media (max-width: 639px) {
  .s-hero__ctas { flex-direction: column; }
  .s-hero__ctas .c-btn { width: 100%; }
  .c-session-card { grid-template-columns: 1fr; }
  .c-session-card__number { font-size: 36px; }
  .s-cta__inner { padding: var(--space-7) var(--space-5); }
  .c-form-card { padding: var(--space-5); }
  .c-cookie-banner__inner { flex-direction: column; align-items: flex-start; }
  .c-cookie-banner__actions { width: 100%; justify-content: flex-end; }
}