:root {
  --red: #da3e57;
  --red-dark: #b8293f;
  --red-light: #fce8ec;
  --cream: #fdf9f5;
  --cream-2: #f4ede3;
  --ink: #1e1810;
  --ink-mid: #4a3f36;
  --ink-light: #9c8f87;
  --white: #ffffff;
  --gold: #c9a84c;
  --font-display: 'Signika', system-ui, sans-serif;
  --font-body: 'Signika', system-ui, sans-serif;
  --nav-h: 68px;
  --section-pad: clamp(4rem, 8vw, 7rem);
  --radius: 14px;
  --shadow-card: 0 2px 16px rgba(30,24,16,.07);
  --shadow-hover: 0 10px 40px rgba(30,24,16,.13);
  --transition: 0.28s cubic-bezier(.4,0,.2,1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

p {
  line-height: 1.75;
  color: var(--ink-mid);
}

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

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

/* ── Reveal ── */

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

/* Nur ausblenden, wenn das Skript aktiv ist (Progressive Enhancement) */

.js-enabled .reveal:not(.visible) {
  opacity: 0;
  transform: translateY(28px);
}

.reveal.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.22s;
}

.reveal-delay-3 {
  transition-delay: 0.34s;
}

.reveal-delay-4 {
  transition-delay: 0.46s;
}

/* ── Navigation ── */

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

#mainNav.scrolled {
  background: rgba(250,248,244,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(26,20,16,.1);
}

.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter var(--transition);
}

#mainNav.scrolled .nav-logo img {
  filter: brightness(0);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,.85);
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  transition: background var(--transition), color var(--transition);
}

.nav-links a:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
}

#mainNav.scrolled .nav-links a {
  color: var(--ink-mid);
}

#mainNav.scrolled .nav-links a:hover {
  background: var(--red-light);
  color: var(--red-dark);
}

.nav-links .nav-cta a {
  background: rgba(255,255,255,.2);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.35);
  padding: 0.45rem 1.1rem;
}

.nav-links .nav-cta a:hover {
  background: #fff;
  color: var(--red) !important;
  border-color: #fff;
}

#mainNav.scrolled .nav-links .nav-cta a {
  background: var(--red);
  border-color: var(--red);
  color: #fff !important;
}

#mainNav.scrolled .nav-links .nav-cta a:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.nav-toggler {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.nav-toggler span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

#mainNav.scrolled .nav-toggler span {
  background: var(--ink);
}

/* Animation zum X */

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

#navToggle.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

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

/* Sicherstellen, dass das X im Scrolled-Zustand sichtbar bleibt */

#mainNav.scrolled #navToggle.open span {
  background: var(--ink);
}

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

@media (max-width: 900px) {
  .nav-toggler {
    display: flex;
  }
}

@media (max-width: 900px) {
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 1.5rem 2rem 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
    gap: 0.25rem;
  }
}

@media (max-width: 900px) {
  .nav-links.open a {
    color: var(--ink-mid) !important;
  }
}

@media (max-width: 900px) {
  .nav-links.open a:hover {
    background: var(--red-light);
    color: var(--red-dark) !important;
  }
}

@media (max-width: 900px) {
  .nav-links.open .nav-cta a {
    background: var(--red) !important;
    color: #fff !important;
    border: none;
  }
}

@media (max-width: 900px) {
  .nav-links.open a {
    line-height: 2.2rem;
    font-size: 1.1rem;
  }
}

/* ── Hero ── */

#hero {
  min-height: 100vh;
  background: var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 4rem) 2rem 6rem;
}

#hero::before {
  content: '';
  position: absolute;
  width: 950px;
  height: 950px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

#hero::after {
  content: '';
  position: absolute;
  width: 1200px;
  height: 1200px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.hero-ring-3 {
  position: absolute;
  width: 1500px;
  height: 1500px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: clamp(240px, 30vw, 350px);
  filter: brightness(0);
  margin: 0 auto 2.8rem;
  animation: fadeDown 0.7s ease both;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 1rem;
  animation: fadeDown 0.7s 0.15s ease both;
}

.hero-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.9vw, 4.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 760px;
  margin: 0 auto 1.4rem;
  animation: fadeDown 0.7s 0.25s ease both;
}

.hero-title em {
  font-style: italic;
  font-weight: 600;
  color: rgba(255,255,255,.75);
}

