:root {
  --header-h: clamp(64px, 9vh, 88px);
  --pad-x: clamp(20px, 5vw, 64px);
  --ink: #f6f5f2;
  --ink-soft: rgba(246, 245, 242, 0.82);
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.22);
  --accent: #ff9152;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

h1,
h2 {
  margin: 0;
  line-height: 1.15;
  font-weight: 500;
}

p {
  margin: 0;
}

/* ---------- Background video ---------- */
.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
      130% 100% at 50% 38%,
      rgba(0, 0, 0, 0.38) 0%,
      rgba(0, 0, 0, 0.62) 55%,
      rgba(0, 0, 0, 0.82) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 30%, rgba(0, 0, 0, 0.55) 100%);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 3vw, 32px);
  padding: 0 var(--pad-x);
  background: rgba(10, 10, 12, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
  flex: 0 0 auto;
  text-decoration: none;
  font-weight: 500;
  color: var(--ink);
  font-size: clamp(22px, 2.8vw, 32px);
  white-space: nowrap;
}

.logo-mark {
  height: 0.85em;
  width: auto;
  margin-left: 0.4em;
  vertical-align: middle;
  display: inline-block;
}

.site-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: clamp(8px, 1.6vw, 20px);
  margin: 0;
  padding: 0;
}

.nav-list a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--ink-soft);
  padding: 0.45em 1em;
  transition: color 0.2s ease;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 1em;
  right: 1em;
  bottom: 0.4em;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--ink);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  transform: scaleX(1);
}

.clock {
  flex: 0 0 auto;
  font-size: clamp(16px, 1.7vw, 20px);
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- Paged sections with fade transition ---------- */
.pages {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

.page-slide {
  position: absolute;
  inset: 0;
  padding-top: var(--header-h);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  transition: opacity 0.6s ease;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.page-slide::-webkit-scrollbar {
  display: none;
}

.page-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#about.page-slide,
#create.page-slide,
#portfolio.page-slide,
#process.page-slide,
#pricing.page-slide {
  background: #000;
}

.flank-row {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 4vw, 48px);
  padding: clamp(28px, 5vh, 56px) var(--pad-x);
  scroll-margin-top: var(--header-h);
}

.panel {
  flex: 0 1 clamp(240px, 32vw, 480px);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
}

.panel-right {
  margin-left: auto;
  text-align: right;
}

.panel h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 500;
}

.panel h1 {
  font-size: clamp(30px, 4.2vw, 58px);
  font-weight: 500;
  line-height: 1.12;
}

.panel-sub {
  margin-top: clamp(10px, 1.6vh, 18px);
  font-size: clamp(13px, 1.3vw, 17px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 34ch;
}

.hero-cta {
  margin-top: clamp(14px, 2.2vh, 26px);
  background: var(--ink);
  color: #111;
  border: 2px solid var(--ink);
  border-radius: 6px;
  font-family: inherit;
  font-size: clamp(14px, 1.4vw, 17px);
  padding: 12px clamp(20px, 2.4vw, 32px);
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  background: transparent;
  color: var(--ink);
}

.bottom-row {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(28px, 4.5vh, 48px) var(--pad-x);
  scroll-margin-top: var(--header-h);
}

.slogan {
  font-size: clamp(24px, 3.4vw, 42px);
  font-weight: 400;
  color: var(--ink-soft);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
}

.slogan strong {
  font-weight: 700;
  color: var(--ink);
}

.contact-block {
  margin-left: auto;
  text-align: left;
  scroll-margin-top: var(--header-h);
}

.contact-lead {
  font-size: clamp(14px, 1.5vw, 17px);
  color: var(--ink-soft);
  margin-bottom: clamp(14px, 2vh, 20px);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.contact-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--ink);
  transition: opacity 0.2s ease;
}

.contact-row:hover {
  opacity: 0.75;
}

.icon-circle {
  flex: 0 0 auto;
  width: clamp(40px, 4.4vw, 48px);
  height: clamp(40px, 4.4vw, 48px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.icon-circle svg {
  width: 48%;
  height: 48%;
  fill: var(--ink);
}

/* ---------- About page ---------- */
.about-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(10px, 1.8vh, 32px) var(--pad-x);
}

.about-img {
  display: block;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.55));
}

.cards-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(52px, 7vh, 72px);
  width: 100%;
}

/* Each row anchors its image to its own card, so the image is always
   sized and positioned relative to the card it belongs to. */
.card-row {
  position: relative;
}

.row-who {
  --room-w: clamp(170px, 23vw, 320px);
}

.about-img-room {
  position: absolute;
  left: var(--pad-x);
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: auto;
  max-height: min(190%, 320px);
  max-width: var(--room-w);
  z-index: 3;
}

.about-img-girl {
  position: absolute;
  right: var(--pad-x);
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: auto;
  max-height: min(165%, 380px);
  max-width: var(--girl-w);
  z-index: 3;
}

