/* ============================================================
   VUWOPU GEHAWU - Main Stylesheet
   BEM Naming Convention Throughout
   color-mix() palette generation
   ============================================================ */


:root {
  --primary: #c2694f;
  --secondary: #4a7c8e;
  --accent: #e8b86d;
  --bg: #faf8f5;
  --text: #2c2420;
  --nav-h: 72px;

  
  --primary-light: color-mix(in oklch, var(--primary), white 40%);
  --primary-lighter: color-mix(in oklch, var(--primary), white 70%);
  --primary-dark: color-mix(in oklch, var(--primary), black 20%);
  --primary-subtle: color-mix(in oklch, var(--primary), white 88%);
  --secondary-light: color-mix(in oklch, var(--secondary), white 40%);
  --secondary-lighter: color-mix(in oklch, var(--secondary), white 70%);
  --secondary-subtle: color-mix(in oklch, var(--secondary), white 88%);
  --accent-light: color-mix(in oklch, var(--accent), white 40%);
  --accent-subtle: color-mix(in oklch, var(--accent), white 80%);
  --text-muted: color-mix(in oklch, var(--text), white 45%);
  --text-faint: color-mix(in oklch, var(--text), white 65%);
  --bg-tinted: color-mix(in oklch, var(--bg), var(--primary) 4%);
  --border: color-mix(in oklch, var(--text), white 82%);

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

  
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-full: 100px;

  
  --shadow-sm: 0 1px 3px color-mix(in oklch, var(--text), transparent 90%),
               0 1px 2px color-mix(in oklch, var(--text), transparent 94%);
  --shadow-md: 0 4px 6px color-mix(in oklch, var(--text), transparent 88%),
               0 2px 4px color-mix(in oklch, var(--text), transparent 92%);
  --shadow-lg: 0 10px 15px color-mix(in oklch, var(--text), transparent 85%),
               0 4px 6px color-mix(in oklch, var(--text), transparent 90%);
  --shadow-xl: 0 20px 40px color-mix(in oklch, var(--primary), transparent 80%),
               0 8px 16px color-mix(in oklch, var(--text), transparent 88%);
  --shadow-card: 0 2px 8px color-mix(in oklch, var(--text), transparent 90%),
                 0 8px 24px color-mix(in oklch, var(--primary), transparent 92%);
  --shadow-card-hover: 0 8px 24px color-mix(in oklch, var(--primary), transparent 78%),
                       0 20px 48px color-mix(in oklch, var(--text), transparent 86%);
}


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

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--primary);
  transition: color 0.3s;
}

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


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--sp-2xl) 0;
}

.section--tinted {
  background: var(--bg-tinted);
  position: relative;
}

.section--tinted::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}


.section__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: var(--sp-sm);
}

.section__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: var(--sp-md);
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--r-full);
  font-family: 'Commissioner', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  line-height: 1;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

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

.btn--outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn--sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}


.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  transition: background 0.4s, box-shadow 0.4s, transform 0.4s;
}

.nav--scrolled {
  background: rgba(250, 248, 245, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px color-mix(in oklch, var(--primary), transparent 85%);
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 38px;
  width: auto;
}

.nav__logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin-left: auto;
  align-items: center;
}

.nav__link {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s;
}

.nav__link:hover {
  color: var(--primary);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__link--active {
  color: var(--primary);
}

.nav__cta {
  position: relative;
  background: var(--primary);
  color: #fff !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.nav__cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px color-mix(in oklch, var(--primary), transparent 60%);
}

.nav__cta-dot {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}


.mobile-menu {
  position: fixed;
  top: 0;
  left: -80%;
  width: 80%;
  height: 100vh;
  z-index: 2000;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.mobile-menu--open {
  left: 0;
  pointer-events: all;
}

.mobile-menu__nav {
  height: 100%;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  overflow-y: auto;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.mobile-menu__brand {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
}

.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  color: var(--text);
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  transition: background 0.3s;
}

.mobile-menu__close:hover {
  background: var(--primary-subtle);
}

.mobile-menu__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.mobile-menu__item {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.3s, transform 0.3s;
}

.mobile-menu--open .mobile-menu__item:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.mobile-menu--open .mobile-menu__item:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.1s; }
.mobile-menu--open .mobile-menu__item:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.15s; }
.mobile-menu--open .mobile-menu__item:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.2s; }
.mobile-menu--open .mobile-menu__item:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.25s; }