.hero-sub {
  position: relative;
  z-index: 1;
  font-size: clamp(0.9rem, 1.8vw, 1.5rem);
  color: rgba(255,255,255,.7);
  /*max-width: 600px;*/
  margin: 0 auto 2.8rem;
  line-height: 1.65;
  font-weight: 600;
  animation: fadeDown 0.7s 0.35s ease both;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeDown 0.7s 0.45s ease both;
}

.btn-white {
  background: #fff;
  color: var(--red);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-block;
}

.btn-white:hover {
  background: var(--cream);
  color: #da3e57;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

.btn-ghost-white {
  background: transparent;
  color: rgba(255,255,255,.85);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,.45);
  cursor: pointer;
  transition: all var(--transition);
  display: inline-block;
}

.btn-ghost-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,.12);
  color: #fff;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.4);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: fadeIn 1.2s 1s ease both;
}

.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.3);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: .3;
  }
  50% {
    opacity: .8;
  }
}

/* ── Shared ── */

.inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--red);
  font-weight: 600;
}

.divider {
  width: 32px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 1.3rem 0;
}

.divider-center {
  margin: 1.3rem auto;
}

/* ── Teacher Sections ── */

.teacher-section {
  padding: var(--section-pad) 2rem;
}

.teacher-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 800px) {
  .teacher-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 800px) {
  .teacher-grid .teacher-visual {
    order: -1;
  }
}

.teacher-photo-wrap {
  position: relative;
  max-width: 260px;
  margin: 0 auto;
}

.teacher-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -10px -10px 10px 10px;
  border: 2px solid var(--red-light);
  border-radius: calc(var(--radius) + 4px);
  z-index: 0;
}

.teacher-photo-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  filter: grayscale(8%);
  transition: filter var(--transition);
}

.teacher-photo-wrap:hover img {
  filter: grayscale(0);
}

.teacher-tag {
  position: absolute;
  bottom: -0.85rem;
  right: -0.85rem;
  z-index: 2;
  background: var(--red);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
}

.teacher-name {
  font-family: var(--font-display);
  /*font-size: clamp(2rem, 3.2vw, 2.9rem);*/
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}

.teacher-role {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 1.4rem;
}

.teacher-bio {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--ink-mid);
  margin-bottom: 1.4rem;
}

.teacher-socials {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.social-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1.5px solid var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-light);
  font-size: 0.85rem;
  transition: all var(--transition);
  background: var(--white);
}

.social-btn i {
  color: inherit;
}

.social-btn:hover {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

/* Gesang section flips photo to right → override column order */

#gesang .teacher-grid {
  grid-template-columns: 3fr 2fr;
}

@media (max-width: 800px) {
  #gesang .teacher-grid {
    grid-template-columns: 1fr;
  }
}

/* Light cream variant for Gesang */

.teacher-section-dark {
  background: var(--cream-2);
}

.teacher-section-dark .teacher-name, .teacher-section-dark .teacher-bio, .teacher-section-dark p {
  color: var(--ink-mid);
}

.teacher-section-dark .teacher-role {
  color: var(--ink-light);
}

.teacher-section-dark .section-label {
  color: var(--red);
}

.teacher-section-dark .section-title {
  color: var(--ink);
}

.teacher-section-dark .section-title em {
  color: var(--red);
}

.teacher-section-dark .divider {
  background: var(--red);
}

.teacher-section-dark .teacher-photo-wrap::before {
  border-color: rgba(218, 62, 87, 0.15);
  inset: -10px 10px 10px -10px;
}

#gesang .teacher-tag {
  right: auto;
  left: -0.85rem;
}

.teacher-section-dark .social-btn {
  border-color: rgba(26,20,16,.1);
  background: var(--white);
  color: var(--ink-light);
}

.teacher-section-dark .social-btn:hover {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

/* ── Notenreise ── */

#notenreise {
  background: var(--cream-2);
  padding: var(--section-pad) 2rem;
  overflow: hidden;
}

.notenreise-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 800px) {
  .notenreise-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  #notenreise {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media (max-width: 576px) {
  .notenreise-grid {
    gap: 2.5rem;
  }
}

.notenreise-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,.18);
  border: 1px solid rgba(201,168,76,.4);
  color: #d4a843;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.notenreise-title-vis {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.notenreise-sub-vis {
  color: rgba(255,255,255,.45);
  font-size: 0.88rem;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* Animated staff */

