/* =============================================
   Kodeo ApS — Homepage Styles
   Black & Gold Theme
   ============================================= */

:root {
  --black: #080808;
  --black-soft: #111111;
  --black-card: #161616;
  --black-elevated: #1c1c1c;
  --gold: #c9a962;
  --gold-light: #dfc07a;
  --gold-dark: #a88b4a;
  --gold-glow: rgba(201, 169, 98, 0.35);
  --white: #f4f2ee;
  --gray: #9a9590;
  --gray-dark: #5a5652;
  --border: rgba(201, 169, 98, 0.18);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 12px;
  --header-h: 96px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1200px, calc(100% - 2rem));
  max-width: 100%;
  margin: 0 auto;
}

/* ---- Utility ---- */
.gold-text {
  color: var(--gold);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-desc {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 560px;
  margin-top: 1.25rem;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

body.is-loading {
  overflow: hidden;
}

html.is-modal-open,
body.is-modal-open {
  overflow: hidden;
  overscroll-behavior: none;
}

/* ---- Preloader ---- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__content {
  position: relative;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader__icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  animation: preloaderPulse 1.6s ease-in-out infinite;
}

.preloader__ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(201, 169, 98, 0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: preloaderSpin 1s linear infinite;
}

@keyframes preloaderSpin {
  to { transform: rotate(360deg); }
}

@keyframes preloaderPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(201, 169, 98, 0));
  }
  50% {
    transform: scale(1.06);
    filter: drop-shadow(0 0 12px rgba(201, 169, 98, 0.45));
  }
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  pointer-events: none;
  transition: padding var(--transition);
  max-width: 100%;
}

.header.scrolled {
  padding: 0.5rem 0;
}

.header__shell {
  pointer-events: auto;
  width: min(1240px, calc(100% - 1.5rem));
  max-width: 100%;
  margin: 0 auto;
  padding: 0.55rem 0.55rem 0.55rem 1.25rem;
  background: rgba(12, 12, 12, 0.94);
  border: 1px solid rgba(201, 169, 98, 0.14);
  border-radius: 100px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.header.scrolled .header__shell {
  background: rgba(8, 8, 8, 0.98);
  border-color: rgba(201, 169, 98, 0.22);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo,
.footer__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo__img,
.footer__logo img {
  display: block;
  width: auto;
  object-fit: contain;
  transform-origin: center center;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.logo__img {
  height: 40px;
  max-width: 168px;
}

.footer__logo {
  margin-bottom: 1rem;
}

.footer__logo img {
  height: 44px;
}

.logo:hover .logo__img,
.footer__logo:hover img {
  animation: logoHover 0.65s ease forwards;
}

@keyframes logoHover {
  0% {
    transform: scale(1) translateY(0);
    filter: drop-shadow(0 0 0 rgba(201, 169, 98, 0));
  }
  45% {
    transform: scale(1.06) translateY(-3px);
    filter: drop-shadow(0 6px 18px rgba(201, 169, 98, 0.45));
  }
  100% {
    transform: scale(1.03) translateY(-1px);
    filter: drop-shadow(0 3px 14px rgba(201, 169, 98, 0.32));
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav__primary {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.2rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.nav__secondary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 0.5rem;
  padding-left: 0.75rem;
  border-left: 1px solid rgba(201, 169, 98, 0.15);
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gray);
  border-radius: 100px;
  position: relative;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}

.nav__num {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(201, 169, 98, 0.45);
  transition: color var(--transition);
}

.nav__link:hover {
  color: var(--white);
  background: rgba(201, 169, 98, 0.08);
}

.nav__link:hover .nav__num {
  color: var(--gold);
}

.nav__link.active {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-dark) 100%);
  box-shadow: 0 2px 12px rgba(201, 169, 98, 0.25);
}

.nav__link.active .nav__num {
  color: rgba(8, 8, 8, 0.5);
}

.nav__link--faqs {
  padding: 0.55rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.nav__link--faqs::before {
  content: '?';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-right: 2px;
  font-size: 0.65rem;
  font-weight: 700;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.7;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  background: transparent;
  border: 1px solid rgba(201, 169, 98, 0.5);
  border-radius: 100px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.nav__cta svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.nav__cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.nav__cta:hover svg {
  transform: translateX(3px);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  position: relative;
  z-index: 1002;
  background: rgba(201, 169, 98, 0.08);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}

.burger:hover {
  background: rgba(201, 169, 98, 0.15);
  border-color: rgba(201, 169, 98, 0.4);
}

.burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 0 auto;
  background: var(--gold);
  transition: transform var(--transition), opacity var(--transition);
}

.burger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: 100%;
}

section,
footer,
.marquee {
  max-width: 100%;
  overflow-x: clip;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8, 8, 8, 0.92) 0%, rgba(8, 8, 8, 0.65) 50%, rgba(8, 8, 8, 0.88) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(201, 169, 98, 0.08) 0%, transparent 60%);
}

.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle 8s ease-in-out infinite;
}

@keyframes floatParticle {
  0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
  20% { opacity: 0.6; }
  50% { opacity: 0.3; transform: translateY(-120px) scale(1.5); }
  80% { opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + 4rem) 0 6rem;
  max-width: 780px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  animation: fadeUp 1s ease 0.4s both;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__subtitle {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray);
  max-width: 580px;
  line-height: 1.8;
  animation: fadeUp 1s ease 0.6s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  animation: fadeUp 1s ease 0.8s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--gold-glow);
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.btn:hover svg {
  transform: translateX(4px);
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeUp 1s ease 1.2s both;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- Marquee ---- */
.marquee {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--black-soft);
  overflow: hidden;
  max-width: 100%;
}

.marquee__track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee__item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gray-dark);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.marquee__item::after {
  content: '◆';
  color: var(--gold);
  font-size: 0.5rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- About ---- */
.about {
  padding: 7rem 0;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at right center, rgba(201, 169, 98, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__visual {
  position: relative;
  overflow: hidden;
}

.about__frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.about__frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about__frame:hover img {
  transform: scale(1.04);
}

.about__frame-accent {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 80px;
  height: 80px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  pointer-events: none;
}

.about__frame-accent--br {
  top: auto;
  left: auto;
  bottom: -12px;
  right: -12px;
  border-top: none;
  border-left: none;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.about__text p {
  color: var(--gray);
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}

.about__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.highlight-card {
  padding: 1.5rem;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
}

.highlight-card:hover {
  border-color: rgba(201, 169, 98, 0.4);
  transform: translateY(-4px);
}

.highlight-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.highlight-card__icon svg {
  width: 20px;
  height: 20px;
}

.highlight-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.highlight-card p {
  font-size: 0.875rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.6;
}

/* ---- Philosophy ---- */
.philosophy {
  padding: 7rem 0;
  background: var(--black-soft);
  position: relative;
  overflow: hidden;
}

.philosophy__header {
  text-align: center;
  margin-bottom: 4rem;
}

.philosophy__header .section-desc {
  margin: 1.25rem auto 0;
}

.philosophy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.philosophy-card {
  padding: 2.5rem 2rem;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}

.philosophy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.philosophy-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 98, 0.3);
}

.philosophy-card:hover::before {
  transform: scaleX(1);
}

.philosophy-card__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201, 169, 98, 0.15);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.philosophy-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.philosophy-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ---- Landscape ---- */
.landscape {
  padding: 7rem 0;
}

.landscape__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.landscape__image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.landscape__image-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.landscape__image-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(201, 169, 98, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.landscape__points {
  margin-top: 2rem;
}

.landscape__point {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.landscape__point:last-child {
  border-bottom: none;
}

.landscape__point-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 98, 0.08);
  border-radius: 50%;
  color: var(--gold);
}

.landscape__point-icon svg {
  width: 18px;
  height: 18px;
}

.landscape__point h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.landscape__point p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ---- Principles ---- */
.principles {
  padding: 7rem 0;
  background: var(--black-soft);
}

.principles__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.principles__image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.principles__image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.principles__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.principle-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.principle-item:hover {
  border-color: rgba(201, 169, 98, 0.35);
}

.principle-item__marker {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

.principle-item h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.principle-item p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ---- CTA ---- */
.cta {
  padding: 6rem 0;
  position: relative;
}

.cta__box {
  position: relative;
  padding: 4rem;
  text-align: center;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.cta__box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(201, 169, 98, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta__box > * {
  position: relative;
  z-index: 1;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta__desc {
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* ---- Footer ---- */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--black);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}


.footer__about {
  color: var(--gray);
  font-size: 0.925rem;
  line-height: 1.75;
  max-width: 320px;
}

.footer__heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: var(--gray);
  font-size: 0.925rem;
}

.footer__contact-item svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--gold);
  margin-top: 3px;
}

.footer__contact-item a {
  transition: color var(--transition);
}

.footer__contact-item a:hover {
  color: var(--gold);
}

.footer__hours {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.925rem;
  color: var(--gray);
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
}

.footer__hours-row:last-child {
  border-bottom: none;
}

.footer__hours-row span:first-child {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer__copyright {
  font-size: 0.8rem;
  color: var(--gray-dark);
}

.footer__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.footer__legal a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gray);
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: var(--gold);
}