.glass-card {
  max-width: 1200px;
  z-index: 1;
  background: rgba(150, 150, 150, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 14px;
  padding: clamp(14px, 2vw, 26px);
}

.card-who {
  padding-left: calc(var(--pad-x) + var(--room-w) + 24px);
}

.row-turn {
  --girl-w: clamp(150px, 18vw, 260px);
}

.card-turn {
  padding-right: calc(var(--pad-x) + var(--girl-w) + 24px);
  margin-left: auto;
  max-width: 900px;
}

.glass-card h2 {
  font-size: clamp(16px, 2vw, 24px);
  text-align: center;
  margin-bottom: 0.5em;
}

.glass-card p {
  font-size: clamp(11.5px, 1.15vw, 14px);
  line-height: 1.55;
  color: var(--ink-soft);
}

.accent {
  color: var(--accent);
  font-weight: 600;
}

.marquee {
  flex: 0 0 auto;
  overflow: hidden;
  background: #000;
  border-top: 1px solid #333;
  padding: clamp(10px, 1.6vh, 16px) 0;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}

.marquee-set {
  flex: 0 0 auto;
  font-size: clamp(13px, 1.4vw, 16px);
  color: #cecece;
  letter-spacing: 0.02em;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Create page ---------- */
.create-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(12px, 2vh, 24px) var(--pad-x);
}

.create-intro {
  text-align: center;
  margin-bottom: clamp(14px, 2.4vh, 28px);
}

.create-intro h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 500;
}

.create-intro p {
  margin-top: 6px;
  font-size: clamp(12px, 1.2vw, 15px);
  color: var(--ink-soft);
}

.req {
  color: var(--accent);
  margin-left: 2px;
}

.opt {
  font-size: 0.62em;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  font-weight: 400;
}

.form-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2.2vh, 24px) clamp(20px, 3vw, 40px);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1vh, 10px);
}

.form-field.span-2 {
  grid-column: span 2;
}

.form-field label {
  font-size: clamp(17px, 2vw, 24px);
  color: var(--ink);
  font-weight: 500;
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.05);
  padding: 14px 16px;
  font-family: inherit;
  font-size: clamp(12.5px, 1.2vw, 14.5px);
  line-height: 1.5;
}

.form-input::placeholder {
  color: rgba(246, 245, 242, 0.4);
}

.form-textarea {
  min-height: clamp(70px, 9vh, 110px);
  resize: none;
}

.form-input:focus,
.form-select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Select fields */
.select-box {
  min-height: clamp(70px, 9vh, 110px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.form-select {
  width: 100%;
  max-width: 220px;
  background-color: #141414;
  color: #f2f1ee;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  padding: 10px 34px 10px 14px;
  font-family: inherit;
  font-size: clamp(12.5px, 1.2vw, 14.5px);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 10l5-5 5 5' stroke='%23f2f1ee' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7 14l5 5 5-5' stroke='%23f2f1ee' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
}

.field-hint {
  text-align: center;
  font-size: clamp(11px, 1vw, 13px);
  color: var(--ink-soft);
}

.submit-field {
  grid-column: 2;
}

.submit-btn {
  width: 100%;
  background: transparent;
  border: 2px solid var(--ink);
  color: var(--ink);
  font-family: inherit;
  font-size: clamp(16px, 1.8vw, 20px);
  padding: 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.submit-btn:hover,
.submit-btn:focus-visible {
  background: var(--ink);
  color: #111;
}

/* ---------- Process page ---------- */
.process-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(28px, 4.5vh, 48px);
  padding: clamp(24px, 4vh, 48px) var(--pad-x);
}

.process-intro h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  margin-bottom: 0.3em;
}

.process-intro p {
  color: var(--ink-soft);
  font-size: clamp(14px, 1.6vw, 17px);
}

.process-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
}

.process-col {
  --rail: clamp(20px, 2.4vw, 32px);
  position: relative;
  padding-left: calc(var(--rail) + 20px);
}

.process-col::before {
  content: "";
  position: absolute;
  left: var(--rail);
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.process-step {
  position: relative;
  padding-bottom: clamp(26px, 4vh, 42px);
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-step::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 0.3em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
}

.step-label {
  display: block;
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.4em;
}

.process-step h3 {
  font-size: clamp(17px, 2vw, 23px);
  font-weight: 500;
  margin-bottom: 0.3em;
}

.process-step p {
  font-size: clamp(12.5px, 1.3vw, 15px);
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ---------- Pricing page ---------- */
.pricing-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vh, 48px);
  padding: clamp(16px, 3vh, 40px) var(--pad-x);
  text-align: center;
}

.pricing-intro {
  position: relative;
}

.pricing-intro::before {
  content: "";
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(320px, 40vw, 600px);
  height: clamp(160px, 20vw, 300px);
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.20), transparent);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.pricing-intro h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 500;
  margin-bottom: 0.3em;
}

.pricing-intro p {
  position: relative;
  z-index: 1;
  color: var(--ink-soft);
  font-size: clamp(14px, 1.6vw, 17px);
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: clamp(20px, 3vw, 32px);
  width: 100%;
  max-width: 1180px;
}