.mobile-menu__link {
  display: block;
  padding: 0.85rem 1rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 1.05rem;
  border-radius: var(--r-md);
  transition: background 0.3s, color 0.3s;
  min-height: 44px;
}

.mobile-menu__link:hover {
  background: var(--primary-subtle);
  color: var(--primary);
}

.mobile-menu__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #fff !important;
  padding: 1rem;
  border-radius: var(--r-full);
  font-weight: 600;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: background 0.3s;
}

.mobile-menu__cta:hover {
  background: var(--primary-dark);
}

.mobile-menu__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 36, 32, 0.5);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-menu__overlay--visible {
  opacity: 1;
  pointer-events: all;
}


.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 440px;
  padding-top: var(--nav-h);
}

.hero__visual {
  position: relative;
  overflow: hidden;
  background: var(--secondary-light);
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    color-mix(in oklch, var(--secondary), transparent 40%) 0%,
    transparent 60%);
}

.hero__panel {
  background: var(--bg);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  border-left: 1px solid var(--border);
  position: relative;
}

.hero__panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}

.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
}

.hero__title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.03em;
}

.hero__title span {
  color: var(--primary);
  position: relative;
}

.hero__title span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.hero__subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--primary);
  color: #fff;
  padding: 0.9rem 1.8rem;
  border-radius: var(--r-full);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s;
  align-self: flex-start;
  box-shadow: var(--shadow-md);
}

.hero__cta:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.hero__cta i {
  transition: transform 0.3s;
}

.hero__cta:hover i {
  transform: translateX(4px);
}

.hero__note {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}


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

.intro__body {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-sm);
}

.intro__image-wrap {
  position: relative;
}

.intro__image {
  border-radius: var(--r-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.4s, transform 0.4s;
}

.intro__image:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.intro__image-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-lg);
}


.benefits__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--sp-xl);
}

.benefits__intro {
  color: var(--text-muted);
  line-height: 1.7;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary-light);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card__icon {
  width: 48px;
  height: 48px;
  background: var(--primary-subtle);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  transition: background 0.3s, color 0.3s;
}

.benefit-card:hover .benefit-card__icon {
  background: var(--primary);
  color: #fff;
}

.benefit-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.benefit-card__body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}


.techniques__header {
  margin-bottom: var(--sp-xl);
}

.techniques__swiper {
  padding-bottom: 3rem;
  position: relative;
}

.technique-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.technique-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.technique-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s;
}

.technique-card:hover .technique-card__img {
  transform: scale(1.04);
}

.technique-card__body {
  padding: 1.5rem;
}

.technique-card__tag {
  display: inline-block;
  background: var(--primary-subtle);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-full);
  margin-bottom: 0.75rem;
}

.technique-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.technique-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.techniques__pagination {
  bottom: 0;
}

.swiper-pagination-bullet {
  background: var(--primary-light);
  opacity: 0.5;
  transition: all 0.3s;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
  opacity: 1;
  width: 24px;
  border-radius: 3px;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--primary);
  background: var(--bg);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1rem;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}


.portfolio__header {
  max-width: 640px;
  margin-bottom: var(--sp-xl);
}

.portfolio__intro {
  color: var(--text-muted);
  line-height: 1.7;
}

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

.portfolio__img {
  border-radius: var(--r-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.4s, transform 0.4s;
}

.portfolio__img:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.portfolio__points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.portfolio__point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.portfolio__point i {
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.portfolio__point h4 {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.portfolio__point p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}


.cta-split__inner {
  background: linear-gradient(135deg,
    color-mix(in oklch, var(--primary), var(--bg) 88%) 0%,
    color-mix(in oklch, var(--secondary), var(--bg) 88%) 100%);
  border-radius: var(--r-xl);
  padding: var(--sp-xl) var(--sp-lg);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-xl);
  align-items: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.cta-split__inner::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: color-mix(in oklch, var(--accent), transparent 80%);
}

.cta-split__title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: var(--sp-sm);
  letter-spacing: -0.025em;
}

.cta-split__body {
  color: var(--text-muted);
  line-height: 1.7;
}

.cta-split__action {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  flex-shrink: 0;
  min-width: 240px;
}

.cta-split__note {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cta-split__note i {
  color: var(--primary);
}


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

.location__body {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-md);
}

