/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=DM+Serif+Display&display=swap');

/* ===== CSS VARIABLES (oklch tokens from Tailwind config) ===== */
:root {
  --background: oklch(0.975 0.002 80);
  --foreground: oklch(0.18 0.02 50);
  --card: oklch(0.99 0.001 80);
  --card-foreground: oklch(0.18 0.02 50);
  --primary: oklch(0.22 0.02 50);
  --primary-foreground: oklch(0.975 0.002 80);
  --secondary: oklch(0.94 0.01 60);
  --secondary-foreground: oklch(0.22 0.02 50);
  --muted: oklch(0.94 0.01 60);
  --muted-foreground: oklch(0.50 0.02 50);
  --accent: oklch(0.58 0.14 45);
  --accent-foreground: oklch(0.99 0.001 80);
  --border: oklch(0.88 0.02 60);
  --input: oklch(0.90 0.015 60);
  --ring: oklch(0.58 0.14 45);
  --radius: 0.5rem;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-serif: 'DM Serif Display', Georgia, serif;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 80rem;
  /* 1280px = max-w-7xl */
  margin: 0 auto;
  padding: 0 1.5rem;
}

.font-serif {
  font-family: var(--font-serif);
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: color-mix(in oklch, var(--background) 90%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.header-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-logo-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: -0.025em;
  color: var(--foreground);
}

.header-logo-sub {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  letter-spacing: 0.05em;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.header-nav a:hover {
  color: var(--foreground);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.2s;
}

.header-phone:hover {
  color: var(--accent);
}

.header-phone svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background-color: var(--primary);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-foreground);
  transition: opacity 0.2s;
  white-space: nowrap;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background-color: var(--accent);
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent-foreground);
  transition: opacity 0.2s;
  white-space: nowrap;
}

.btn-accent:hover {
  opacity: 0.9;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid color-mix(in oklch, var(--secondary) 30%, transparent);
  background-color: color-mix(in oklch, var(--secondary) 10%, transparent);
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--secondary);
  transition: background-color 0.2s;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

.btn-outline-light:hover {
  background-color: color-mix(in oklch, var(--secondary) 20%, transparent);
}

/* Mobile menu button */
.mobile-menu-btn {
  display: flex;
  color: var(--foreground);
  padding: 0.25rem;
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background-color: var(--background);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem;
  gap: 1rem;
}

.mobile-nav-inner a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.mobile-nav-inner a:hover {
  color: var(--foreground);
}

.mobile-nav-inner hr {
  border: none;
  border-top: 1px solid var(--border);
}

@media (min-width: 1024px) {
  .header-nav {
    display: flex;
  }

  .header-actions {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: color-mix(in oklch, var(--foreground) 60%, transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.hero-subtitle {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: color-mix(in oklch, var(--secondary) 80%, transparent);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  line-height: 1.15;
  color: var(--secondary);
  font-weight: 400;
}

.hero-desc {
  margin-top: 1.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in oklch, var(--secondary) 80%, transparent);
}

.hero-buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 1s infinite;
}

.hero-scroll svg {
  width: 1.5rem;
  height: 1.5rem;
  color: color-mix(in oklch, var(--secondary) 60%, transparent);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-25%);
  }
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-desc {
    font-size: 1.125rem;
  }

  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

/* ===== SECTIONS COMMON ===== */
.section {
  padding: 6rem 0;
}

.section-bg {
  background-color: var(--secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  color: var(--foreground);
  font-weight: 400;
}

.section-desc {
  margin-top: 1rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted-foreground);
  line-height: 1.7;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.service-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 2rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  border-color: color-mix(in oklch, var(--accent) 40%, transparent);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -4px rgba(0, 0, 0, 0.07);
}

.service-card-icon {
  margin-bottom: 1.25rem;
  display: flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: calc(var(--radius) - 2px);
  background-color: color-mix(in oklch, var(--accent) 10%, transparent);
  color: var(--accent);
  transition: background-color 0.3s, color 0.3s;
}

