:root {
  --color-paper: #FAF9F6;
  --color-ink: #5B7FA8;
  --color-clay: #D4A574;
  --color-graphite: #2A2A2A;
  --color-accent: #8B6F47;
  --color-light: #F5F3EF;
  --color-dark: #1A1A1A;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --shadow-sm: 0 2px 4px rgba(42, 42, 42, 0.08);
  --shadow-md: 0 4px 12px rgba(42, 42, 42, 0.12);
  --shadow-lg: 0 8px 24px rgba(42, 42, 42, 0.16);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-graphite);
  background-color: var(--color-paper);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--color-graphite);
}

h1 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h4 {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 600;
}

p {
  font-size: clamp(0.9rem, 2vw, 1rem);
  margin-bottom: var(--space-md);
  max-width: 65ch;
}

a {
  color: var(--color-ink);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-clay);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-xl);
  }
}

header {
  position: relative;
  background: linear-gradient(180deg, rgba(250, 249, 246, 0.98) 0%, rgba(250, 249, 246, 0.95) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(42, 42, 42, 0.08);
  padding: var(--space-xs) 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-xs) var(--space-md);
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-family: 'Satoshi', sans-serif;
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  font-weight: 700;
  color: var(--color-graphite);
  letter-spacing: -0.03em;
  position: relative;
  padding: var(--space-xs) 0;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-ink), var(--color-clay));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.logo:hover::after {
  opacity: 1;
}

.nav-menu {
  display: none;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
    gap: var(--space-lg);
    list-style: none;
  }

  .nav-menu a {
    font-size: clamp(0.8rem, 1.4vw, 0.9rem);
    color: var(--color-graphite);
    padding: var(--space-xs) var(--space-sm);
    position: relative;
    font-weight: 500;
    transition: all var(--transition-fast);
  }

  .nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(91, 127, 168, 0.1), rgba(212, 165, 116, 0.1));
    border-radius: var(--radius-sm);
    opacity: 0;
    transition: opacity var(--transition-base);
  }

  .nav-menu a:hover {
    color: var(--color-ink);
  }

  .nav-menu a:hover::before {
    opacity: 1;
  }
}

.menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 101;
  position: relative;
}

.menu-toggle.active {
  display: none;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-graphite);
  margin: 5px 0;
  transition: var(--transition-base);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--color-paper);
  transform: translateY(-100%);
  transition: transform var(--transition-base);
  z-index: 100;
  padding: var(--space-3xl) var(--space-lg);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu ul {
  list-style: none;
  margin-top: var(--space-2xl);
}

.mobile-menu li {
  margin-bottom: var(--space-lg);
}

.mobile-menu a {
  font-size: 1.1rem;
  color: var(--color-graphite);
  display: block;
  padding: var(--space-sm) 0;
}

.menu-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-graphite);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../gallery/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(250, 249, 246, 0.94) 0%, rgba(245, 243, 239, 0.90) 50%, rgba(250, 249, 246, 0.92) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(91, 127, 168, 0.12) 0%, rgba(212, 165, 116, 0.08) 50%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: pulse 10s ease-in-out infinite;
}

.hero .hero-decoration {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: pulse 12s ease-in-out infinite reverse;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.15) translate(20px, -20px);
    opacity: 0.4;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  margin-bottom: var(--space-lg);
  color: var(--color-graphite);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(42, 42, 42, 0.05);
  position: relative;
  display: inline-block;
}

.hero h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-ink), var(--color-clay));
  border-radius: 2px;
}

.hero p {
  font-size: clamp(1.1rem, 2.8vw, 1.4rem);
  margin-bottom: var(--space-2xl);
  color: rgba(42, 42, 42, 0.8);
  max-width: 100%;
  line-height: 1.6;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-xl);
  animation: fadeInUp 1.2s ease-out;
}

