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

:root {
  --accent:       #3aada8;
  --accent-light: #7dd4cf;
  --dark:         #0d3535;
  --mid:          #2d6e6b;
  --muted:        #6fa8a5;
  --bg:           #f3fafa;
  --bg-alt:       #e4f4f3;
  --white:        #ffffff;
  --border:       #bde0de;

  --radius:     12px;
  --transition: 0.22s ease;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Lato', system-ui, sans-serif;
  font-weight: 400;
  color: var(--dark);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === Typography === */
h1 {
  font-family: 'Great Vibes', cursive;
  line-height: 1.2;
}

h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--dark);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

p {
  color: var(--mid);
  font-size: 0.97rem;
}

/* === Navigation === */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 53, 53, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(58, 173, 168, 0.25);
  overflow: visible;
}

nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn {
  font-family: 'Lato', sans-serif;
}

.logo-spacer {
  width: 200px;
  flex-shrink: 0;
}

.logo {
  position: absolute;
  left: 4rem;
  bottom: -170px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 101;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.logo img {
  width: 130%;
  height: 130%;
  margin: -15%;
  display: block;
  object-fit: cover;
}

.hero-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem) !important;
  color: rgba(255,255,255,0.85) !important;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem !important;
  opacity: 1 !important;
  text-transform: none !important;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

nav ul a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
}

nav ul a:hover {
  color: var(--accent-light);
}

/* === Hero === */
.hero {
  min-height: 92vh;
  background:
    linear-gradient(to bottom, rgba(13, 53, 53, 0.5) 0%, rgba(13, 53, 53, 0.68) 100%),
    url('hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 170px;
}

.hero-content {
  color: var(--white);
  padding: 2rem;
  max-width: 700px;
}

.hero-content h1 {
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
  white-space: nowrap;
  color: var(--accent-light);
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  border: none;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.btn:hover {
  background: var(--mid);
  transform: translateY(-1px);
}

/* === Sections === */
.section {
  padding: 7rem 2rem;
}

.section-alt {
  background: var(--bg-alt);
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

/* === About === */
.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 5rem;
  align-items: center;
}

.about-photo img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 3 / 4;
  display: block;
  background: var(--bg-alt);
  min-height: 320px;
}

.about-text p {
  margin-top: 1rem;
}

/* === Counters === */
.counters-section {
  background: var(--dark);
  padding: 4rem 2rem;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.counter-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--accent-light);
  line-height: 1;
}

.counter-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-family: 'Lato', sans-serif;
}

/* === Testimonials === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: var(--accent-light);
  line-height: 0.6;
  margin-bottom: 0.5rem;
}

.testimonial-text {
  font-size: 0.97rem;
  color: var(--mid);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-name {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
  margin-top: auto;
}

/* === Services === */
.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.service-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-item:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.service-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2rem;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 1rem;
}

.service-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.service-item p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* === Gallery === */
.gallery-header {
  margin-bottom: 2.5rem;
}

.gallery-hint {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.gallery-hint code {
  background: var(--bg-alt);
  padding: 0.1em 0.4em;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.85em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  background: var(--bg-alt);
  min-height: 180px;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* === Contact === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.contact-details li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-details span,
.contact-details a {
  font-size: 0.97rem;
  color: var(--mid);
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--accent);
}

/* === Form === */
form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

form h2 {
  margin-bottom: 0.75rem;
}

form input,
form textarea {
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: 'Lato', sans-serif;
  background: var(--white);
  color: var(--dark);
  transition: border-color var(--transition);
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

form textarea {
  resize: vertical;
}

/* === Lightbox === */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  transition: opacity 0.2s ease;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close {
  top: 1.2rem;
  right: 1.2rem;
  width: 42px;
  height: 42px;
  font-size: 1.1rem;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-prev { left: 1.2rem; }
.lightbox-next { right: 1.2rem; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.25);
}

/* === Scroll-to-top === */
.scroll-top {
  position: fixed;
  bottom: 5.5rem;
  left: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-top:hover {
  background: var(--mid);
}

/* === WhatsApp === */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  z-index: 200;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: whatsapp-pulse 2.5s ease-in-out infinite;
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55);
  animation: none;
}

.whatsapp-tooltip {
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: #fff;
  font-size: 0.78rem;
  font-family: 'Lato', sans-serif;
  white-space: nowrap;
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45); }
  50%       { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.75); }
}

