/* ============================================================
   INTERTHERAPY — Francis Meenen
   Stil angelehnt an psychotherapie-schmeding.de
   ============================================================ */

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

:root {
  --primary:   #054288;
  --primary-mid: #4E79A7;
  --accent1:   #00B4D8;
  --accent2:   #8B35D6;
  --bg:        #F7F7F7;
  --white:     #FFFFFF;
  --text:      #333333;
  --text-light:#666666;
  --border:    #DEDEDE;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.08);
  --shadow:    0 5px 15px -5px rgba(0,0,0,0.18);
  --radius:    2px;
  --max-width: 1100px;
  --nav-height:72px;
}

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

body {
  font-family: 'Open Sans', 'Lato', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-mid); }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Marcellus', Georgia, serif;
  font-weight: 400;
  line-height: 1.25;
  color: var(--primary);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.2rem; }
p  { margin-bottom: 1rem; font-weight: 300; }
p:last-child { margin-bottom: 0; }

/* --- Layout Helpers --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 3.5rem;
}
@media (max-width: 975px) { .container { padding: 0 2rem; } }
@media (max-width: 575px) { .container { padding: 0 1.25rem; } }

.section      { padding: 5rem 0; }
.section--alt { background: linear-gradient(135deg, #f8fbfd 0%, #edf3f8 100%); }

.section-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-mid);
  margin-bottom: 0.6rem;
}
.section-title {
  margin-bottom: 1rem;
  color: var(--primary);
}
.section-intro {
  max-width: 660px;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-size: 1rem;
  font-weight: 300;
}

/* Divider line under section headings */
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--primary-mid);
  margin-top: 0.75rem;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 2px solid transparent;
  text-decoration: none;
  font-family: inherit;
}
.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn--primary:hover {
  background: var(--primary-mid);
  border-color: var(--primary-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(5, 66, 136, 0.2);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  background: rgba(255, 255, 255, 0.95);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}
.header__logo img { height: 46px; width: auto; object-fit: contain; }
.header__logo-name {
  font-family: 'Marcellus', Georgia, serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--primary);
  letter-spacing: 0.03em;
}
.header__logo-sub {
  font-size: 0.68rem;
  color: var(--text-light);
  font-weight: 300;
}

/* Desktop Nav */
.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__list a {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text);
  padding: 0.4rem 1rem;
  border-right: 1px solid rgba(0,0,0,0.08);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.nav__list a:hover, .nav__list a.active { color: var(--primary); }
.nav__list li:last-child a { border-right: none; padding-right: 0; }
.nav__list .btn { padding: 0.5rem 1.4rem; border-right: none; }

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

/* Mobile Nav */
.nav--mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  z-index: 999;
  padding: 1.25rem 1.5rem 2rem;
  flex-direction: column;
  gap: 0;
}
.nav--mobile.open { display: flex; }
.nav--mobile a {
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--text);
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav--mobile a:hover { color: var(--primary); }
.nav--mobile a:last-child { border-bottom: none; }

/* ============================================================
   HERO — Ken Burns zoom animation + parallax overlay
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
  background: #1a1a1a;
}

/* Background image container — clips the zoom */
.hero__bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* The actual background that zooms */
.hero__bg {
  position: absolute;
  inset: -8%;               /* slightly oversized so zoom stays in bounds */
  background-image: url('../assets/praxis-5.jpg');
  background-size: cover;
  background-position: center center;
  will-change: transform;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0%   { transform: scale(1)    translateX(0%)    translateY(0%); }
  33%  { transform: scale(1.06) translateX(-1%)   translateY(0.5%); }
  66%  { transform: scale(1.04) translateX(1%)    translateY(-0.5%); }
  100% { transform: scale(1.08) translateX(0%)    translateY(1%); }
}

/* Grey overlay — matches schmeding rgba(90, 92, 91, 0.55) */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 30, 70, 0.58);  /* deep blue-grey for brand fit */
}

.hero__content {
  position: relative;
  z-index: 2;
  flex: 0 0 58%;
  min-width: 0;
  padding: 4rem 0;
  align-self: center;
}
.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.25rem;
}
.hero h1 {
  color: var(--white);
  font-family: 'Marcellus', Georgia, serif;
  font-weight: 400;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.hero__sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  font-weight: 300;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.hero__badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.88);
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero two-column: text left, portrait right, aligned inside container */
.hero__container {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  width: 100%;
  align-self: stretch;
}

.hero__photo-wrap {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 2;
  pointer-events: none;
  min-width: 0;
}
.hero__photo {
  height: 72vh;
  max-height: 560px;
  width: auto;
  max-width: 100%;
  display: block;
  filter: drop-shadow(-6px 0 28px rgba(0,0,0,0.5));
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
  z-index: 2;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   ÜBER MICH
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4.5rem;
  align-items: start;
}
.about__photo-wrap { position: relative; }
.about__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}
.about__photo-border {
  position: absolute;
  top: -12px; left: -12px;
  right: 12px; bottom: 12px;
  border: 2px solid var(--primary-mid);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.5;
}

