/*
Theme Name: Sun & Spa
Theme URI: https://sun-spa-tech.de
Author: Thorsten Kirchhoff
Author URI: https://sun-spa-tech.de
Description: Professionelles Theme für Sun & Spa – Whirlpool-Wartung, Reparatur & Pflege
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: sun-spa
*/

/* ── FONTS ─────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Lato:ital,wght@0,300;0,400;0,700;1,300&display=swap');

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --deep:    #0a2540;
  --ocean:   #1a4a7a;
  --water:   #2980b9;
  --aqua:    #00b4d8;
  --foam:    #90e0ef;
  --white:   #ffffff;
  --offwhite:#f4f9fc;
  --light:   #e8f4f8;
  --muted:   #6b8ca4;
  --ink:     #1a2a3a;
  --border:  #cce0ec;
  --gold:    #f0a500;
  --shadow:  0 4px 24px rgba(10,37,64,.12);
  --shadow-lg: 0 12px 48px rgba(10,37,64,.18);
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--water); text-decoration: none; transition: color .2s; }
a:hover { color: var(--aqua); }

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  line-height: 1.15;
  color: var(--deep);
}
.section-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--aqua);
  display: block;
  margin-bottom: .5rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 2.5rem;
}

/* ── LAYOUT ────────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
section { padding: 5rem 0; }
.text-center { text-align: center; }
.text-center .section-lead { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--aqua);
  color: var(--deep);
}
.btn-primary:hover {
  background: var(--foam);
  color: var(--deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,180,216,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline:hover {
  border-color: var(--aqua);
  color: var(--aqua);
}
.btn-dark {
  background: var(--deep);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--ocean);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ── NAVIGATION ────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 37, 64, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .3s, box-shadow .3s;
}
#site-header.scrolled {
  background: var(--deep);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2rem;
  max-width: 1160px;
  margin: 0 auto;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--aqua), var(--water));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: .03em;
  line-height: 1.1;
}
.logo-text span {
  display: block;
  font-size: .62rem;
  font-weight: 300;
  letter-spacing: .2em;
  color: var(--foam);
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.main-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  transition: color .2s;
}
.main-nav a:hover { color: var(--aqua); }
.nav-cta {
  background: var(--aqua);
  color: var(--deep) !important;
  padding: .5rem 1.25rem;
  font-weight: 500 !important;
}
.nav-cta:hover { background: var(--foam) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--deep) 0%, var(--ocean) 55%, #1a6b9a 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,180,216,.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(41,128,185,.2) 0%, transparent 60%);
}
/* Animated bubbles */
.bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.bubble {
  position: absolute;
  bottom: -20px;
  border-radius: 50%;
  background: rgba(144,224,239,.12);
  border: 1px solid rgba(144,224,239,.2);
  animation: rise linear infinite;
}
.bubble:nth-child(1)  { width:18px;height:18px;left:8%;animation-duration:9s;animation-delay:0s; }
.bubble:nth-child(2)  { width:10px;height:10px;left:18%;animation-duration:12s;animation-delay:2s; }
.bubble:nth-child(3)  { width:25px;height:25px;left:28%;animation-duration:8s;animation-delay:1s; }
.bubble:nth-child(4)  { width:12px;height:12px;left:40%;animation-duration:14s;animation-delay:3s; }
.bubble:nth-child(5)  { width:20px;height:20px;left:55%;animation-duration:10s;animation-delay:.5s; }
.bubble:nth-child(6)  { width:8px;height:8px;left:65%;animation-duration:11s;animation-delay:4s; }
.bubble:nth-child(7)  { width:30px;height:30px;left:75%;animation-duration:13s;animation-delay:1.5s; }
.bubble:nth-child(8)  { width:14px;height:14px;left:85%;animation-duration:9s;animation-delay:2.5s; }
.bubble:nth-child(9)  { width:22px;height:22px;left:92%;animation-duration:11s;animation-delay:.8s; }
@keyframes rise {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .6; }
  100% { transform: translateY(-110vh) scale(1.2); opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}
.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: .72rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--aqua);
}
.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--aqua);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-badges {
  display: flex;
  gap: 2rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.65);
  font-size: .85rem;
}
.hero-badge-icon {
  font-size: 1.1rem;
  color: var(--aqua);
}

/* ── SERVICES ───────────────────────────────────────────────── */
.services { background: var(--offwhite); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.25rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--aqua), var(--water));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--foam);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: .6rem;
  color: var(--deep);
}
.service-card p {
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.65;
}

/* ── WHY US ─────────────────────────────────────────────────── */
.why-us {
  background: var(--deep);
  color: var(--white);
}
.why-us .section-title { color: var(--white); }
.why-us .section-lead  { color: rgba(255,255,255,.6); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  margin-top: 3rem;
}
.stat-item {
  padding: 2.5rem 2rem;
  background: rgba(10,37,64,.4);
  text-align: center;
  transition: background .2s;
}
.stat-item:hover { background: rgba(0,180,216,.08); }
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--aqua);
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(0,180,216,.15);
  border: 1px solid rgba(0,180,216,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.feature-item h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: .3rem;
}
.feature-item p {
  color: rgba(255,255,255,.55);
  font-size: .87rem;
  line-height: 1.6;
}