.service-card:hover .service-card-icon {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.service-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Service detail boxes */
.services-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.service-detail-box {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 2rem;
}

.service-detail-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.service-detail-icon {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: calc(var(--radius) - 2px);
  background-color: color-mix(in oklch, var(--accent) 10%, transparent);
  color: var(--accent);
}

.service-detail-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.service-detail-header h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--foreground);
  font-weight: 400;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted-foreground);
}

.service-list li svg {
  margin-top: 0.125rem;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--accent);
}

.service-list li span {
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .services-detail {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail-box {
    padding: 2.5rem;
  }
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.about-label {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.about-title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  color: var(--foreground);
  line-height: 1.2;
  font-weight: 400;
}

.about-text {
  margin-top: 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.about-text+.about-text {
  margin-top: 1rem;
}

.about-stats {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-stat-number {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: var(--accent);
  font-weight: 400;
}

.about-stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.about-stat-divider {
  display: none;
  width: 1px;
  background-color: var(--border);
  align-self: stretch;
}

.advantages {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.advantage-card {
  display: flex;
  gap: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.5rem;
  transition: box-shadow 0.2s;
}

.advantage-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.07);
}

.advantage-icon {
  display: flex;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: calc(var(--radius) - 2px);
  background-color: color-mix(in oklch, var(--accent) 10%, transparent);
  color: var(--accent);
}

.advantage-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.advantage-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.advantage-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .about-stats {
    flex-direction: row;
  }

  .about-stat-divider {
    display: block;
  }

  .about-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .about-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== GALLERY ===== */
.gallery-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.gallery-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
  background-color: var(--card);
  border: 1px solid var(--border);
  color: var(--muted-foreground);
}

.gallery-tab:hover {
  color: var(--foreground);
  border-color: color-mix(in oklch, var(--accent) 40%, transparent);
}

.gallery-tab.active {
  background-color: var(--accent);
  color: var(--accent-foreground);
  border-color: var(--accent);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.gallery-tab svg {
  width: 1rem;
  height: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
  width: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background-color: transparent;
  transition: background-color 0.3s;
}

.gallery-item:hover .gallery-item-overlay {
  background-color: color-mix(in oklch, var(--foreground) 40%, transparent);
}

.gallery-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, color-mix(in oklch, var(--foreground) 60%, transparent), transparent);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--secondary);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item-label {
  opacity: 1;
}

/* Video grid */
.video-item {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.video-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.video-item:hover img {
  transform: scale(1.05);
}

.video-item-overlay {
  position: absolute;
  inset: 0;
  background-color: color-mix(in oklch, var(--foreground) 30%, transparent);
  transition: background-color 0.3s;
}

.video-item:hover .video-item-overlay {
  background-color: color-mix(in oklch, var(--foreground) 50%, transparent);
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-circle {
  display: flex;
  width: 4rem;
  height: 4rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in oklch, var(--accent) 90%, transparent);
  color: var(--accent-foreground);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
  transition: transform 0.3s;
}

.video-item:hover .video-play-circle {
  transform: scale(1.1);
}

.video-play-circle svg {
  width: 1.75rem;
  height: 1.75rem;
  margin-left: 0.25rem;
}

.video-duration {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  border-radius: calc(var(--radius) - 2px);
  background-color: color-mix(in oklch, var(--foreground) 70%, transparent);
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--secondary);
  backdrop-filter: blur(4px);
}

.video-label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
}

.video-label span {
  border-radius: calc(var(--radius) - 2px);
  background-color: color-mix(in oklch, var(--accent) 90%, transparent);
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent-foreground);
  backdrop-filter: blur(4px);
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in oklch, var(--foreground) 85%, transparent);
  backdrop-filter: blur(4px);
  padding: 1rem;
}

.lightbox.open {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--secondary);
  z-index: 10;
  transition: opacity 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.lightbox-close:hover {
  opacity: 0.8;
}