.footer__legal-sep {
  width: 4px;
  height: 4px;
  background: rgba(201, 169, 98, 0.45);
  border-radius: 50%;
  transform: rotate(45deg);
}

/* ---- Legal pages ---- */
.legal-page {
  padding-top: calc(var(--header-h) + 1rem);
}

.legal-hero {
  padding: 3.5rem 0 3rem;
  background: var(--black-soft);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.legal-hero .section-label {
  justify-content: center;
}

.legal-hero .section-label::before {
  display: none;
}

.legal-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.12;
  margin-top: 0.5rem;
}

.legal-hero__desc {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 1.25rem auto 0;
  line-height: 1.75;
}

.legal-content {
  padding: 4rem 0 6rem;
}

.legal-content__body {
  max-width: 780px;
  margin: 0 auto;
}

.legal-block {
  margin-bottom: 2.75rem;
  padding-bottom: 2.75rem;
  border-bottom: 1px solid var(--border);
}

.legal-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.legal-block h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.legal-block p {
  color: var(--gray);
  font-size: 0.975rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-block ul {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.legal-block li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--gray);
  font-size: 0.975rem;
  line-height: 1.75;
  margin-bottom: 0.65rem;
}

.legal-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

.legal-block a {
  color: var(--gold);
  transition: color var(--transition);
}

