@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Source+Sans+3:wght@300;400;500;600&display=swap');

:root {
  --color-primary: #2E5C6B;
  --color-primary-dark: #234650;
  --color-secondary: #F4EFE6;
  --color-accent: #6E8B6A;
  --color-accent-dark: #567456;
  --color-highlight: #B87D52;
  --color-highlight-dark: #9A6642;
  --color-text: #2C3338;
  --color-text-muted: #5C6369;
  --color-border: rgba(46, 92, 107, 0.18);
  --color-overlay: rgba(44, 51, 56, 0.55);
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --space-xs: 0.35rem;
  --space-sm: 0.65rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.25rem;
  --space-2xl: 3rem;
  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.125rem;
  --shadow-sm: 0 2px 8px rgba(45, 45, 45, 0.06);
  --shadow-md: 0 6px 20px rgba(46, 92, 107, 0.14);
  --shadow-lg: 0 12px 32px rgba(45, 45, 45, 0.1);
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s ease;
  --header-height: 3.25rem;
  --max-width: 72rem;
  --text-xs: 0.75rem;
  --text-sm: 0.8125rem;
  --text-base: 0.9375rem;
  --text-md: 1.0625rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 1.75rem;
  --text-hero: clamp(1.35rem, 3.5vw, 2rem);
  --text-section: clamp(1rem, 2.2vw, 1.35rem);
  --z-header: 100;
  --z-menu: 200;
  --z-toggle: 201;
  --z-cookie: 300;
  --z-modal: 400;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--color-text);
  background: var(--color-secondary);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text);
}

h1 {
  font-size: var(--text-hero);
}

h2, .section-title {
  font-size: var(--text-section);
}

h3 {
  font-size: var(--text-md);
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-muted);
}

p:last-child {
  margin-bottom: 0;
}