/* ── PRICING ────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.price-card {
  border: 2px solid var(--border);
  padding: 2.5rem;
  position: relative;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.price-card:hover {
  border-color: var(--aqua);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.price-card.featured {
  border-color: var(--aqua);
  background: var(--offwhite);
}
.price-badge {
  position: absolute;
  top: -1px; right: 2rem;
  background: var(--aqua);
  color: var(--deep);
  font-family: 'Oswald', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .3rem .8rem;
}
.price-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .5rem;
}
.price-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--deep);
  line-height: 1;
  margin-bottom: .25rem;
}
.price-amount sup {
  font-size: 1.3rem;
  vertical-align: super;
  font-weight: 400;
}
.price-note {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
}
.price-features {
  list-style: none;
  margin-bottom: 2rem;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
  color: var(--ink);
}
.price-features li:last-child { border-bottom: none; }
.price-features .check { color: var(--aqua); font-size: 1rem; flex-shrink: 0; }
.price-features .cross { color: var(--border); font-size: 1rem; flex-shrink: 0; }

/* ── TEAM ───────────────────────────────────────────────────── */
.team { background: var(--offwhite); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.team-photo {
  height: 220px;
  background: linear-gradient(160deg, var(--ocean), var(--water));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.team-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(10,37,64,.4), transparent);
}
.team-info {
  padding: 1.5rem;
}
.team-info h3 {
  font-size: 1.15rem;
  margin-bottom: .2rem;
}
.team-role {
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--aqua);
  display: block;
  margin-bottom: .75rem;
}
.team-info p {
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── ABOUT ──────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--ocean), var(--water), var(--aqua));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  border-radius: 2px;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--deep);
  color: var(--white);
  padding: 1.5rem;
  width: 140px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--aqua);
  line-height: 1;
}
.about-badge-txt {
  font-size: .72rem;
  color: rgba(255,255,255,.6);
  line-height: 1.4;
  margin-top: .3rem;
}
.about-content .section-lead { margin-bottom: 1.5rem; }
.checkmark-list {
  list-style: none;
  margin-bottom: 2rem;
}
.checkmark-list li {
  display: flex;
  gap: .75rem;
  padding: .5rem 0;
  font-size: .95rem;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.checkmark-list li:last-child { border-bottom: none; }
.checkmark-list .ck { color: var(--aqua); font-weight: 700; flex-shrink: 0; }

/* ── CONTACT ────────────────────────────────────────────────── */
.contact { background: var(--deep); }
.contact .section-title { color: var(--white); }
.contact .section-lead  { color: rgba(255,255,255,.6); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  margin-top: 3rem;
}
.contact-info h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(0,180,216,.15);
  border: 1px solid rgba(0,180,216,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--aqua);
}
.contact-item h4 {
  color: var(--white);
  font-size: .9rem;
  margin-bottom: .2rem;
}
.contact-item p {
  color: rgba(255,255,255,.55);
  font-size: .87rem;
  line-height: 1.5;
}
/* Contact Form */
.contact-form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  padding: 2.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: .4rem;
  font-family: 'Oswald', sans-serif;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  padding: .85rem 1rem;
  font-family: 'Lato', sans-serif;
  font-size: .93rem;
  outline: none;
  transition: border-color .2s, background .2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--aqua);
  background: rgba(0,180,216,.06);
}
.form-group select option { background: var(--deep); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; margin-top: .5rem; justify-content: center; }

/* ── FOOTER ─────────────────────────────────────────────────── */
#site-footer {
  background: #061520;
  color: rgba(255,255,255,.45);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo-text { color: var(--white); margin-top: .5rem; }
.footer-brand p {
  margin-top: 1rem;
  font-size: .85rem;
  line-height: 1.7;
  max-width: 260px;
}
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a {
  font-size: .87rem;
  color: rgba(255,255,255,.45);
  transition: color .2s;
}
.footer-col a:hover { color: var(--aqua); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a { color: var(--aqua); }

/* ── SCROLL ANIMATIONS ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { order: -1; }
  .about-badge { right: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; flex-direction: column; gap: 0;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--deep); padding: 6rem 2rem 2rem;
    z-index: 999; }
  .main-nav.open { display: flex; }
  .main-nav li { width: 100%; border-bottom: 1px solid rgba(255,255,255,.08); }
  .main-nav a { display: block; padding: 1rem 0; font-size: 1.3rem; }
  .nav-cta { margin-top: 1rem; text-align: center; }
  .nav-toggle { display: flex; z-index: 1001; position: relative; }
  section { padding: 3.5rem 0; }
  .features-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .hero-badges { gap: 1.25rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ── NOTICE BANNER ──────────────────────────────────────────── */
.notice-success {
  background: rgba(0,180,216,.1);
  border: 1px solid rgba(0,180,216,.3);
  color: var(--aqua);
  padding: .85rem 1.25rem;
  margin-top: 1rem;
  font-size: .88rem;
  display: none;
}
.notice-success.show { display: block; }

/* ── SVG LOGO ──────────────────────────────────────────────── */
.site-logo-svg {
  display: block;
  height: 48px;
  width: auto;
  max-width: 240px;
}
@media (max-width: 480px) {
  .site-logo-svg { height: 38px; }
}