.location__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: var(--sp-md);
}

.location__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.location__list i {
  color: var(--primary);
  width: 20px;
  flex-shrink: 0;
}

.location__list a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.location__list a:hover {
  color: var(--primary);
}

.location__map iframe {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}


.page-hero {
  padding: var(--sp-2xl) 0 var(--sp-xl);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    color-mix(in oklch, var(--primary), var(--bg) 92%) 0%,
    color-mix(in oklch, var(--secondary), var(--bg) 95%) 100%);
  z-index: 0;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

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

.page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: var(--sp-sm);
}

.page-hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}


.about-story__grid,
.about-approach__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

.about-story__text p,
.about-approach__text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-sm);
}

.about-story__image,
.about-approach__image {
  border-radius: var(--r-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.4s, transform 0.4s;
}

.about-story__image:hover,
.about-approach__image:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: var(--sp-xl);
}

.value-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.value-card__number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-subtle);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.value-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

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


.technique-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
  margin-bottom: var(--sp-2xl);
}

.technique-detail--reverse {
  direction: rtl;
}

.technique-detail--reverse > * {
  direction: ltr;
}

.technique-detail__image {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.4s, transform 0.4s;
}

.technique-detail__image:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.technique-detail__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.technique-detail__image:hover img {
  transform: scale(1.03);
}

.technique-detail__module {
  display: inline-block;
  background: var(--primary-subtle);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-full);
  margin-bottom: 0.75rem;
}

.technique-detail__title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: var(--sp-sm);
  letter-spacing: -0.025em;
}

.technique-detail__content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-sm);
}

.technique-detail__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: var(--sp-sm);
}

.technique-detail__list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.technique-detail__list i {
  color: var(--accent);
  font-size: 0.75rem;
  flex-shrink: 0;
}


.enroll-info__grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--sp-xl);
  align-items: start;
}

.enroll-includes {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: var(--sp-md);
}

.enroll-includes__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.enroll-includes__item i {
  color: var(--primary);
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.enroll-includes__item strong {
  display: block;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.enroll-includes__item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.enroll-card {
  background: var(--bg);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.enroll-card--featured {
  border-color: var(--primary-light);
  box-shadow: 0 4px 24px color-mix(in oklch, var(--primary), transparent 80%),
              0 16px 48px color-mix(in oklch, var(--text), transparent 92%);
}

.enroll-card__header {
  background: linear-gradient(135deg, var(--primary), color-mix(in oklch, var(--primary), var(--secondary) 40%));
  padding: 2rem;
  color: #fff;
}

.enroll-card__title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
}

.enroll-card__subtitle {
  font-size: 0.9rem;
  opacity: 0.85;
  color: #fff;
}

.enroll-card__features {
  list-style: none;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.enroll-card__features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.enroll-card__features i {
  color: var(--primary);
  flex-shrink: 0;
}

.enroll-card .btn {
  margin: 0 1.5rem 1.5rem;
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: var(--sp-xl);
}

.faq__item {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.faq__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.faq__item h4 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.faq__item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}


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

.chat-form {
  background: var(--bg);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.chat-form__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, var(--primary), color-mix(in oklch, var(--primary), var(--secondary) 40%));
  color: #fff;
}

.chat-form__avatar {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.chat-form__header strong {
  display: block;
  font-weight: 700;
  color: #fff;
}

.chat-form__status {
  font-size: 0.8rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.chat-form__status::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
}

.chat-form__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.chat-bubble {
  max-width: 85%;
}

.chat-bubble--company {
  align-self: flex-start;
}

.chat-bubble--company p {
  background: var(--primary-subtle);
  color: var(--text);
  padding: 0.75rem 1rem;
  border-radius: 0 var(--r-lg) var(--r-lg) var(--r-lg);
  font-size: 0.9rem;
  line-height: 1.5;
}

.chat-bubble--user {
  align-self: flex-end;
  width: 100%;
  max-width: 100%;
}

.chat-bubble--user input,
.chat-bubble--user textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--r-lg) 0 var(--r-lg) var(--r-lg);
  font-family: 'Commissioner', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--secondary-subtle);
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: vertical;
}

.chat-bubble--user input:focus,
.chat-bubble--user textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--primary), transparent 85%);
}

.chat-bubble--privacy {
  max-width: 100%;
}