ul, ol {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
  color: var(--color-text-muted);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.site-header {
  position: relative;
  z-index: var(--z-header);
  background: linear-gradient(135deg, rgba(244, 239, 230, 0.97) 0%, rgba(244, 239, 230, 0.92) 100%);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.site-header.header-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: var(--space-md);
  padding: var(--space-xs) 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.logo-mark {
  width: clamp(1.75rem, 4vw, 2.25rem);
  height: clamp(1.75rem, 4vw, 2.25rem);
  border-radius: 50% 50% 50% 20%;
  background: linear-gradient(145deg, var(--color-primary) 0%, var(--color-accent) 100%);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.logo-mark::after {
  content: '';
  position: absolute;
  top: 25%;
  right: 20%;
  width: 35%;
  height: 35%;
  border-radius: 50%;
  background: var(--color-highlight);
  opacity: 0.85;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(0.7rem, 2.5vw, 0.95rem);
  color: var(--color-primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-menu a:hover {
  background: rgba(46, 92, 107, 0.08);
  color: var(--color-primary);
}

.menu-toggle {
  z-index: var(--z-toggle);
}

.mobile-menu {
  z-index: var(--z-menu);
}

.menu-toggle,
.menu-close {
  display: none;
  background: var(--color-primary);
  color: var(--color-secondary);
  border: none;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.menu-toggle:hover,
.menu-close:hover {
  background: var(--color-accent);
  color: var(--color-secondary);
}

.menu-toggle.hidden {
  display: none !important;
}

.menu-close-header {
  display: none;
  z-index: var(--z-toggle);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(18rem, 88vw);
  height: 100vh;
  background: var(--color-secondary);
  box-shadow: var(--shadow-lg);
  padding: var(--space-xl) var(--space-lg);
  z-index: var(--z-menu);
  transform: translateY(-100%);
  transition: transform var(--transition-base);
  flex-direction: column;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: var(--space-lg);
}

.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav li {
  margin-bottom: var(--space-sm);
}

.mobile-nav a {
  display: block;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text);
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
}

.mobile-nav a:hover {
  background: rgba(110, 139, 106, 0.14);
  color: var(--color-accent);
}

.hero {
  position: relative;
  min-height: clamp(22rem, 55vh, 32rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(244, 239, 230, 0.9) 0%, rgba(46, 92, 107, 0.32) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(244, 239, 230, 0.92) 0%, rgba(46, 92, 107, 0.42) 55%, rgba(110, 139, 106, 0.22) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-2xl) 0;
  width: 100%;
}

.hero-content h1 {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.hero-content .lead {
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
  max-width: 28rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 14rem;
}

.hero-figure {
  position: relative;
  width: clamp(10rem, 28vw, 14rem);
  height: clamp(10rem, 28vw, 14rem);
}

.figure-orbit {
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(184, 125, 82, 0.4);
  border-radius: 50%;
  animation: orbit-spin 18s linear infinite;
}

.figure-moon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 55%;
  height: 55%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(145deg, #e6ebe8 0%, var(--color-primary) 70%);
  box-shadow: inset -8px -8px 16px rgba(45, 45, 45, 0.15), 0 0 24px rgba(184, 125, 82, 0.35);
  animation: moon-glow 4s ease-in-out infinite alternate;
}

.figure-moon::before {
  content: '';
  position: absolute;
  width: 18%;
  height: 18%;
  top: 22%;
  left: 28%;
  border-radius: 50%;
  background: rgba(46, 92, 107, 0.2);
}

.figure-star {
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--color-highlight);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-highlight);
  animation: star-twinkle 2.5s ease-in-out infinite;
}

.figure-star:nth-child(3) {
  top: 8%;
  right: 18%;
  animation-delay: 0.3s;
}

.figure-star:nth-child(4) {
  bottom: 15%;
  left: 10%;
  animation-delay: 0.8s;
}

.figure-star:nth-child(5) {
  top: 35%;
  right: 5%;
  width: 0.35rem;
  height: 0.35rem;
  animation-delay: 1.2s;
}

.figure-tea {
  position: absolute;
  bottom: -5%;
  right: 5%;
  width: 2.5rem;
  height: 2.8rem;
  background: linear-gradient(180deg, var(--color-highlight) 0%, var(--color-highlight-dark) 100%);
  border-radius: 0 0 40% 40%;
  animation: tea-steam 3s ease-in-out infinite;
}

.figure-tea::before {
  content: '';
  position: absolute;
  top: -0.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.8rem;
  height: 0.5rem;
  border: 3px solid var(--color-highlight-dark);
  border-bottom: none;
  border-radius: 50% 50% 0 0;
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes moon-glow {
  from { box-shadow: inset -8px -8px 16px rgba(45, 45, 45, 0.12), 0 0 16px rgba(184, 125, 82, 0.25); }
  to { box-shadow: inset -8px -8px 16px rgba(45, 45, 45, 0.18), 0 0 28px rgba(184, 125, 82, 0.5); }
}

@keyframes star-twinkle {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.1); }
}

@keyframes tea-steam {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  margin-top: var(--space-sm);
  text-decoration: none;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-secondary);
}

.btn-primary:hover {
  background: var(--color-accent);
  color: var(--color-secondary);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-secondary);
}

.btn-accent {
  background: var(--color-highlight);
  color: var(--color-text);
}

.btn-accent:hover {
  background: var(--color-accent);
  color: var(--color-secondary);
}

section {
  padding: var(--space-2xl) 0;
}

.section-header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto var(--space-xl);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  font-size: var(--text-sm);
}

.section-alt {
  background: rgba(46, 92, 107, 0.05);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: var(--space-lg);
}

.card {
  background: var(--color-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 92, 107, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

.card h3 {
  margin-bottom: var(--space-sm);
  font-size: var(--text-md);
}

.card p {
  font-size: var(--text-sm);
  margin-bottom: 0;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.feature-img img {
  width: 100%;
  object-fit: cover;
}

.steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step;
}

.steps-list li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: var(--space-lg);
  counter-increment: step;
}

.steps-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--color-accent);
  color: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-sm);
}