.about__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.75rem;
}
.credential {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  color: var(--primary);
  padding: 0.3rem 0.8rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.about__since {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--bg);
  border-left: 3px solid var(--primary-mid);
  font-size: 0.9rem;
  color: var(--text-light);
}
.about__since strong { color: var(--primary); font-weight: 700; }
.about__langs {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 400;
}
.lang-icon { font-size: 1.2rem; }

/* ============================================================
   LEISTUNGEN
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--white);
  padding: 2rem 2rem 2rem 2.5rem;
  position: relative;
  transition: background 0.2s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.25s ease;
}
.service-card:hover { background: #fafafa; }
.service-card:hover::before { transform: scaleY(1); }

.service-card__icon {
  width: 40px; height: 40px;
  color: var(--primary-mid);
  margin-bottom: 1rem;
}
.service-card__icon svg { width: 32px; height: 32px; }
.service-card h3 {
  color: var(--primary);
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
  font-family: 'Marcellus', Georgia, serif;
  font-weight: 400;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
  font-weight: 300;
}

/* ============================================================
   BEHANDLUNGSBEREICHE
   ============================================================ */
.conditions__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.tag {
  background: var(--white);
  border: 1px solid var(--primary-mid);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 400;
  transition: all 0.2s;
}
.tag:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ============================================================
   PRAXIS GALERIE
   ============================================================ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.gallery__item {
  overflow: hidden;
  aspect-ratio: 3/4;
  border-radius: 4px;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.gallery__item:hover { 
  transform: translateY(-6px); 
  box-shadow: 0 12px 24px rgba(0,0,0,0.15); 
  z-index: 2;
  position: relative;
}
.gallery__item:hover img { transform: scale(1.08); }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact__info h3 {
  font-family: 'Marcellus', Georgia, serif;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 2rem;
  font-size: 1.3rem;
}
.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.contact__item:last-of-type { border-bottom: none; }
.contact__item svg {
  width: 18px; height: 18px;
  color: var(--primary-mid);
  flex-shrink: 0;
  margin-top: 3px;
}
.contact__item-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.contact__item-value {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 300;
  line-height: 1.6;
}
.contact__item-value a {
  color: var(--primary);
  font-weight: 400;
}
.contact__item-value a:hover { color: var(--primary-mid); }
.contact__note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--bg);
  border-left: 3px solid var(--primary-mid);
  font-size: 0.88rem;
  color: var(--text-light);
  font-style: italic;
}

/* Form */
.contact__form-title {
  font-family: 'Marcellus', Georgia, serif;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 1.75rem;
  font-size: 1.3rem;
}
.form__group { margin-bottom: 1.25rem; }
.form__group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.45rem;
}
.form__group input,
.form__group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  background: #FAFAFA;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form__group input:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--primary-mid);
  box-shadow: inset 0 1px 3px rgba(78,121,167,0.2);
  background: var(--white);
}
.form__group textarea { resize: vertical; min-height: 130px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__privacy {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  font-weight: 300;
}
.form__privacy a { color: var(--primary); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  padding: 2.5rem 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.footer__logo img {
  height: 34px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer__logo-name {
  font-family: 'Marcellus', Georgia, serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--white);
  letter-spacing: 0.04em;
}
.footer__logo-sub { font-size: 0.66rem; color: rgba(255,255,255,0.55); }
.footer__links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer__links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  font-weight: 300;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }
.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

/* ============================================================
   FAQ (HÄUFIGE FRAGEN)
   ============================================================ */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 860px;
}
.faq__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq__item:hover {
  border-color: var(--primary-mid);
}
.faq__item.is-open {
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(5, 66, 136, 0.08);
}

.faq__question {
  width: 100%;
  text-align: left;
  padding: 1.5rem 1.75rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: inherit;
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 600;
  transition: background 0.3s ease;
}
.faq__item.is-open .faq__question {
  background: rgba(5, 66, 136, 0.03);
}

.faq__question-text {
  padding-right: 1.5rem;
}

.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--primary-mid);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq__item.is-open .faq__icon {
  transform: rotate(180deg);
  color: var(--primary);
}
/* The vertical line of the plus icon disappears when open */
.faq__icon line:first-child {
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform-origin: center;
}
.faq__item.is-open .faq__icon line:first-child {
  opacity: 0;
  transform: rotate(90deg);
}

/* CSS Grid Transition Trick for smooth height animation */
.faq__answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.faq__item.is-open .faq__answer-wrap {
  grid-template-rows: 1fr;
}
.faq__answer {
  overflow: hidden;
}
.faq__answer p {
  padding: 0 1.75rem 1.75rem;
  margin: 0;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ============================================================
   TERMINBUCHUNG (BOOKLY MOCKUP) - PREMIUM REDESIGN
   ============================================================ */
.booking-mockup {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(5, 66, 136, 0.08), 0 6px 15px rgba(0, 0, 0, 0.04);
  max-width: 760px;
  margin: 2rem auto;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.booking-mockup:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(5, 66, 136, 0.12), 0 8px 20px rgba(0, 0, 0, 0.05);
}

.booking-mockup__steps {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1rem 2rem;
  flex-wrap: wrap;
}

.booking-mockup__step {
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-light);
  background: var(--bg);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.3s ease;
}
.booking-mockup__step.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 12px rgba(5, 66, 136, 0.25);
  transform: translateY(-1px);
}