.legal-block a:hover {
  color: var(--gold-light);
}

/* ---- FAQ page ---- */
.faq-page {
  padding-top: calc(var(--header-h) + 1rem);
}

.faq-content {
  padding: 4rem 0 6rem;
}

.faq-content__inner {
  max-width: 820px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 3rem;
}

.faq-category__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.active {
  border-color: rgba(201, 169, 98, 0.35);
}

.faq-item.active .faq-question {
  color: var(--gold);
}

.faq-item.active .faq-question__icon {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--gold-light);
}

.faq-question__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gray);
  transition: transform var(--transition), color var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer__inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--gray);
  font-size: 0.925rem;
  line-height: 1.8;
}

.faq-answer__inner p {
  margin: 0;
}

.faq-answer__inner a {
  color: var(--gold);
  transition: color var(--transition);
}

.faq-answer__inner a:hover {
  color: var(--gold-light);
}

.faq-cta {
  margin-top: 3.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.faq-cta__title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.faq-cta__text {
  color: var(--gray);
  font-size: 0.975rem;
  max-width: 480px;
  margin: 0 auto 1.5rem;
  line-height: 1.75;
}

/* ---- Contact page ---- */
.contact-page {
  padding-top: calc(var(--header-h) + 1rem);
}

.contact-section {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-card {
  padding: 1.5rem;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.contact-card:hover {
  border-color: rgba(201, 169, 98, 0.3);
}

.contact-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 98, 0.08);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 10px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.contact-card__icon svg {
  width: 20px;
  height: 20px;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-card p,
.contact-card a {
  color: var(--gray);
  font-size: 0.925rem;
  line-height: 1.7;
}

.contact-card a {
  color: var(--gold);
  transition: color var(--transition);
}

.contact-card a:hover {
  color: var(--gold-light);
}

.contact-form-wrap {
  padding: 2.5rem;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-form-wrap__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-form-wrap__desc {
  color: var(--gray);
  font-size: 0.925rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.925rem;
  line-height: 1.5;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-dark);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(201, 169, 98, 0.5);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.08);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-form__submit {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.form-group input.invalid,
.form-group textarea.invalid {
  border-color: rgba(220, 80, 80, 0.55);
}

.form-group input.invalid:focus,
.form-group textarea.invalid:focus {
  box-shadow: 0 0 0 3px rgba(220, 80, 80, 0.12);
}

/* ---- Form modal ---- */
.form-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.form-modal--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.form-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.form-modal__dialog {
  position: relative;
  width: min(440px, 100%);
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(18, 18, 18, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: 16px;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.6),
    0 0 48px rgba(201, 169, 98, 0.08);
  transform: scale(0.92) translateY(16px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.form-modal--visible .form-modal__dialog {
  transform: scale(1) translateY(0);
}

.form-modal__dialog::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form-modal__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 98, 0.25);
}

.form-modal__icon svg {
  width: 32px;
  height: 32px;
  display: none;
}

.form-modal__icon--success {
  background: rgba(201, 169, 98, 0.1);
  color: var(--gold);
}

.form-modal__icon--success .form-modal__icon-success {
  display: block;
}

.form-modal__icon--error {
  background: rgba(220, 80, 80, 0.08);
  border-color: rgba(220, 80, 80, 0.3);
  color: #e07070;
}

.form-modal__icon--error .form-modal__icon-error {
  display: block;
}

.form-modal__title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.form-modal__text {
  color: var(--gray);
  font-size: 0.925rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.form-modal__btn {
  min-width: 140px;
  justify-content: center;
}

.contact-map {
  padding: 0 0 6rem;
}

.contact-map__header {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-map__header .section-label {
  justify-content: center;
}

.contact-map__header .section-label::before {
  display: none;
}

.contact-map__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  margin-top: 0.5rem;
}

.contact-map__frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  line-height: 0;
  background: var(--black-card);
}

.contact-map__frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  filter: grayscale(30%) contrast(1.1);
}

/* ---- Insights page ---- */
.insights-page {
  padding-top: var(--header-h);
}

.insights-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.insights-hero__bg {
  position: absolute;
  inset: 0;
}

.insights-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insights-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.94) 0%, rgba(8, 8, 8, 0.7) 55%, rgba(8, 8, 8, 0.5) 100%),
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 98, 0.07) 0%, transparent 55%);
}

.insights-hero__content {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
  max-width: 680px;
}

.insights-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.insights-hero__title em {
  font-style: italic;
  color: var(--gold);
}

.insights-hero__desc {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 540px;
}

.insights-pillars {
  padding: 6rem 0;
  background: var(--black-soft);
}

.insights-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.insight-pillar {
  padding: 2rem 1.75rem;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}