.quote-block {
  background: linear-gradient(135deg, rgba(110, 139, 106, 0.1) 0%, rgba(184, 125, 82, 0.08) 100%);
  border-left: 4px solid var(--color-highlight);
  padding: var(--space-lg);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: var(--space-lg) 0;
}

.quote-block p {
  font-style: italic;
  font-size: var(--text-sm);
  margin: 0 0 var(--space-xs);
}

.quote-author {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
  font-style: normal;
  margin: 0;
}

.disclaimer-box {
  background: rgba(46, 92, 107, 0.06);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
}

.disclaimer-box p {
  font-size: var(--text-xs);
  margin-bottom: var(--space-sm);
}

.disclaimer-box p:last-child {
  margin-bottom: 0;
}

.cta-band {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: var(--color-secondary);
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  border-radius: var(--radius-lg);
}

.cta-band h2 {
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.cta-band p {
  color: rgba(248, 250, 252, 0.9);
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
}

.cta-band .btn {
  margin-top: var(--space-md);
}

.cta-band .btn-primary {
  background: var(--color-secondary);
  color: var(--color-primary);
}

.cta-band .btn-primary:hover {
  background: var(--color-highlight);
  color: var(--color-text);
}

.site-footer {
  background: var(--color-text);
  color: rgba(248, 250, 252, 0.85);
  padding: var(--space-xl) 0 var(--space-lg);
  margin-top: var(--space-2xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.footer-col h4 {
  font-size: var(--text-sm);
  color: var(--color-highlight);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: var(--space-xs);
}

.footer-col a {
  color: rgba(248, 250, 252, 0.8);
  font-size: var(--text-xs);
}

.footer-col a:hover {
  color: var(--color-highlight);
}

.footer-col p {
  font-size: var(--text-xs);
  color: rgba(248, 250, 252, 0.75);
  margin-bottom: var(--space-xs);
}

.footer-bottom {
  border-top: 1px solid rgba(248, 250, 252, 0.15);
  padding-top: var(--space-md);
  text-align: center;
  font-size: var(--text-xs);
  color: rgba(248, 250, 252, 0.6);
}

.page-hero {
  padding: var(--space-xl) 0;
  background: linear-gradient(180deg, rgba(46, 92, 107, 0.08) 0%, transparent 100%);
  text-align: center;
}

.page-hero h1 {
  margin-bottom: var(--space-sm);
}

.page-hero p {
  font-size: var(--text-sm);
  max-width: 32rem;
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info-card {
  background: linear-gradient(160deg, rgba(46, 92, 107, 0.08) 0%, rgba(110, 139, 106, 0.06) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--color-border);
}

.contact-info-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  align-items: flex-start;
}

.contact-info-item i {
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-top: 0.15rem;
}

.contact-info-item h3 {
  font-size: var(--text-sm);
  margin-bottom: var(--space-xs);
}

.contact-info-item p {
  font-size: var(--text-sm);
  margin: 0;
}

.contact-form-wrap {
  background: var(--color-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-secondary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(46, 92, 107, 0.15);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #c45c5c;
}

.form-group textarea {
  min-height: 7rem;
  resize: vertical;
}

.form-error {
  font-size: var(--text-xs);
  color: #c45c5c;
  margin-top: var(--space-xs);
  display: none;
}

.form-error.visible {
  display: block;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.checkbox-group input {
  width: auto;
  margin-top: 0.2rem;
}

.checkbox-group label {
  font-size: var(--text-xs);
  font-weight: 400;
  margin: 0;
}

.checkbox-group input.error {
  outline: 2px solid #c45c5c;
  outline-offset: 2px;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: var(--space-lg);
}

.map-wrap iframe {
  width: 100%;
  height: 22rem;
  min-height: 350px;
  border: 0;
  display: block;
}

.legal-page {
  padding: var(--space-xl) 0 var(--space-2xl);
}

.legal-content {
  max-width: 48rem;
  margin: 0 auto;
  background: var(--color-secondary);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.legal-content h1 {
  font-size: var(--text-section);
  margin-bottom: var(--space-md);
}

.legal-content h2 {
  font-size: var(--text-md);
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-primary);
}

.legal-content h3 {
  font-size: var(--text-sm);
  margin: var(--space-md) 0 var(--space-xs);
}

.legal-content p,
.legal-content li {
  font-size: var(--text-sm);
}

.legal-content ul {
  margin-bottom: var(--space-md);
}

.table-wrap {
  overflow: auto;
  margin: var(--space-md) 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-xs);
}

.legal-content th,
.legal-content td {
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.legal-content th {
  background: rgba(46, 92, 107, 0.08);
  font-weight: 600;
}

.home-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-lg);
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-primary);
  color: var(--color-secondary);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.home-button:hover {
  background: var(--color-accent);
  color: var(--color-secondary);
}

body.page-sticky-footer {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.page-sticky-footer main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

body.page-sticky-footer .centered-page {
  flex: 1;
  min-height: auto;
}

body.page-sticky-footer .site-footer {
  margin-top: 0;
}

.centered-page {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
}

.centered-page h1 {
  margin-bottom: var(--space-md);
}

.centered-page p {
  margin-bottom: var(--space-md);
}

.centered-page .btn {
  margin-top: var(--space-md);
}

.success-icon {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0 0;
}

.pill-list li {
  background: rgba(110, 139, 106, 0.14);
  color: var(--color-accent-dark);
  padding: var(--space-xs) var(--space-md);
  border-radius: 2rem;
  font-size: var(--text-xs);
  font-weight: 500;
}

.resource-list {
  list-style: none;
  padding: 0;
}

.resource-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  margin-bottom: var(--space-sm);
  background: var(--color-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: border-color var(--transition-fast);
}

.resource-list li:hover {
  border-color: var(--color-primary);
}

.resource-list i {
  color: var(--color-highlight);
  font-size: 1.1rem;
  margin-top: 0.15rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-text);
  color: var(--color-secondary);
  padding: var(--space-lg);
  z-index: var(--z-cookie);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.cookie-banner p {
  font-size: var(--text-xs);
  color: rgba(248, 250, 252, 0.85);
  margin: 0;
  flex: 1 1 16rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.cookie-actions .btn {
  margin-top: 0;
  padding: var(--space-xs) var(--space-md);
  font-size: var(--text-xs);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: var(--color-overlay);
  z-index: var(--z-modal);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.cookie-modal.visible {
  display: flex;
}

.cookie-modal-content {
  background: var(--color-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  max-width: 28rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-content h3 {
  margin-bottom: var(--space-md);
  font-size: var(--text-md);
}

.cookie-category {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}

.cookie-category:last-of-type {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xs);
}

.cookie-category h4 {
  font-size: var(--text-sm);
}

.cookie-category p {
  font-size: var(--text-xs);
  margin: 0;
}

.toggle-switch {
  position: relative;
  width: 2.5rem;
  height: 1.35rem;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #ccc;
  border-radius: 1.35rem;
  transition: var(--transition-fast);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 1rem;
  width: 1rem;
  left: 0.2rem;
  bottom: 0.18rem;
  background: white;
  border-radius: 50%;
  transition: var(--transition-fast);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--color-accent);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(1.1rem);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.privacy-popup {
  position: fixed;
  bottom: var(--space-lg);
  left: var(--space-md);
  right: var(--space-md);
  max-width: 22rem;
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-lg);
  z-index: var(--z-cookie);
  display: none;
}

.privacy-popup.visible {
  display: block;
}

.privacy-popup p {
  font-size: var(--text-xs);
  margin-bottom: var(--space-sm);
}

.privacy-popup .btn {
  margin-top: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  font-size: var(--text-xs);
}

@media (max-width: 900px) {
  .hero-inner,
  .split-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split-section.reverse {
    direction: ltr;
  }

  .hero-visual {
    order: -1;
    min-height: 10rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-menu .menu-close {
    display: flex;
  }

  body.menu-open .menu-close-header {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 var(--space-sm);
  }

  .card {
    padding: var(--space-md);
  }
}