.chat-form__privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  background: var(--secondary-subtle);
  padding: 0.75rem 1rem;
  border-radius: var(--r-lg) 0 var(--r-lg) var(--r-lg);
  border: 2px solid var(--border);
  transition: border-color 0.3s;
}

.chat-form__privacy:has(input:checked) {
  border-color: var(--primary);
}

.chat-form__privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--primary);
  margin-top: 1px;
}

.chat-form__privacy span {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.chat-form__privacy a {
  color: var(--primary);
}

.chat-form__send {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

.chat-form__btn {
  min-width: 44px;
  min-height: 44px;
}

.contact-info {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.contact-info__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.contact-info__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-info__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-info__list i {
  color: var(--primary);
  width: 18px;
  flex-shrink: 0;
}

.contact-info__list a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info__list a:hover {
  color: var(--primary);
}


.team__grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

.team__image {
  border-radius: var(--r-lg);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.4s, transform 0.4s;
}

.team__image:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.team__content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-sm);
}

.team__contact-prompt {
  background: var(--primary-subtle);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  margin-top: var(--sp-md);
  font-size: 0.9rem;
}

.team__contact-prompt a {
  color: var(--primary);
  font-weight: 600;
}


.thanks-page {
  display: flex;
  align-items: center;
  padding: var(--sp-2xl) 0;
}

.thanks__inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.thanks__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-sm);
}

.thanks__subtitle {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-lg);
}

.thanks__home-btn {
  margin-bottom: var(--sp-xl);
}

.thanks__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
  position: relative;
  margin-bottom: var(--sp-xl);
}

.thanks__step {
  display: flex;
  gap: 1.25rem;
  position: relative;
  padding-bottom: 2rem;
}

.thanks__step:last-child {
  padding-bottom: 0;
}

.thanks__step::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.thanks__step:last-child::before {
  display: none;
}

.thanks__step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.thanks__step--done .thanks__step-icon {
  background: var(--primary-subtle);
  color: var(--primary);
  border: 2px solid var(--primary-light);
}

.thanks__step--current .thanks__step-icon {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 4px var(--primary-subtle);
}

.thanks__step--upcoming .thanks__step-icon {
  background: var(--border);
  color: var(--text-faint);
  border: 2px solid var(--border);
}

.thanks__step-content h4 {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.thanks__step--upcoming .thanks__step-content h4,
.thanks__step--upcoming .thanks__step-content p {
  color: var(--text-faint);
}

.thanks__step-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.thanks__links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


.legal-hero {
  padding: var(--sp-xl) 0 var(--sp-lg);
  background: linear-gradient(135deg,
    color-mix(in oklch, var(--secondary), var(--bg) 90%) 0%,
    color-mix(in oklch, var(--primary), var(--bg) 93%) 100%);
  border-bottom: 1px solid var(--border);
}

.legal-hero__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.legal-hero__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.legal-content {
  max-width: 760px;
}

.legal-intro {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-lg);
  padding-bottom: var(--sp-md);
  border-bottom: 1px solid var(--border);
}

.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-sm);
  padding-top: var(--sp-md);
  border-top: 1px solid var(--border);
}

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-top: var(--sp-md);
  margin-bottom: var(--sp-xs);
}

.legal-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-sm);
}

.legal-term {
  color: var(--primary);
  font-weight: 600;
}

.legal-definition {
  background: var(--secondary-subtle);
  border-left: 4px solid var(--secondary);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 1.5rem;
  margin: var(--sp-md) 0;
}

.legal-definition strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.legal-definition dl {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal-definition dt {
  font-weight: 700;
  color: var(--text);
  font-size: 0.9rem;
}

.legal-definition dd {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-left: 1rem;
}

.legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: var(--sp-sm) 0;
  padding-left: 1rem;
}

.legal-list li {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.93rem;
  position: relative;
  padding-left: 1rem;
}

.legal-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.legal-address {
  background: var(--primary-subtle);
  border-radius: var(--r-md);
  padding: 1.25rem;
  font-style: normal;
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-top: var(--sp-sm);
}

.legal-address a {
  color: var(--primary);
}


.cookie-table-wrap {
  margin: var(--sp-md) 0;
}

.cookie-table-wrap h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.cookie-table th {
  background: var(--primary-subtle);
  color: var(--primary);
  font-weight: 700;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--primary-light);
}

