/* ============================================
   BENEDICT NEUNER – Landing Page v3
   Design: "Resonanz" — Warm Editorial + Sound
   ============================================ */

/* --- Design Tokens --- */
:root {
  --cream: #F5EFEA;
  --sand: #EDE6DB;
  --card: #FAF7F3;
  --espresso: #1A1310;
  --warm-gray: #7A6E64;
  --warm-gray-light: #A99E94;
  --terracotta: #C84B1C;
  --terracotta-dark: #A83A10;
  --terracotta-glow: rgba(200, 75, 28, 0.12);
  --terracotta-pale: #FCEEE6;
  --deep-navy: #0F1923;
  --deep-navy-light: #1A2A3A;

  --font-display: 'Sora', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 7rem;

  --max-width: 1280px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.7;
  color: var(--espresso);
  background: var(--cream);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* --- Utility Classes --- */
.mono {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-label {
  display: inline-block;
  color: var(--terracotta);
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-lg);
}

/* --- Grain Overlay --- */
.grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.9rem 2rem;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-quad);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--terracotta);
  color: var(--cream);
  border-color: var(--terracotta);
}

.btn--primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 75, 28, 0.3);
}

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

.btn--outline:hover {
  background: var(--espresso);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn--large {
  padding: 1.1rem 2.6rem;
  font-size: 1rem;
}

/* ======================
   NAVIGATION
   ====================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all 0.4s var(--ease-out-quad);
}

.nav.scrolled {
  background: rgba(245, 239, 234, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  box-shadow: 0 1px 0 rgba(26, 19, 16, 0.06);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
}

.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--warm-gray);
  transition: color 0.25s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.3s var(--ease-out-expo);
}

.nav__links a:hover {
  color: var(--espresso);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--terracotta);
  padding: 0.6rem 1.4rem;
  border: 1.5px solid var(--terracotta);
  border-radius: 60px;
  transition: all 0.3s var(--ease-out-quad);
}

.nav__cta:hover {
  background: var(--terracotta);
  color: var(--cream);
}

.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.nav__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--espresso);
  position: absolute;
  left: 0;
  transition: all 0.3s var(--ease-out-quad);
}

.nav__burger span:nth-child(1) { top: 0; }
.nav__burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav__burger span:nth-child(3) { bottom: 0; }

.nav__burger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.nav__burger.active span:nth-child(2) {
  opacity: 0;
}

.nav__burger.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-out-expo);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-menu__link {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out-expo);
}

.mobile-menu.open .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open .mobile-menu__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu__link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu__link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-menu__link:nth-child(4) { transition-delay: 0.25s; }

.mobile-menu__cta {
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out-expo);
}

.mobile-menu.open .mobile-menu__cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* ======================
   HERO
   ====================== */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem var(--space-md) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.hero__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(12rem, 22vw, 26rem);
  font-weight: 800;
  color: var(--espresso);
  opacity: 0.025;
  line-height: 0.85;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: var(--space-md);
  color: var(--warm-gray);
}

.hero__label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  animation: pulse-dot 2s ease infinite;
}

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

.hero__headline {
  margin-bottom: var(--space-md);
}

.hero__line {
  display: block;
  font-size: clamp(3.2rem, 7.5vw, 6.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
}

.hero__line--1 {
  color: var(--terracotta);
}

.hero__line--2 {
  color: var(--espresso);
}

.hero__line--3 {
  color: var(--espresso);
  opacity: 0.4;
}

.hero__sub {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--espresso);
  max-width: 480px;
  margin-bottom: var(--space-sm);
}

.hero__desc {
  font-size: 0.95rem;
  color: var(--warm-gray);
  max-width: 460px;
  margin-bottom: var(--space-md);
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Hero Visual Side */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__portrait-wrap {
  position: relative;
  width: 380px;
  height: 380px;
}

.hero__rings {
  position: absolute;
  inset: -40px;
  pointer-events: none;
}

.hero__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid var(--terracotta);
  opacity: 0;
  animation: ring-pulse 4s ease-out infinite;
}

.hero__ring--1 {
  width: 100%;
  height: 100%;
  animation-delay: 0s;
}

.hero__ring--2 {
  width: 130%;
  height: 130%;
  animation-delay: 1s;
}

.hero__ring--3 {
  width: 160%;
  height: 160%;
  animation-delay: 2s;
}

.hero__ring--4 {
  width: 190%;
  height: 190%;
  animation-delay: 3s;
}

@keyframes ring-pulse {
  0% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(0.85);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.15);
  }
}

.hero__portrait {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 80px rgba(26, 19, 16, 0.15);
}

.hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Hero Waveform */
.hero__waveform {
  position: absolute;
  bottom: -30px;
  right: -60px;
  width: 400px;
  height: 60px;
  z-index: 1;
}

.hero__wave-path {
  fill: none;
  stroke: var(--terracotta);
  stroke-width: 2;
  opacity: 0.25;
  stroke-dasharray: 8 6;
  animation: wave-flow 3s linear infinite;
}