.insight-pillar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.insight-pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 98, 0.3);
}

.insight-pillar:hover::after {
  transform: scaleX(1);
}

.insight-pillar__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.insight-pillar h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.insight-pillar p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.75;
}

.insights-feature {
  padding: 6rem 0;
}

.insights-feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.insights-feature__grid--reverse {
  direction: rtl;
}

.insights-feature__grid--reverse > * {
  direction: ltr;
}

.insights-feature__image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.insights-feature__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.insights-feature__image:hover img {
  transform: scale(1.03);
}

.insights-feature__content .section-label {
  margin-bottom: 1rem;
}

.insights-feature__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.insights-feature__content p {
  color: var(--gray);
  font-size: 0.975rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.insights-feature__list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  list-style: none;
  padding: 0;
}

.insights-feature__list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.65;
}

.insights-feature__list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 0.55em;
  background: var(--gold);
  transform: rotate(45deg);
}

.insights-signals {
  padding: 6rem 0;
  background: var(--black-soft);
}

.insights-signals__header {
  text-align: center;
  margin-bottom: 3rem;
}

.insights-signals__header .section-desc {
  margin: 1rem auto 0;
}

.insights-signals__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.signal-card {
  padding: 1.75rem 1.5rem;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.signal-card:hover {
  border-color: rgba(201, 169, 98, 0.35);
  transform: translateY(-4px);
}

.signal-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 98, 0.08);
  border-radius: 50%;
  color: var(--gold);
}

.signal-card__icon svg {
  width: 22px;
  height: 22px;
}

.signal-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.signal-card p {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.65;
}

.insights-spotlight {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.insights-spotlight__bg {
  position: absolute;
  inset: 0;
}

.insights-spotlight__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insights-spotlight__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 8, 8, 0.95) 0%, rgba(8, 8, 8, 0.6) 50%, rgba(8, 8, 8, 0.75) 100%);
}

.insights-spotlight__content {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
  max-width: 640px;
}

.insights-spotlight__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.insights-spotlight__content p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
}

.insights-quote {
  padding: 5rem 0;
}

.insights-quote__box {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem;
  text-align: center;
  border-left: 3px solid var(--gold);
  background: var(--black-card);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.insights-quote__text {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.55;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.insights-quote__author {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.insights-cta {
  padding: 0 0 6rem;
}

/* ---- Philosophy page ---- */
.philosophy-page {
  padding-top: var(--header-h);
}

.philosophy-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.philosophy-hero__bg {
  position: absolute;
  inset: 0;
}

.philosophy-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.5) 0%, rgba(8, 8, 8, 0.88) 70%, rgba(8, 8, 8, 0.96) 100%),
    radial-gradient(ellipse at 50% 30%, rgba(201, 169, 98, 0.08) 0%, transparent 60%);
}

.philosophy-hero__content {
  position: relative;
  z-index: 2;
  padding: 5rem 0 4rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.philosophy-hero .section-label {
  justify-content: center;
}

.philosophy-hero .section-label::before {
  display: none;
}

.philosophy-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

.philosophy-hero__desc {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.8;
}

.philosophy-manifesto {
  padding: 3rem 0;
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.philosophy-manifesto__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.manifesto-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.manifesto-item__word {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.manifesto-item__desc {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.6;
}

.philosophy-beliefs {
  padding: 6rem 0;
}

.philosophy-beliefs__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.philosophy-beliefs__header .section-desc {
  margin: 1rem auto 0;
}

.philosophy-beliefs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.belief-card {
  position: relative;
  padding-top: 3rem;
}

.belief-card__num {
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(201, 169, 98, 0.12);
  pointer-events: none;
}

.belief-card__body {
  padding: 2rem 1.75rem;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 100%;
  transition: border-color var(--transition), transform var(--transition);
}

.belief-card:hover .belief-card__body {
  border-color: rgba(201, 169, 98, 0.35);
  transform: translateY(-4px);
}

.belief-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
  color: var(--white);
}

.belief-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.75;
}

.philosophy-split {
  padding: 6rem 0;
  background: var(--black-soft);
}

.philosophy-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.philosophy-split__grid--reverse {
  direction: rtl;
}

.philosophy-split__grid--reverse > * {
  direction: ltr;
}

.philosophy-split__image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.philosophy-split__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.philosophy-split__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.philosophy-split__content p {
  color: var(--gray);
  font-size: 0.975rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.philosophy-tenets {
  padding: 6rem 0;
}

.philosophy-tenets__header {
  text-align: center;
  margin-bottom: 3rem;
}

.philosophy-tenets__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.tenet-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.tenet-item:hover {
  border-color: rgba(201, 169, 98, 0.3);
}

.tenet-item__marker {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 98, 0.08);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 8px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.tenet-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.tenet-item p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
}

.philosophy-vision {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.philosophy-vision__bg {
  position: absolute;
  inset: 0;
}

.philosophy-vision__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy-vision__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 8, 8, 0.92) 0%, rgba(8, 8, 8, 0.65) 100%);
}

.philosophy-vision__content {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
  max-width: 600px;
}