.booking-mockup__body {
  padding: 1rem 3rem 3rem;
  text-align: center;
}

.booking-mockup__form-group {
  margin-bottom: 2.5rem;
}

.booking-mockup__form-group label {
  display: block;
  font-size: 1.8rem;
  font-family: 'Marcellus', Georgia, serif;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.booking-mockup__subtitle {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.booking-mockup__select-wrap {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.booking-mockup__select {
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  font-family: inherit;
  color: var(--text);
  border: 2px solid var(--border);
  border-radius: 12px;
  background-color: var(--white);
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20stroke%3D%22%23333333%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  background-size: 1.2em auto;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.booking-mockup__select:hover {
  border-color: rgba(5, 66, 136, 0.4);
  box-shadow: 0 8px 20px rgba(5, 66, 136, 0.08);
  transform: translateY(-1px);
}
.booking-mockup__select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(5, 66, 136, 0.1);
  background-color: var(--white);
}

.booking-mockup__actions {
  margin-top: 2.5rem;
}
.booking-mockup__btn {
  padding: 1.1rem 3rem;
  font-size: 1.05rem;
  border-radius: 50px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 975px) {
  .about__grid     { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__photo-wrap { max-width: 360px; margin: 0 auto; }
  .services__grid  { grid-template-columns: 1fr; }
  .contact__grid   { grid-template-columns: 1fr; gap: 3rem; }
  .gallery__grid   { grid-template-columns: repeat(2, 1fr); }
  .form__row       { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__list  { display: none; }
  .hamburger  { display: flex; }
  .section    { padding: 3.5rem 0; }
  .hero { align-items: flex-start; min-height: auto; padding-bottom: 0; }
  .hero__container { flex-direction: column; align-items: center; gap: 0; padding-top: 2rem; }
  .hero__content { padding: 1rem 0; max-width: 100%; text-align: center; }
  .hero__badges { justify-content: center; }
  .hero__actions { justify-content: center; flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; text-align: center; margin-bottom: 0.5rem; }
  
  @keyframes slideUpPhoto {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .hero__photo-wrap { 
    display: block; 
    width: 100%; 
    max-width: 320px; 
    margin: 0 auto; 
    position: relative; 
    z-index: 2; 
    margin-bottom: -1rem; /* don't push it too far down, it was getting cut off */
    animation: slideUpPhoto 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both; /* Cool slide-up animation */
  }
  .hero__photo { height: auto; max-height: 50vh; } /* Scale photo down slightly on mobile to fit nicely */
  
  /* Mobile Booking adjustments */
  .booking-mockup__body { padding: 1.5rem; }
  .booking-mockup__steps { flex-direction: column; gap: 0.5rem; }
  .booking-mockup__form-group label { font-size: 1.4rem; }
  .booking-mockup__btn { width: 100%; padding: 1rem; }
}

@media (max-width: 575px) {
  .gallery__grid   { grid-template-columns: 1fr; }
  .hero__actions   { flex-direction: column; }
  .hero__actions .btn { text-align: center; }
  .footer__inner   { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .services__grid  { gap: 0; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}
.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   BLOG PREMIUM UI
   ============================================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.4s ease;
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(0,0,0,0.03);
  position: relative;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.blog-card__img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9; /* Cinematic ratio */
  overflow: hidden;
  position: relative;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card__img {
  transform: scale(1.05); /* Soft zoom effect requested by user */
}

.blog-card__body {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__meta {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-card__meta::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.blog-card__title {
  font-family: 'Marcellus', Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text);
  transition: color 0.3s ease;
}

.blog-card:hover .blog-card__title {
  color: var(--primary);
}

.blog-card__excerpt {
  color: rgba(0,0,0,0.65);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.blog-card__btn {
  margin-top: auto;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.blog-card:hover .blog-card__btn {
  gap: 0.8rem;
}/* Glassmorphism Header Card */
.article-header-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transform: translateY(50px);
  margin: 0 auto;
  max-width: 800px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 10;
}

.article-meta {
  color: #666;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

/* Typography Enhancements */
.dropcap::first-letter {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-primary);
  float: left;
  line-height: 1;
  padding-right: 12px;
  margin-top: -4px;
}

.pull-quote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
  line-height: 1.4;
  margin: 3rem 0;
  padding: 2rem 2rem 2rem 3rem;
  border-left: 6px solid var(--color-primary);
  background: linear-gradient(90deg, rgba(162, 116, 172, 0.08) 0%, rgba(255,255,255,0) 100%);
  border-radius: 0 12px 12px 0;
  position: relative;
}

/* Author Box */
.author-box {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.author-box__img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-primary-light);
}

.author-box__content h4 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.author-box__content p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .author-box {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  .article-header-card {
    padding: 1.5rem;
    transform: translateY(20px);
    width: 90%;
  }
  .article-header-card h1 {
    font-size: 1.8rem;
    word-break: break-word;
  }
}