.hero__wave-path--2 {
  stroke-width: 1;
  opacity: 0.12;
  animation-duration: 5s;
  animation-direction: reverse;
}

@keyframes wave-flow {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -56; }
}

/* Hero Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--warm-gray-light);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--warm-gray-light));
  animation: scroll-line 2s ease infinite;
}

@keyframes scroll-line {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ======================
   DIVIDER
   ====================== */
.divider {
  padding: 0 var(--space-md);
  overflow: hidden;
}

.divider__wave {
  width: 100%;
  height: 30px;
  display: block;
}

.divider__wave path {
  fill: none;
  stroke: var(--terracotta);
  stroke-width: 1.5;
  opacity: 0.15;
  stroke-dasharray: 6 4;
  animation: wave-flow 4s linear infinite;
}

/* ======================
   SERVICES
   ====================== */
.services {
  padding: var(--space-xl) var(--space-md) var(--space-2xl);
  max-width: var(--max-width);
  margin: 0 auto;
}

.services__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

/* Service Item */
.service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  margin-bottom: var(--space-2xl);
  position: relative;
}

.service:last-child {
  margin-bottom: 0;
}

.service__num-wrap {
  position: absolute;
  top: -1.5rem;
  left: -1rem;
  z-index: 0;
  pointer-events: none;
}

.service__num {
  font-size: clamp(6rem, 10vw, 10rem);
  font-weight: 700;
  color: var(--espresso);
  opacity: 0.04;
  line-height: 1;
}

/* Service Image */
.service__image-wrap {
  position: relative;
  z-index: 1;
}

.service__image-shadow {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 100%;
  height: 100%;
  background: var(--terracotta);
  border-radius: var(--radius-md);
  opacity: 0.15;
  transition: all 0.4s var(--ease-out-quad);
}

.service:hover .service__image-shadow {
  top: 16px;
  left: 16px;
  opacity: 0.2;
}

.service__image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service__image-wrap--wide .service__image {
  aspect-ratio: 16/9;
}

.service__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.service:hover .service__image img {
  transform: scale(1.03);
}

/* Service Content */
.service__content {
  position: relative;
  z-index: 1;
}

.service__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.service__subtitle {
  color: var(--terracotta);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.service__text {
  color: var(--warm-gray);
  margin-bottom: var(--space-sm);
  max-width: 500px;
  font-size: 0.95rem;
}

.service__text:last-child {
  margin-bottom: 0;
}

/* Alternating layout */
.service--left {
  direction: ltr;
}

.service--left .service__num-wrap {
  left: auto;
  right: -1rem;
}

/* ======================
   TESTIMONIALS
   ====================== */
.testimonials {
  position: relative;
  padding: var(--space-xl) 0;
  overflow: hidden;
  background: var(--deep-navy);
}

.testimonials__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.testimonials__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  filter: blur(2px);
}

.testimonials__inner {
  position: relative;
  z-index: 1;
  padding: 0 var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto var(--space-lg);
}

.testimonials__track {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.testimonials__marquee {
  display: flex;
  gap: var(--space-md);
  animation: marquee 30s linear infinite;
  width: max-content;
  padding: var(--space-sm) 0;
}

.testimonials__marquee:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Testimonial Card */
.testimonial-card {
  background: rgba(245, 239, 234, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 239, 234, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 2.2rem;
  min-width: 380px;
  max-width: 420px;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-out-quad);
}

.testimonial-card:hover {
  background: rgba(245, 239, 234, 0.1);
  transform: translateY(-4px);
}

.testimonial-card__text {
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 400;
  opacity: 0.9;
}

.testimonial-card__footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.testimonial-card__name {
  color: var(--cream);
  font-weight: 600;
  font-size: 0.95rem;
  font-style: normal;
}

.testimonial-card__role {
  color: var(--terracotta);
  font-weight: 400;
  opacity: 0.8;
}

/* ======================
   ABOUT
   ====================== */
.about {
  padding: var(--space-2xl) var(--space-md);
  background: var(--sand);
}

.about__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about__images {
  position: relative;
  height: 560px;
}

.about__portrait {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 19, 16, 0.12);
  z-index: 2;
}

.about__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about__drummer {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 260px;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(26, 19, 16, 0.1);
  z-index: 3;
  transform: rotate(2deg);
}

.about__drummer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__abstract {
  position: absolute;
  top: 60px;
  right: 40px;
  width: 180px;
  height: 140px;
  border-radius: var(--radius-md);
  overflow: hidden;
  opacity: 0.25;
  z-index: 1;
  transform: rotate(-3deg);
}

.about__abstract img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__content {
  max-width: 500px;
}

.about__text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--warm-gray);
  margin-bottom: var(--space-md);
}

.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.about__tag {
  padding: 0.4rem 1rem;
  background: var(--cream);
  border-radius: 60px;
  color: var(--warm-gray);
  font-weight: 500;
  transition: all 0.25s var(--ease-out-quad);
}