.philosophy-vision__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.philosophy-vision__content p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
}

.philosophy-closing {
  padding: 5rem 0 6rem;
}

.philosophy-closing__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-closing__text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--white);
  margin-bottom: 2rem;
}

.philosophy-closing__text em {
  font-style: italic;
  color: var(--gold);
}

/* ---- About page ---- */
.about-page {
  padding-top: var(--header-h);
}

.about-page-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-page-hero__bg {
  position: absolute;
  inset: 0;
}

.about-page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.5) 0%, rgba(8, 8, 8, 0.88) 70%, rgba(8, 8, 8, 0.96) 100%),
    radial-gradient(ellipse at 50% 30%, rgba(201, 169, 98, 0.08) 0%, transparent 60%);
}

.about-page-hero__content {
  position: relative;
  z-index: 2;
  padding: 5rem 0 4rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.about-page-hero .section-label {
  justify-content: center;
}

.about-page-hero .section-label::before {
  display: none;
}

.about-page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

.about-page-hero__desc {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-page-identity {
  padding: 3rem 0;
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-page-identity__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.identity-pillar {
  text-align: center;
  padding: 1.5rem 1rem;
}

.identity-pillar__word {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.identity-pillar__desc {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.6;
}

.about-page-purpose {
  padding: 6rem 0;
}

.about-page-purpose__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-page-purpose__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.about-page-purpose__content p {
  color: var(--gray);
  font-size: 0.975rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-page-purpose__image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-page-purpose__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-page-traits {
  padding: 6rem 0;
  background: var(--black-soft);
}

.about-page-traits__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.about-page-traits__header .section-desc {
  margin: 1rem auto 0;
}

.about-page-traits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.trait-card {
  padding: 2rem 1.75rem;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
}

.trait-card:hover {
  border-color: rgba(201, 169, 98, 0.35);
  transform: translateY(-4px);
}

.trait-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 98, 0.08);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 10px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.trait-card__icon svg {
  width: 22px;
  height: 22px;
}

.trait-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
  color: var(--white);
}

.trait-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.75;
}

.about-page-denmark {
  padding: 6rem 0;
}

.about-page-denmark__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-page-denmark__image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-page-denmark__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-page-denmark__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.about-page-denmark__content p {
  color: var(--gray);
  font-size: 0.975rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-page-denmark__list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.about-page-denmark__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--gray);
}

.about-page-denmark__list svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.about-page-denmark__list a {
  color: var(--gold);
  transition: color var(--transition);
}

.about-page-denmark__list a:hover {
  color: var(--gold-light);
}

.about-page-studio {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-page-studio__bg {
  position: absolute;
  inset: 0;
}

.about-page-studio__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page-studio__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 8, 8, 0.92) 0%, rgba(8, 8, 8, 0.65) 100%);
}

.about-page-studio__content {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
  max-width: 600px;
}

.about-page-studio__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.about-page-studio__content p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
}

.about-page-approach {
  padding: 6rem 0;
  background: var(--black-soft);
}

.about-page-approach__header {
  text-align: center;
  margin-bottom: 3rem;
}

.about-page-approach__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.approach-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.approach-item:hover {
  border-color: rgba(201, 169, 98, 0.3);
}

.approach-item__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 98, 0.08);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 8px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
}

.approach-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.approach-item p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
}

.about-page-closing {
  padding: 5rem 0 6rem;
}

.about-page-closing__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.about-page-closing__text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--white);
  margin-bottom: 2rem;
}

.about-page-closing__text em {
  font-style: italic;
  color: var(--gold);
}

/* ---- Services page ---- */
.services-page {
  padding-top: var(--header-h);
}

.services-page-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.services-page-hero__bg {
  position: absolute;
  inset: 0;
}

.services-page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.5) 0%, rgba(8, 8, 8, 0.88) 70%, rgba(8, 8, 8, 0.96) 100%),
    radial-gradient(ellipse at 50% 30%, rgba(201, 169, 98, 0.08) 0%, transparent 60%);
}

.services-page-hero__content {
  position: relative;
  z-index: 2;
  padding: 5rem 0 4rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.services-page-hero .section-label {
  justify-content: center;
}

.services-page-hero .section-label::before {
  display: none;
}

.services-page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

.services-page-hero__desc {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.8;
}

.services-page-intro {
  padding: 6rem 0;
  background: var(--black-soft);
  border-bottom: 1px solid var(--border);
}

.services-page-intro__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}

.services-page-intro__text p {
  color: var(--gray);
  font-size: 0.975rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.services-page-intro__text p:last-child {
  margin-bottom: 0;
}

.services-page-intro__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.services-page-intro__stat {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.services-page-intro__stat:hover {
  border-color: rgba(201, 169, 98, 0.3);
}

.services-page-intro__stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  min-width: 3rem;
}

.services-page-intro__stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.4;
}

.services-page-grid {
  padding: 6rem 0;
}

.services-page-grid__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services-page-grid__header .section-desc {
  margin: 1rem auto 0;
}