.hero-buttons .btn {
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.hero-buttons .btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(250, 249, 246, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.hero-buttons .btn:hover::before {
  width: 300px;
  height: 300px;
}

.hero-buttons .btn-primary {
  box-shadow: 0 4px 15px rgba(91, 127, 168, 0.3);
}

.hero-buttons .btn-primary:hover {
  box-shadow: 0 6px 20px rgba(91, 127, 168, 0.4);
  transform: translateY(-3px);
}

.hero-buttons .btn-secondary:hover {
  box-shadow: 0 4px 15px rgba(91, 127, 168, 0.2);
  transform: translateY(-3px);
}

@media (min-width: 768px) {
  .hero {
    min-height: 80vh;
  }
  
  .hero-content {
    padding: 0 var(--space-xl);
  }
}

.hero-animation {
  position: absolute;
  bottom: 10%;
  right: 6%;
  width: 160px;
  height: 160px;
  z-index: 2;
  opacity: 0.75;
  animation: fadeInRight 1.5s ease-out;
}

@media (max-width: 767px) {
  .hero-animation {
    width: 100px;
    height: 100px;
    bottom: 5%;
    right: 3%;
    opacity: 0.6;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 0.75;
    transform: translateX(0);
  }
}

.animated-pen {
  width: 100%;
  height: 100%;
  position: relative;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px rgba(42, 42, 42, 0.15));
}

.animated-pen::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 70%;
  background: linear-gradient(180deg, var(--color-ink) 0%, rgba(91, 127, 168, 0.9) 50%, var(--color-accent) 100%);
  border-radius: 6px;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 6px 16px rgba(91, 127, 168, 0.5), 0 0 24px rgba(212, 165, 116, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.animated-pen::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 35%;
  background: linear-gradient(180deg, var(--color-clay) 0%, rgba(212, 165, 116, 0.95) 50%, var(--color-accent) 100%);
  border-radius: 4px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.5), inset 0 1px 3px rgba(255, 255, 255, 0.4);
}

.animated-pen .ink-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, var(--color-dark) 0%, rgba(42, 42, 42, 0.8) 100%);
  border-radius: 50%;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: inkDrop 5s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(42, 42, 42, 0.6);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  20% {
    transform: translateY(-12px) rotate(-2deg);
  }
  40% {
    transform: translateY(-22px) rotate(0deg);
  }
  60% {
    transform: translateY(-18px) rotate(2deg);
  }
  80% {
    transform: translateY(-8px) rotate(-1deg);
  }
}

@keyframes inkDrop {
  0%, 75% {
    opacity: 0;
    transform: translateX(-50%) translateY(0) scale(0);
  }
  80% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
  85% {
    opacity: 0.8;
    transform: translateX(-50%) translateY(5px) scale(0.9);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(25px) scale(0.3);
  }
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-xl);
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  margin-top: var(--space-md);
  text-align: center;
}

.cta-section,
.cta-section .btn,
[style*="text-align: center"] .btn {
  text-align: center;
}

.btn-primary {
  background: var(--color-ink);
  color: var(--color-paper);
}

.btn-primary:hover {
  background: var(--color-clay);
  color: var(--color-paper);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--color-ink);
  border: 2px solid var(--color-ink);
}

.btn-secondary:hover {
  background: var(--color-ink);
  color: var(--color-paper);
}

.section {
  padding: var(--space-3xl) var(--space-md);
}

@media (min-width: 768px) {
  .section {
    padding: var(--space-3xl) var(--space-xl);
  }
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-2xl);
  position: relative;
  padding-bottom: var(--space-lg);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-ink), var(--color-clay));
  border-radius: 2px;
}

.section-title h2 {
  margin-bottom: var(--space-sm);
  position: relative;
  display: inline-block;
}

.section-title p {
  color: rgba(42, 42, 42, 0.65);
  max-width: 100%;
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
}

.grid {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--color-paper);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid rgba(42, 42, 42, 0.08);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-ink), var(--color-clay));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(91, 127, 168, 0.2);
}

.card:hover::before {
  transform: scaleX(1);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.card h3 {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.card p {
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  margin-bottom: var(--space-md);
  max-width: 100%;
}

.price {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: var(--color-clay);
  margin-top: var(--space-sm);
}

.feature-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.feature-icon {
  font-size: 2rem;
  color: var(--color-ink);
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

.feature-content p {
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  max-width: 100%;
}

.contact-section {
  background: rgba(74, 106, 138, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  margin-top: var(--space-xl);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: var(--color-graphite);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid rgba(30, 30, 30, 0.2);
  border-radius: var(--radius-md);
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-family: inherit;
  background: var(--color-paper);
  color: var(--color-graphite);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-ink);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
}

.checkbox-group label {
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  font-weight: normal;
}

.map-container {
  margin-top: var(--space-2xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

footer {
  background: linear-gradient(180deg, var(--color-graphite) 0%, var(--color-dark) 100%);
  color: var(--color-paper);
  padding: var(--space-3xl) var(--space-md) var(--space-xl);
  margin-top: var(--space-3xl);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.5), transparent);
}

footer::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(91, 127, 168, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(250, 249, 246, 0.1);
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 2fr 1fr;
  }
}

.footer-brand {
  margin-bottom: var(--space-lg);
}

.footer-brand h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--color-paper);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.footer-brand p {
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  color: rgba(250, 249, 246, 0.7);
  margin-bottom: var(--space-md);
  max-width: 100%;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  color: rgba(250, 249, 246, 0.8);
}

.footer-contact-item i {
  color: var(--color-clay);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.footer-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-lg);
  list-style: none;
  margin-bottom: var(--space-xl);
}