/* === Map === */
.map-wrap {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-wrap iframe {
  width: 100%;
  height: 220px;
  border: none;
  display: block;
}

/* === Form status === */
.form-status {
  display: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
}

.form-status.success {
  display: block;
  background: #e4f5ee;
  color: #1a6b47;
}

.form-status.error {
  display: block;
  background: #fdecea;
  color: #c0392b;
}

/* === Footer === */
footer {
  background: var(--dark);
  color: var(--muted);
  text-align: center;
  padding: 2rem;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

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

/* === Mobile logo (inside nav, hidden on desktop) === */
.logo-mobile {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-mobile img {
  width: 130%;
  height: 130%;
  margin: -15%;
  display: block;
  object-fit: cover;
}

/* === Hamburger === */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 10;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === Page loader === */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  animation: loader-pulse 1.2s ease-in-out infinite;
}

.loader-logo img {
  width: 130%; height: 130%;
  margin: -15%;
  display: block;
  object-fit: cover;
}

@keyframes loader-pulse {
  0%, 100% { transform: scale(1);    opacity: 1; }
  50%       { transform: scale(0.93); opacity: 0.7; }
}

/* === Cookie banner === */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 680px;
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(58,173,168,0.3);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-banner.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
}

.cookie-text {
  flex: 1;
  font-size: 0.82rem;
  line-height: 1.5;
}

.cookie-text strong {
  display: block;
  color: var(--accent-light);
  margin-bottom: 0.2rem;
  font-size: 0.85rem;
}

.cookie-text a {
  color: var(--accent-light);
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  border: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}
.cookie-accept:hover { background: var(--mid); }

.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
}
.cookie-decline:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

/* === Map placeholder === */
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  height: 220px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  text-align: center;
  padding: 1rem;
}

.map-placeholder span { font-size: 2rem; }
.map-placeholder p { font-size: 0.85rem; color: var(--muted); }

/* === Shimmer placeholder for gallery === */
@keyframes shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position:  600px 0; }
}

.gallery-item.loading {
  background: linear-gradient(90deg, var(--bg-alt) 25%, var(--bg) 50%, var(--bg-alt) 75%);
  background-size: 600px 100%;
  animation: shimmer 1.4s infinite linear;
  border-radius: var(--radius);
}

/* === Toast === */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--dark);
  color: var(--accent-light);
  padding: 0.65rem 1.4rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  z-index: 600;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* === Videos === */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.video-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transition: transform var(--transition), box-shadow var(--transition);
}

.video-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

.video-item video {
  width: 100%;
  display: block;
  max-height: 320px;
  background: #000;
}

/* === Print stylesheet === */
@media print {
  header, .hero, #about, #services, #gallery,
  .lightbox, .scroll-top, .whatsapp-btn,
  .cookie-banner, .page-loader, footer {
    display: none !important;
  }

  #contact {
    display: block !important;
    padding: 0 !important;
    background: none !important;
  }

  .contact-grid {
    display: block !important;
  }

  form {
    display: none !important;
  }

  .contact-info {
    display: block !important;
  }

  .section-label {
    color: #000 !important;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }

  h2 { font-size: 1.8rem; color: #000 !important; }

  .contact-details a { color: #000 !important; text-decoration: none; }
  .contact-label { color: #555 !important; }

  body::after {
    content: "Balance in Motion · Saskia Brieger · saskiabrieger@me.com";
    display: block;
    margin-top: 2rem;
    font-size: 0.7rem;
    color: #999;
  }
}

/* === Animations === */
@keyframes hero-fade {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
  animation: hero-fade 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hero-content p {
  animation: hero-fade 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.42s both;
}

.hero-content .btn {
  animation: hero-fade 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}

/* Scroll-reveal base state */
.animate {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate.from-left {
  transform: translateX(-32px);
}

.animate.from-right {
  transform: translateX(32px);
}

.animate.is-visible {
  opacity: 1;
  transform: translate(0);
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .animate,
  .hero-content h1,
  .hero-content p,
  .hero-content .btn {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* === Responsive === */
@media (max-width: 820px) {
  .videos-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }

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

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

  .about-photo img {
    aspect-ratio: 4 / 3;
    max-width: 380px;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Hide floating logo, show inline one */
  .logo {
    display: none;
  }

  .logo-mobile {
    display: block;
  }

  .logo-spacer {
    display: none;
  }

  .hero {
    padding-top: 2rem;
  }

  /* Mobile nav */
  .hamburger {
    display: flex;
  }

  nav ul {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(13, 53, 53, 0.97);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    border-top: 1px solid rgba(58, 173, 168, 0.2);
  }

  nav ul.nav-open {
    display: flex;
  }

  nav ul li a {
    display: block;
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
  }
}

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

  nav ul {
    gap: 1rem;
  }

  nav ul a {
    font-size: 0.8rem;
  }

  .hero-content h1 {
    white-space: normal;
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }
}