.services-page-grid__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  border-color: rgba(201, 169, 98, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.service-card__image {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.75rem;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.service-card__desc {
  color: var(--gray);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.service-card__btn {
  align-self: flex-start;
  padding: 0.65rem 1.25rem;
  font-size: 0.75rem;
}

.service-card__btn svg {
  width: 14px;
  height: 14px;
}

.services-page-closing {
  padding: 0 0 6rem;
}

.services-page-closing__box {
  text-align: center;
  padding: 4rem;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.services-page-closing__box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 169, 98, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.services-page-closing__box > * {
  position: relative;
  z-index: 1;
}

.services-page-closing__box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.services-page-closing__box p {
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

/* ---- Service modal ---- */
.service-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.service-modal--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.service-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.service-modal__dialog {
  position: relative;
  width: min(680px, 100%);
  max-height: min(90vh, 820px);
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(18, 18, 18, 0.99) 0%, rgba(10, 10, 10, 0.99) 100%);
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: 16px;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.6),
    0 0 48px rgba(201, 169, 98, 0.08);
  transform: scale(0.92) translateY(16px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  min-height: 0;
}

.service-modal--visible .service-modal__dialog {
  transform: scale(1) translateY(0);
}

.service-modal__dialog::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 2;
}

.service-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.85);
  color: var(--gold);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.service-modal__close:hover {
  background: rgba(201, 169, 98, 0.12);
  border-color: var(--gold);
  color: var(--gold-light);
}

.service-modal__close svg {
  width: 18px;
  height: 18px;
}

.service-modal__image {
  flex-shrink: 0;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.service-modal__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-modal__content {
  flex: 1 1 auto;
  min-height: 0;
  padding: 2rem 2rem 2.25rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.service-modal__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.service-modal__text {
  color: var(--gray);
  font-size: 0.925rem;
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.service-modal__text p {
  margin-bottom: 0.85rem;
}

.service-modal__text p:last-child {
  margin-bottom: 0;
}

.service-modal__text ul {
  margin: 0.75rem 0 0.85rem;
  padding-left: 1.25rem;
}

.service-modal__text li {
  margin-bottom: 0.4rem;
}

.service-modal__cta {
  justify-content: center;
}

/* ---- Calculator page ---- */
.calculator-page {
  padding-top: calc(var(--header-h) + 1rem);
}

.calculator-block {
  padding: 3rem 0 6rem;
}

.calculator-block__shell {
  padding: 3rem;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.calculator-block__shell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.calculator-block__header {
  text-align: center;
  margin-bottom: 3rem;
}

.calculator-block__header .section-label {
  justify-content: center;
}

.calculator-block__header .section-label::before {
  display: none;
}

.calculator-block__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.calculator-block__desc {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}

.calculator-block__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.calculator-block__inputs {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.calc-field__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.calc-field label,
.calc-services__legend {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
}

.calc-field__value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
}

.calc-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(201, 169, 98, 0.15) 0%, rgba(201, 169, 98, 0.35) 100%);
  outline: none;
  cursor: pointer;
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-dark) 100%);
  border: 2px solid var(--black);
  box-shadow: 0 2px 12px var(--gold-glow);
  cursor: pointer;
  transition: transform var(--transition);
}

.calc-range::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.calc-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-dark) 100%);
  border: 2px solid var(--black);
  box-shadow: 0 2px 12px var(--gold-glow);
  cursor: pointer;
}

.calc-range__labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--gray-dark);
}

.calc-select {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.925rem;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c9a962' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.calc-select:focus {
  outline: none;
  border-color: rgba(201, 169, 98, 0.5);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.08);
}

.calc-services {
  border: none;
  padding: 0;
  margin: 0;
}

.calc-services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.calc-service {
  cursor: pointer;
}

.calc-service input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.calc-service__box {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.9rem 1rem;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color var(--transition), background var(--transition);
}

.calc-service__name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.calc-service__weight {
  font-size: 0.7rem;
  color: var(--gray-dark);
}

.calc-service input:checked + .calc-service__box {
  border-color: rgba(201, 169, 98, 0.5);
  background: rgba(201, 169, 98, 0.06);
}