.lightbox-close svg {
  width: 2rem;
  height: 2rem;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: var(--secondary);
  z-index: 10;
  transition: opacity 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 0.8;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.lightbox-prev svg,
.lightbox-next svg {
  width: 2.5rem;
  height: 2.5rem;
}

@media (min-width: 768px) {
  .lightbox-prev {
    left: 2rem;
  }

  .lightbox-next {
    right: 2rem;
  }
}

.lightbox-image-wrap {
  position: relative;
  max-width: 64rem;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
}

.lightbox-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, color-mix(in oklch, var(--foreground) 60%, transparent), transparent);
  padding: 1rem 1.5rem;
}

.lightbox-caption p {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--secondary);
}

.lightbox-caption .lightbox-counter {
  font-size: 0.75rem;
  color: color-mix(in oklch, var(--secondary) 60%, transparent);
  margin-top: 0.25rem;
}

/* ===== SERVICE AREA ===== */
.area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.area-map-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.area-map-ratio {
  aspect-ratio: 4/3;
}

.area-map-ratio iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.area-badge-hq {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  background-color: color-mix(in oklch, var(--card) 95%, transparent);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  padding: 0.5rem 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07);
}

.area-badge-hq svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
}

.area-badge-hq-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.2;
}

.area-badge-hq-sub {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.2;
}

.area-badge-radius {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: var(--radius);
  background-color: color-mix(in oklch, var(--accent) 90%, transparent);
  backdrop-filter: blur(4px);
  padding: 0.5rem 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07);
}

.area-badge-radius strong {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-foreground);
}

.area-badge-radius span {
  font-size: 0.75rem;
  color: color-mix(in oklch, var(--accent-foreground) 80%, transparent);
}

.area-locations h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 1rem;
  font-weight: 400;
}

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 0.375rem 0.875rem;
  font-size: 0.875rem;
  color: var(--foreground);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.area-pill:hover {
  border-color: color-mix(in oklch, var(--accent) 40%, transparent);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.area-pill svg {
  width: 0.75rem;
  height: 0.75rem;
  color: color-mix(in oklch, var(--accent) 70%, transparent);
}

.area-note {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  background-color: var(--card);
  border: 1px solid var(--border);
  padding: 1rem;
}

.area-note p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.area-note a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  transition: text-decoration 0.2s;
}

.area-note a:hover {
  text-decoration: underline;
}

.area-note a svg {
  width: 0.875rem;
  height: 0.875rem;
}

@media (min-width: 1024px) {
  .area-grid {
    grid-template-columns: 3fr 2fr;
  }

  .area-map-ratio {
    aspect-ratio: 16/10;
  }
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item-icon {
  display: flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: calc(var(--radius) - 2px);
  background-color: color-mix(in oklch, var(--accent) 10%, transparent);
  color: var(--accent);
  transition: background-color 0.2s, color 0.2s;
  flex-shrink: 0;
}

.contact-item:hover .contact-item-icon,
a.contact-item:hover .contact-item-icon {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.contact-item-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-item-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.contact-item-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.contact-hours {
  border-radius: var(--radius);
  border: 1px solid color-mix(in oklch, var(--accent) 20%, transparent);
  background-color: color-mix(in oklch, var(--accent) 5%, transparent);
  padding: 1.5rem;
}

.contact-hours h4 {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.contact-hours p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Contact form */
.contact-form {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid var(--input);
  background-color: var(--background);
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  color: var(--foreground);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-foreground);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.form-group textarea {
  resize: none;
}

.form-message {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: calc(var(--radius) - 2px);
  padding: 1rem;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.form-message.success {
  background-color: color-mix(in oklch, var(--accent) 10%, transparent);
  color: var(--accent);
}

.form-message.error {
  background-color: color-mix(in oklch, oklch(0.577 0.245 27.325) 10%, transparent);
  color: oklch(0.577 0.245 27.325);
}

.form-message svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.btn-submit {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  background-color: var(--accent);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent-foreground);
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: opacity 0.2s;
}

.btn-submit:hover {
  opacity: 0.9;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-submit svg {
  width: 1rem;
  height: 1rem;
}

.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 3fr;
  }

  .contact-form {
    padding: 2.5rem;
  }
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: var(--foreground);
  color: var(--background);
}

.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.footer-brand {
  grid-column: 1;
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--background);
}

.footer-brand-sub {
  font-size: 0.875rem;
  color: color-mix(in oklch, var(--background) 60%, transparent);
  margin-top: 0.25rem;
}

.footer-brand-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: color-mix(in oklch, var(--background) 60%, transparent);
  max-width: 28rem;
  margin-top: 1rem;
}