.staff-lines {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 2.5rem auto;
  width: 80%;
  max-width: 280px;
}

.staff-line {
  height: 1.5px;
  background: rgba(255,255,255,.3);
  border-radius: 2px;
  position: relative;
}

.staff-note {
  position: absolute;
  width: 15px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.staff-note::after {
  content: '';
  position: absolute;
  top: -22px;
  right: -2px;
  width: 2px;
  height: 24px;
  background: rgba(255,255,255,.5);
}

@keyframes noteBounce {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: .75;
  }
  50% {
    transform: translate(-50%, -80%) scale(1.2);
    opacity: 1;
  }
}

.note-letters {
  font-size: 1.8rem;
  letter-spacing: 10px;
  color: rgba(255,255,255,.3);
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}

.notenreise-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.notenreise-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.97rem;
  color: var(--ink-mid);
  line-height: 1.55;
}

.feature-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 0.75rem;
  margin-top: 1px;
}

.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--red);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-red:hover {
  background: var(--red-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(218,62,87,.35);
}

/* ── Preise ── */

#preise {
  padding: var(--section-pad) 2rem;
  background: var(--white);
}

.preise-header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 4rem;
}

.price-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .price-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

.price-card {
  background: var(--cream-2);
  border: 1.5px solid transparent;
  border-radius: 14px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  border-color: var(--red);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.price-card.featured {
  background: var(--red);
}

.price-card.featured p, .price-card.featured .price-feature {
  color: rgba(255,255,255,.8);
}

.price-card.featured .price-amount {
  color: #fff;
}

.price-card.featured .price-period {
  color: rgba(255,255,255,.55);
}

.featured-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(218,62,87,0.98);
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  border: 1px solid rgb(218,62,87);
}

.price-duration {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  /*margin-bottom: 1.25rem;*/
}

.price-card.featured .price-duration {
  color: rgba(255,255,255,.75);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-amount sup {
  font-size: 1.5rem;
  font-weight: 700;
  vertical-align: super;
  margin-right: 2px;
}

.price-period {
  font-size: 0.90rem;
  color: var(--ink-light);
  margin-bottom: 2rem;
}

.price-features {
  list-style: none;
  flex: 1;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price-feature {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.97rem;
  color: var(--ink-mid);
}

.price-feature i {
  color: var(--red);
  font-size: 0.75rem;
  width: 14px;
}

.price-card.featured .price-feature i {
  color: rgba(255,255,255,.9);
}

.price-cta {
  display: block;
  text-align: center;
  background: transparent;
  color: var(--red);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  border: 1.5px solid var(--red);
  transition: all var(--transition);
}

.price-cta:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-1px);
}

.price-card.featured .price-cta {
  background: #fff;
  color: var(--red);
  border-color: #fff;
}

.price-card.featured .price-cta:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.price-fine {
  max-width: 840px;
  margin: 3rem auto 0;
}

.price-fine-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: var(--ink-light);
  line-height: 1.65;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--cream-2);
}

.price-fine-item:last-child {
  border-bottom: none;
}

.price-fine-item i {
  color: var(--red);
  margin-top: 3px;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ── Contact ── */

#contact {
  padding: var(--section-pad) 2rem;
  background: var(--cream);
}

.contact-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 5rem;
  align-items: start;
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.6rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--red-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-info-item p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--ink-mid);
}

.contact-info-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-label-custom {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 0.45rem;
}

.form-control-custom {
  width: 100%;
  background: var(--white);
  border: 1.0px solid #c1bcb5;
  border-radius: 8px;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-control-custom:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(218,62,87,.1);
}

.form-control-custom::placeholder {
  color: var(--ink-light);
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 130px;
}

.form-check-input:checked {
  background-color: var(--red);
  border-color: var(--red);
}

.form-check-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(218,62,87,.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.btn-submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(218,62,87,.3);
}

#success {
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* ── Footer ── */

footer {
  background: var(--cream-2);
  padding: 2.5rem 2rem;
  border-top: 1px solid rgba(26,20,16,.08);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

footer img {
  height: 30px;
  filter: brightness(0);
  opacity: .35;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.78rem;
  color: var(--ink-light);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--red);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--ink-light);
}