.about__tag:hover {
  background: var(--terracotta-pale);
  color: var(--terracotta);
}

/* ======================
   CTA SECTION
   ====================== */
.cta-section {
  padding: var(--space-2xl) var(--space-md);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.cta-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: center;
}

.cta-section__megaphone {
  position: relative;
  max-width: 400px;
  justify-self: center;
}

.cta-section__megaphone img {
  border-radius: var(--radius-lg);
  transform: rotate(-5deg);
  transition: transform 0.5s var(--ease-out-expo);
  box-shadow: 0 20px 60px rgba(200, 75, 28, 0.15);
}

.cta-section__megaphone:hover img {
  transform: rotate(0deg) scale(1.02);
}

.cta-section__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-sm);
}

.cta-section__text {
  font-size: 1.05rem;
  color: var(--warm-gray);
  margin-bottom: var(--space-md);
  max-width: 480px;
}

.cta-section__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.cta-section__contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: var(--warm-gray);
}

.cta-section__contact a {
  transition: color 0.25s;
}

.cta-section__contact a:hover {
  color: var(--terracotta);
}

/* ======================
   FOOTER
   ====================== */
.footer {
  background: var(--espresso);
  color: var(--cream);
  padding: var(--space-lg) var(--space-md) var(--space-md);
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(245, 239, 234, 0.1);
}

.footer__logo {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.footer__tagline {
  font-size: 0.88rem;
  color: var(--warm-gray-light);
  margin-top: 0.3rem;
}

.footer__nav {
  display: flex;
  gap: 2rem;
}

.footer__nav a {
  font-size: 0.88rem;
  color: var(--warm-gray-light);
  transition: color 0.25s;
}

.footer__nav a:hover {
  color: var(--cream);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--warm-gray);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  color: var(--warm-gray);
  transition: color 0.25s;
}

.footer__legal a:hover {
  color: var(--cream);
}

/* ======================
   SCROLL ANIMATIONS
   ====================== */
.reveal,
.reveal-delay-1,
.reveal-delay-2,
.reveal-delay-3 {
  opacity: 0;
  transform: translateY(24px);
  animation: reveal-in 0.8s var(--ease-out-expo) forwards;
}

.reveal-delay-1 { animation-delay: 0.15s; }
.reveal-delay-2 { animation-delay: 0.3s; }
.reveal-delay-3 { animation-delay: 0.45s; }

@keyframes reveal-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================
   RESPONSIVE
   ====================== */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content {
    order: 2;
  }

  .hero__visual {
    order: 1;
    margin-bottom: var(--space-md);
  }

  .hero__portrait-wrap {
    width: 280px;
    height: 280px;
    margin: 0 auto;
  }

  .hero__waveform {
    right: -20px;
    bottom: -20px;
    width: 280px;
  }

  .hero__label {
    justify-content: center;
  }

  .hero__sub,
  .hero__desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__scroll {
    display: none;
  }

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

  .service--left .service__content {
    order: 2;
  }

  .service--left .service__image-wrap {
    order: 1;
  }

  .service__text {
    max-width: 100%;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about__images {
    height: 420px;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .about__portrait {
    width: 250px;
    height: 320px;
  }

  .about__drummer {
    width: 200px;
    height: 160px;
  }

  .about__content {
    text-align: center;
    max-width: 100%;
  }

  .about__tags {
    justify-content: center;
  }

  .cta-section__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-section__megaphone {
    max-width: 280px;
    order: -1;
  }

  .cta-section__actions {
    justify-content: center;
  }

  .cta-section__contact {
    align-items: center;
  }

  .footer__top {
    flex-direction: column;
    gap: var(--space-md);
  }

  .footer__nav {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
    --space-2xl: 6rem;
  }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__burger {
    display: block;
  }

  .hero {
    padding-top: 6rem;
    min-height: auto;
    padding-bottom: var(--space-lg);
  }

  .hero__bg-text {
    font-size: 8rem;
  }

  .hero__portrait-wrap {
    width: 220px;
    height: 220px;
  }

  .btn {
    padding: 0.8rem 1.6rem;
    font-size: 0.85rem;
  }

  .btn--large {
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
  }

  .testimonial-card {
    min-width: 300px;
    max-width: 340px;
    padding: 1.5rem 1.6rem;
  }

  .about__images {
    height: 350px;
  }

  .about__portrait {
    width: 200px;
    height: 260px;
  }

  .about__drummer {
    width: 160px;
    height: 130px;
  }

  .about__abstract {
    width: 120px;
    height: 100px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .hero__portrait-wrap {
    width: 180px;
    height: 180px;
  }

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

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

  .service__num {
    font-size: 5rem;
  }

  .about__images {
    height: 300px;
  }

  .about__portrait {
    width: 170px;
    height: 220px;
  }

  .about__drummer {
    width: 140px;
    height: 110px;
    right: 10px;
  }

  .about__abstract {
    display: none;
  }
}