.price-card {
  flex: 1 1 280px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: clamp(24px, 3.2vw, 36px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 14px;
  position: relative;
}

.price-card.popular {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.06);
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #111;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.page-range {
  font-size: clamp(12px, 1.2vw, 14px);
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0;
}

.price .amount {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
}

.price .unit {
  font-size: clamp(13px, 1.3vw, 15px);
  color: var(--ink-soft);
}

.price-desc {
  color: var(--ink-soft);
  font-size: clamp(13px, 1.3vw, 15px);
  margin: 0;
  min-height: 2.4em;
}

.price-cta {
  width: 100%;
  margin-top: auto;
  background: transparent;
  border: 2px solid var(--ink);
  color: var(--ink);
  font-family: inherit;
  font-size: clamp(14px, 1.5vw, 16px);
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.price-cta:hover {
  background: var(--ink);
  color: #111;
}

.price-cta.filled {
  background: #fff;
  color: #111;
  border-color: #fff;
}

.price-cta.filled:hover {
  background: transparent;
  color: var(--ink);
}

.pricing-note {
  color: var(--ink-soft);
  font-size: clamp(13px, 1.4vw, 16px);
}

.pricing-note a {
  color: var(--accent);
  text-decoration: underline;
}

.pricing-payment {
  color: var(--ink-soft);
  font-size: clamp(12px, 1.2vw, 14px);
}

.pricing-payment strong {
  color: var(--ink);
  font-weight: 600;
}

/* ---------- Breakpoints ---------- */
/* ---------- Portfolio page ---------- */
.portfolio-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(16px, 3vh, 36px) var(--pad-x);
}

.portfolio-intro {
  text-align: center;
  margin-bottom: clamp(18px, 3vh, 34px);
}

.portfolio-intro h1 {
  font-size: clamp(30px, 3.6vw, 52px);
  font-weight: 500;
}

.portfolio-intro p {
  margin-top: 8px;
  font-size: clamp(12px, 1.2vw, 15px);
  color: var(--ink-soft);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 32px);
}

.portfolio-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.portfolio-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-thumb::after {
  content: "View project \2197";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 12, 0.55);
  color: var(--ink);
  font-size: clamp(12px, 1.2vw, 15px);
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.portfolio-item:hover .portfolio-thumb,
.portfolio-item:focus-visible .portfolio-thumb {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.08);
}

.portfolio-item:hover .portfolio-thumb::after,
.portfolio-item:focus-visible .portfolio-thumb::after {
  opacity: 1;
}

.portfolio-thumb iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 400%;
  height: 400%;
  border: 0;
  transform: scale(0.25);
  transform-origin: top left;
  pointer-events: none;
}

.portfolio-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.portfolio-name {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 500;
  color: var(--ink);
}

.portfolio-desc {
  font-size: clamp(11px, 1.05vw, 13px);
  color: var(--ink-soft);
}

.portfolio-note {
  margin-top: clamp(18px, 3vh, 34px);
  text-align: center;
  font-size: clamp(12px, 1.2vw, 15px);
  color: var(--ink-soft);
}

.link-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--accent);
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 900px) {
  .clock {
    display: none;
  }
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .form-field.span-2 {
    grid-column: 1;
  }

  .submit-field {
    grid-column: 1;
  }

  .process-columns {
    grid-template-columns: 1fr;
    gap: clamp(28px, 5vh, 40px);
  }

  .pricing-cards {
    flex-direction: column;
    align-items: stretch;
  }

  .price-card {
    max-width: 100%;
  }

  .card-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(16px, 3vh, 28px);
  }

  .about-img-room,
  .about-img-girl {
    position: static;
    transform: none;
    max-width: clamp(140px, 50vw, 220px);
    max-height: clamp(120px, 22vh, 200px);
    margin: 0;
    order: 1;
  }

  .glass-card {
    max-width: 100%;
  }

  .card-who,
  .card-turn {
    order: 2;
    padding-left: clamp(14px, 3vw, 26px);
    padding-right: clamp(14px, 3vw, 26px);
    margin-left: 0;
    max-width: 100%;
  }

  .flank-row {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(24px, 5vh, 40px);
  }

  .panel,
  .panel-right {
    flex: 1 1 auto;
    max-width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(28px, 5vh, 40px);
  }

  .slogan {
    text-align: left;
  }

  .contact-block {
    margin-left: 0;
    text-align: left;
  }

  .contact-list {
    align-items: flex-start;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    flex: 0 0 auto;
  }

  .nav-list {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: rgba(10, 10, 12, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-list.is-open {
    max-height: 300px;
  }

  .nav-list li {
    width: 100%;
    text-align: center;
  }

  .nav-list a {
    display: block;
    border-radius: 0;
    padding: 16px;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .page-slide {
    transition: none;
  }

  .marquee-track {
    animation: none;
  }
}