.cookie-table td {
  padding: 0.65rem 1rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

.cookie-table code {
  background: var(--primary-subtle);
  color: var(--primary);
  padding: 0.15rem 0.4rem;
  border-radius: var(--r-sm);
  font-family: monospace;
  font-size: 0.85em;
}


.footer {
  background: color-mix(in oklch, var(--text), white 5%);
  color: color-mix(in oklch, var(--bg), transparent 20%);
  padding: var(--sp-2xl) 0 0;
  margin-top: 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-xl);
  padding-bottom: var(--sp-xl);
}

.footer__logo {
  height: 40px;
  width: auto;
  margin-bottom: var(--sp-sm);
  filter: brightness(10);
  opacity: 0.85;
}

.footer__tagline {
  font-size: 0.88rem;
  color: color-mix(in oklch, var(--bg), transparent 30%);
  line-height: 1.6;
  margin-bottom: var(--sp-sm);
}

.footer__address {
  font-style: normal;
  font-size: 0.85rem;
  color: color-mix(in oklch, var(--bg), transparent 40%);
  line-height: 1.8;
}

.footer__address a {
  color: color-mix(in oklch, var(--bg), transparent 35%);
  text-decoration: none;
  transition: color 0.3s;
}

.footer__address a:hover {
  color: var(--accent);
}

.footer__heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in oklch, var(--bg), transparent 20%);
  margin-bottom: 1.25rem;
}

.footer__nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__nav a {
  text-decoration: none;
  font-size: 0.9rem;
  color: color-mix(in oklch, var(--bg), transparent 40%);
  transition: color 0.3s, padding-left 0.3s;
  display: block;
}

.footer__nav a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer__bottom {
  border-top: 1px solid color-mix(in oklch, var(--text), white 20%);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: color-mix(in oklch, var(--bg), transparent 50%);
}


.cookie-trigger {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 900;
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  text-decoration: none;
}

.cookie-trigger:hover {
  background: var(--primary-subtle);
  color: var(--primary);
  border-color: var(--primary-light);
}

.cookie-trigger--pulse {
  animation: cookie-pulse 2s ease-in-out 3;
}

@keyframes cookie-pulse {
  0%, 100% { box-shadow: var(--shadow-sm); }
  50% { box-shadow: 0 0 0 4px color-mix(in oklch, var(--primary), transparent 80%), var(--shadow-sm); }
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44, 36, 32, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 1rem;
}

.cookie-modal--visible {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal__box {
  background: var(--bg);
  border-radius: var(--r-xl);
  padding: 2rem;
  max-width: 460px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s;
}

.cookie-modal--visible .cookie-modal__box {
  transform: none;
}

.cookie-modal__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.cookie-modal__intro {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.cookie-modal__options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--bg-tinted);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.3s;
}

.cookie-option:hover {
  background: var(--primary-subtle);
}

.cookie-option__label {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.cookie-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--primary);
}

.cookie-modal__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

.cookie-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-muted);
  padding: 0.4rem;
  border-radius: var(--r-sm);
  transition: background 0.3s, color 0.3s;
  min-width: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal__close:hover {
  background: var(--primary-subtle);
  color: var(--primary);
}


.enroll-faq {
  max-width: 900px;
  margin: 0 auto;
}


@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr 380px;
  }

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

  .intro__grid,
  .portfolio__grid,
  .location__grid,
  .about-story__grid,
  .about-approach__grid,
  .team__grid {
    grid-template-columns: 1fr;
  }

  .enroll-info__grid {
    grid-template-columns: 1fr;
  }

  .technique-detail,
  .technique-detail--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .technique-detail--reverse > * {
    direction: ltr;
  }

  .values__grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .nav__list {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__visual {
    height: 55vw;
    min-height: 240px;
  }

  .hero__panel {
    padding: 2.5rem 1.5rem;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .values__grid {
    grid-template-columns: 1fr;
  }

  .faq__grid {
    grid-template-columns: 1fr;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .portfolio__grid {
    grid-template-columns: 1fr;
  }

  .thanks__timeline {
    text-align: left;
  }

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

  .location__grid {
    grid-template-columns: 1fr;
  }

  .team__grid {
    grid-template-columns: 1fr;
  }

  .team__image {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero__panel {
    padding: 2rem 1rem;
  }

  .chat-form__body {
    padding: 1rem;
  }

  .legal-content h2 {
    font-size: 1.1rem;
  }
}