.calc-service input:focus-visible + .calc-service__box {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.calc-service:hover .calc-service__box {
  border-color: rgba(201, 169, 98, 0.3);
}

.calc-reset {
  align-self: flex-start;
  padding: 0.65rem 1.25rem;
  font-size: 0.75rem;
}

.calculator-block__results {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding: 2rem;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.calc-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.calc-summary__item {
  padding: 1.25rem;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
}

.calc-summary__item--highlight {
  border-color: rgba(201, 169, 98, 0.35);
  background: rgba(201, 169, 98, 0.06);
}

.calc-summary__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.calc-summary__amount {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.calc-summary__item--highlight .calc-summary__amount {
  color: var(--gold);
}

.calc-breakdown__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.calc-breakdown__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.calc-breakdown__row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.calc-breakdown__row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

.calc-breakdown__row-name {
  font-weight: 500;
  color: var(--white);
}

.calc-breakdown__row-amount {
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

.calc-breakdown__row-meta {
  font-size: 0.72rem;
  color: var(--gray-dark);
}

.calc-breakdown__bar {
  height: 6px;
  background: rgba(201, 169, 98, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.calc-breakdown__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 3px;
  transition: width 0.4s ease;
}

.calc-breakdown__empty {
  padding: 1.5rem;
  text-align: center;
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
  background: var(--black-card);
  border: 1px dashed var(--border);
  border-radius: 8px;
}

.calc-breakdown__note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

.calc-contact {
  justify-content: center;
  width: 100%;
}

/* ---- Calculator order modals ---- */
.calc-order-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.calc-order-modal--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.calc-order-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.calc-order-modal__dialog {
  position: relative;
  width: min(440px, 100%);
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(18, 18, 18, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: 16px;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.6),
    0 0 48px rgba(201, 169, 98, 0.08);
  transform: scale(0.92) translateY(16px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.calc-order-modal--visible .calc-order-modal__dialog {
  transform: scale(1) translateY(0);
}

.calc-order-modal__dialog::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.calc-order-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.85);
  color: var(--gold);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.calc-order-modal__close:hover {
  background: rgba(201, 169, 98, 0.12);
  border-color: var(--gold);
}

.calc-order-modal__close svg {
  width: 16px;
  height: 16px;
}

.calc-order-modal__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 98, 0.25);
  background: rgba(201, 169, 98, 0.1);
  color: var(--gold);
}

.calc-order-modal__icon svg {
  width: 28px;
  height: 28px;
}

.calc-order-modal__icon--success {
  background: rgba(201, 169, 98, 0.1);
  color: var(--gold);
}

.calc-order-modal__title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.calc-order-modal__text {
  color: var(--gray);
  font-size: 0.925rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.calc-order-modal__form {
  text-align: left;
}

.calc-order-modal__form .form-group {
  margin-bottom: 1.25rem;
}

.calc-order-modal__submit {
  width: 100%;
  justify-content: center;
}

.calc-order-modal--success .calc-order-modal__submit {
  margin-top: 0.25rem;
}

/* ---- Cookie banner ---- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 950;
  padding: 1rem;
  transform: translateY(110%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease, visibility 0.5s ease;
}

.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-banner__inner {
  position: relative;
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, rgba(18, 18, 18, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
  border: 1px solid rgba(201, 169, 98, 0.22);
  border-radius: 16px;
  box-shadow:
    0 -8px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 48px rgba(201, 169, 98, 0.06);
  overflow: hidden;
}

.cookie-banner__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cookie-banner__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 98, 0.08);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 12px;
  color: var(--gold);
}

.cookie-banner__icon svg {
  width: 26px;
  height: 26px;
}

.cookie-banner__content {
  min-width: 0;
}

.cookie-banner__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.cookie-banner__text {
  color: var(--gray);
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0;
}

.cookie-banner__text a {
  color: var(--gold);
  transition: color var(--transition);
}

.cookie-banner__text a:hover {
  color: var(--gold-light);
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner__decline,
.cookie-banner__accept {
  padding: 0.75rem 1.35rem;
  font-size: 0.78rem;
  white-space: nowrap;
}

.cookie-banner__decline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---- Scroll to top ---- */
.scroll-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 900;
  width: 52px;
  height: 52px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(14, 14, 14, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.9);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s ease,
    box-shadow var(--transition),
    background var(--transition);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-top:hover {
  background: rgba(201, 169, 98, 0.12);
  box-shadow:
    0 6px 28px var(--gold-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.scroll-top:active {
  transform: translateY(0) scale(0.95);
}

.scroll-top__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.scroll-top__track,
.scroll-top__progress {
  fill: none;
  stroke-width: 2;
}

.scroll-top__track {
  stroke: rgba(201, 169, 98, 0.15);
}

.scroll-top__progress {
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-dasharray: 144.5;
  stroke-dashoffset: 144.5;
  transition: stroke-dashoffset 0.15s linear;
}

.scroll-top__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--gold);
  transition: color var(--transition), transform var(--transition);
}

.scroll-top__icon svg {
  width: 18px;
  height: 18px;
}

.scroll-top:hover .scroll-top__icon {
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ---- Responsive ---- */
@media (max-width: 1140px) {
  .nav__num {
    display: none;
  }

  .nav__primary .nav__link {
    padding: 0.55rem 0.7rem;
    font-size: 0.68rem;
  }
}

@media (max-width: 1024px) {
  .philosophy__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .about__grid,
  .landscape__grid,
  .principles__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .principles__inner {
    direction: ltr;
  }

  .principles__image {
    order: -1;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 960px) {
  :root {
    --header-h: 78px;
  }

  .header {
    padding: 0.75rem 0;
    overflow: visible;
  }

  .header__shell {
    width: calc(100% - 1.25rem);
    border-radius: 18px;
    padding: 0.6rem 0.75rem 0.6rem 1rem;
    overflow: visible;
  }

  .header__inner {
    gap: 0.75rem;
    min-width: 0;
    position: relative;
    z-index: 1002;
  }

  .logo {
    min-width: 0;
    flex-shrink: 1;
    position: relative;
    z-index: 1002;
  }

  .logo__img {
    height: 34px;
    max-width: 130px;
  }

  .reveal-left,
  .reveal-right {
    transform: translateY(40px);
  }

  .reveal-left.visible,
  .reveal-right.visible {
    transform: translateY(0);
  }

  .about__frame-accent {
    top: -8px;
    left: -8px;
    width: 56px;
    height: 56px;
  }

  .about__frame-accent--br {
    bottom: -8px;
    right: -8px;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    height: 100dvh;
    z-index: 1001;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: calc(var(--header-h) + 1rem) 1.5rem 2rem;
    background: rgba(6, 6, 6, 0.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__primary {
    flex-direction: column;
    background: none;
    border: none;
    gap: 0.35rem;
    width: min(320px, 100%);
    padding: 0;
  }

  .nav__secondary {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-left: 0;
    margin-top: 1.75rem;
    padding-left: 0;
    padding-top: 1.75rem;
    border-left: none;
    border-top: 1px solid rgba(201, 169, 98, 0.15);
    width: min(320px, 100%);
  }

  .nav__link {
    justify-content: center;
    padding: 0.9rem 1.5rem;
    font-size: 0.82rem;
    width: 100%;
  }

  .nav__num {
    display: inline;
  }

  .nav__link.active {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-dark) 100%);
  }

  .nav__link--faqs {
    justify-content: center;
  }

  .nav__cta {
    justify-content: center;
    width: 100%;
    padding: 0.9rem 1.5rem;
  }

  .burger {
    display: flex;
  }
}

@media (max-width: 768px) {
  .about__highlights {
    grid-template-columns: 1fr;
  }

  .hero__scroll {
    display: none;
  }

  .cta__box {
    padding: 2.5rem 1.5rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__brand,
  .footer__contact,
  .footer__schedule {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer__about {
    max-width: 100%;
  }

  .footer__contact-item {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .footer__contact-item svg {
    margin-top: 0;
  }

  .footer__hours {
    width: 100%;
    max-width: 280px;
  }

  .footer__hours-row {
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
  }

  .cookie-banner__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.5rem 1.25rem;
    gap: 1.25rem;
  }

  .cookie-banner__icon {
    margin: 0 auto;
  }

  .cookie-banner__actions {
    flex-direction: column-reverse;
    width: 100%;
  }

  .cookie-banner__decline,
  .cookie-banner__accept {
    width: 100%;
    justify-content: center;
  }

  .legal-hero {
    padding: 2.5rem 0 2rem;
  }

  .legal-content {
    padding: 3rem 0 5rem;
  }

  .faq-content {
    padding: 3rem 0 5rem;
  }

  .faq-question {
    padding: 1.1rem 1.25rem;
    font-size: 0.925rem;
  }

  .faq-answer__inner {
    padding: 0 1.25rem 1.1rem;
  }

  .faq-cta {
    padding: 2rem 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-form-wrap {
    padding: 2rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form__submit {
    width: 100%;
    justify-content: center;
  }

  .contact-map__frame iframe {
    height: 320px;
  }

  .insights-pillars__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .insights-feature__grid,
  .insights-feature__grid--reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    direction: ltr;
  }

  .insights-feature__image {
    order: -1;
  }

  .insights-signals__grid {
    grid-template-columns: 1fr 1fr;
  }

  .insights-spotlight {
    min-height: 400px;
  }

  .insights-quote__box {
    padding: 2rem 1.5rem;
  }

  .philosophy-manifesto__grid {
    grid-template-columns: 1fr 1fr;
  }

  .philosophy-beliefs__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .philosophy-split__grid,
  .philosophy-split__grid--reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    direction: ltr;
  }

  .philosophy-split__image {
    order: -1;
  }

  .philosophy-tenets__grid {
    grid-template-columns: 1fr 1fr;
  }

  .philosophy-vision {
    min-height: 380px;
  }

  .about-page-identity__grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-page-purpose__grid,
  .about-page-denmark__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-page-purpose__image,
  .about-page-denmark__image {
    order: -1;
  }

  .about-page-traits__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .about-page-approach__grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-page-studio {
    min-height: 380px;
  }

  .services-page-intro__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .services-page-grid__cards {
    grid-template-columns: 1fr 1fr;
  }

  .services-page-closing__box {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .philosophy-manifesto__grid,
  .philosophy-tenets__grid {
    grid-template-columns: 1fr;
  }

  .about-page-identity__grid,
  .about-page-approach__grid {
    grid-template-columns: 1fr;
  }

  .services-page-grid__cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .service-modal__content {
    padding: 1.5rem 1.25rem 1.75rem;
  }

  .service-modal__title {
    font-size: 1.45rem;
  }

  .calculator-block__shell {
    padding: 2rem 1.5rem;
  }

  .calculator-block__body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .calculator-block__results {
    position: static;
  }

  .calc-services__grid {
    grid-template-columns: 1fr;
  }

  .calc-summary {
    grid-template-columns: 1fr;
  }

  .insights-signals__grid {
    grid-template-columns: 1fr;
  }

  .scroll-top {
    right: 1rem;
    bottom: 1rem;
    width: 46px;
    height: 46px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}