.footer-nav h4,
.footer-contact h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in oklch, var(--background) 80%, transparent);
  margin-bottom: 1rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: color-mix(in oklch, var(--background) 60%, transparent);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--background);
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: color-mix(in oklch, var(--background) 60%, transparent);
  transition: color 0.2s;
}

.footer-contact-item:hover {
  color: var(--background);
}

.footer-contact-item svg {
  width: 1rem;
  height: 1rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in oklch, var(--background) 10%, transparent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: color-mix(in oklch, var(--background) 40%, transparent);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1;
  }
}

/* ===== HIDDEN UTILITY ===== */
.hidden {
  display: none !important;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: color-mix(in oklch, var(--card) 95%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  opacity: 1;
}

.cookie-banner.cookie-banner--hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cookie-banner-content {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.cookie-banner-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: calc(var(--radius) - 2px);
  background-color: color-mix(in oklch, var(--accent) 12%, transparent);
  color: var(--accent);
}

.cookie-banner-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.cookie-banner-title {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--foreground);
  margin-bottom: 0.375rem;
}

.cookie-banner-desc {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.cookie-banner-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-preset-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--foreground);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.cookie-preset-btn:hover {
  border-color: var(--accent);
  background-color: color-mix(in oklch, var(--accent) 8%, transparent);
  color: var(--accent);
}

.cookie-preset-btn svg {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
}

.cookie-preset-btn--accent {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--accent-foreground);
}

.cookie-preset-btn--accent:hover {
  opacity: 0.9;
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--accent-foreground);
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cookie-customize-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: color 0.2s;
  font-family: inherit;
  background: none;
  border: none;
  padding: 0;
}

.cookie-customize-btn:hover {
  color: var(--accent);
}

.cookie-customize-btn svg {
  width: 0.875rem;
  height: 0.875rem;
}

.cookie-privacy-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.cookie-privacy-link:hover {
  color: var(--accent);
}

@media (min-width: 768px) {
  .cookie-banner-inner {
    padding: 1.5rem 2rem;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .cookie-banner-content {
    flex: 1;
    min-width: 0;
  }

  .cookie-banner-presets {
    flex-shrink: 0;
  }
}

/* ===== COOKIE OVERLAY ===== */
.cookie-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background-color: color-mix(in oklch, var(--foreground) 50%, transparent);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cookie-overlay.open {
  display: block;
  opacity: 1;
}

/* ===== COOKIE SETTINGS PANEL ===== */
.cookie-settings {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  z-index: 10001;
  width: calc(100% - 2rem);
  max-width: 40rem;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  border-radius: calc(var(--radius) + 4px);
  background-color: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.cookie-settings.open {
  display: block;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.cookie-settings-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 0;
}

.cookie-settings-header h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--foreground);
}

.cookie-settings-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius);
  color: var(--muted-foreground);
  transition: background-color 0.2s, color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
}

.cookie-settings-close:hover {
  background-color: var(--secondary);
  color: var(--foreground);
}

.cookie-settings-desc {
  padding: 1rem 1.5rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.cookie-settings-section {
  padding: 0 1.5rem 1.5rem;
}

.cookie-settings-section-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

/* Toggle groups */
.cookie-toggle-group {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 0.75rem;
  transition: border-color 0.2s;
}

.cookie-toggle-group:hover {
  border-color: color-mix(in oklch, var(--accent) 30%, transparent);
}

.cookie-toggle-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.cookie-toggle-info {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.cookie-toggle-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

.cookie-toggle-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.1875rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 500;
}

.cookie-toggle-badge--required {
  background-color: color-mix(in oklch, var(--accent) 12%, transparent);
  color: var(--accent);
}

.cookie-toggle-desc {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.cookie-toggle-data {
  background-color: var(--secondary);
  border-radius: calc(var(--radius) - 2px);
  padding: 0.875rem;
}

.cookie-toggle-data-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted-foreground);
  margin-bottom: 0.375rem;
}