.footer-menu li {
  margin-bottom: var(--space-xs);
}

.footer-menu a {
  color: rgba(250, 249, 246, 0.8);
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  transition: all var(--transition-fast);
  display: inline-block;
  position: relative;
  padding-left: var(--space-sm);
}

.footer-menu a::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateX(-5px);
  transition: all var(--transition-fast);
  color: var(--color-clay);
}

.footer-menu a:hover {
  color: var(--color-clay);
  padding-left: var(--space-md);
}

.footer-menu a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(250, 249, 246, 0.1);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-info {
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  color: rgba(250, 249, 246, 0.6);
}

.footer-info p {
  margin-bottom: var(--space-xs);
  max-width: 100%;
}

.footer-info p:last-child {
  margin-bottom: 0;
}

.footer-copyright {
  font-size: clamp(0.75rem, 1.4vw, 0.85rem);
  color: rgba(250, 249, 246, 0.5);
  margin-top: var(--space-sm);
}

.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
}

.legal-page h1 {
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  margin-bottom: var(--space-lg);
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: var(--space-md);
}

.legal-page h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-ink), var(--color-clay));
  border-radius: 2px;
}

.legal-page h2 {
  font-size: clamp(1.15rem, 2.8vw, 1.35rem);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  font-weight: 600;
  color: var(--color-ink);
}

.legal-page p {
  font-size: clamp(0.9rem, 2vw, 1rem);
  margin-bottom: var(--space-md);
  max-width: 100%;
}

.legal-page ul {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.legal-page li {
  font-size: clamp(0.9rem, 2vw, 1rem);
  margin-bottom: var(--space-xs);
}

.home-button {
  display: inline-block;
  margin-top: var(--space-xl);
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-ink);
  color: var(--color-paper);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.home-button:hover {
  background: var(--color-clay);
  color: var(--color-paper);
}

.table-wrapper {
  overflow-x: auto;
  margin: var(--space-lg) 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
}

table th,
table td {
  padding: var(--space-sm);
  text-align: left;
  border-bottom: 1px solid rgba(30, 30, 30, 0.1);
}

table th {
  background: rgba(74, 106, 138, 0.1);
  font-weight: 600;
}

.center-content {
  text-align: center;
  padding: var(--space-3xl) var(--space-md);
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.center-content h1 {
  margin-bottom: var(--space-lg);
}

.center-content p {
  max-width: 100%;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-graphite);
  color: var(--color-paper);
  padding: var(--space-lg);
  z-index: 1000;
  box-shadow: 0 -4px 10px rgba(30, 30, 30, 0.2);
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.privacy-popup.show {
  transform: translateY(0);
}

.privacy-popup-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
  justify-content: center;
}

.privacy-popup p {
  margin: 0;
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  max-width: 100%;
}

.privacy-popup-buttons {
  display: flex;
  gap: var(--space-sm);
}

.privacy-popup button {
  padding: var(--space-xs) var(--space-lg);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  transition: all var(--transition-fast);
}

.privacy-popup .btn-accept {
  background: var(--color-clay);
  color: var(--color-paper);
}

.privacy-popup .btn-accept:hover {
  background: var(--color-ink);
}

.privacy-popup .btn-decline {
  background: transparent;
  color: var(--color-paper);
  border: 1px solid var(--color-paper);
}

.privacy-popup .btn-decline:hover {
  background: var(--color-paper);
  color: var(--color-graphite);
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .section {
    padding: var(--space-xl) var(--space-sm);
  }

  .hero {
    min-height: 50vh;
    padding: var(--space-xl) var(--space-sm);
  }
}