.cookie-toggle-data ul {
  list-style: none;
  padding: 0;
}

.cookie-toggle-data li {
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--muted-foreground);
  padding: 0.125rem 0;
  padding-left: 1rem;
  position: relative;
}

.cookie-toggle-data li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Toggle switch */
.cookie-switch {
  position: relative;
  display: inline-flex;
  width: 2.75rem;
  height: 1.5rem;
  flex-shrink: 0;
  cursor: pointer;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-switch-slider {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background-color: var(--input);
  border: 1px solid var(--border);
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.cookie-switch-slider::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(1.5rem - 6px);
  height: calc(1.5rem - 6px);
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-switch input:checked+.cookie-switch-slider {
  background-color: var(--accent);
  border-color: var(--accent);
}

.cookie-switch input:checked+.cookie-switch-slider::before {
  transform: translateX(1.25rem);
}

.cookie-switch--disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Consent metrics */
.cookie-metrics {
  margin-top: 1rem;
}

.cookie-metrics h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.625rem;
}

.cookie-metrics-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.75rem;
}

.cookie-metrics-table td {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted-foreground);
  vertical-align: top;
}

.cookie-metrics-table td:first-child {
  font-weight: 500;
  color: var(--foreground);
  width: 45%;
  padding-right: 1rem;
}

/* Cookie services */
.cookie-services {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.cookie-services h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.375rem;
}

.cookie-services-subtitle {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.cookie-services-list {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

@media (min-width: 480px) {
  .cookie-services {
    grid-template-columns: 1fr 1fr;
  }
}

/* Save button */
.cookie-settings-footer {
  padding: 1rem 1.5rem 1.5rem;
  position: sticky;
  bottom: 0;
  background-color: var(--card);
  border-top: 1px solid var(--border);
}

.cookie-save-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: var(--radius);
  background-color: var(--accent);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent-foreground);
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: inherit;
  border: none;
}

.cookie-save-btn:hover {
  opacity: 0.9;
}

/* Re-open button */
.cookie-reopen-btn {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background-color: var(--card);
  border: 1px solid var(--border);
  color: var(--accent);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.cookie-reopen-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cookie-reopen-btn.visible {
  display: flex;
}

.cookie-reopen-btn svg {
  width: 1.125rem;
  height: 1.125rem;
}

/* ===== PRIVACY POLICY PAGE ===== */
.privacy-page {
  padding-top: 8rem;
}

.privacy-header {
  text-align: center;
  margin-bottom: 3rem;
}

.privacy-page-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: var(--foreground);
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.privacy-meta {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}

.privacy-content {
  max-width: 48rem;
  margin: 0 auto;
}

.privacy-content p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.privacy-content h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--foreground);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.privacy-content h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--foreground);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.privacy-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s;
}

.privacy-content a:hover {
  opacity: 0.8;
}

.privacy-content ul {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

.privacy-content li {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  margin-bottom: 0.375rem;
  position: relative;
  padding-left: 0.75rem;
  list-style: none;
}

.privacy-content li::before {
  content: '•';
  position: absolute;
  left: -0.375rem;
  color: var(--accent);
  font-weight: bold;
}

.privacy-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.privacy-table thead {
  background-color: var(--secondary);
}

.privacy-table th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--foreground);
  font-size: 0.8125rem;
  white-space: nowrap;
}

.privacy-table td {
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border);
  color: var(--muted-foreground);
  line-height: 1.5;
  vertical-align: top;
}

.privacy-back {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.privacy-back .btn-primary {
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .privacy-page-title {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .privacy-page-title {
    font-size: 3.5rem;
  }
}