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

:root {
  --cream: #F4F9FB;
  --cream-dark: #E8F2F6;
  --teal: #5BA2B9;
  --teal-light: #EAF4F8;
  --teal-mid: #7DB8CB;
  --teal-dark: #3D7A8F;
  --teal-deep: #1A3545;
  --gold: #D3A64B;
  --gold-light: #E8C278;
  --gold-pale: #FBF5E0;
  --gold-dark: #A07830;
  --navy: #1E3040;
  --text-muted: #6A8FA0;
  --border: rgba(91,162,185,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.7;
}

.container {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAV ── */
.site-nav {
  background: rgba(91,162,185,0.97);
  border-bottom: 0.5px solid rgba(255,255,255,0.15);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  height: 44px;
  width: auto;
  display: block;
}

.footer-logo-link img {
  height: 56px;
  width: auto;
  display: block;
}

.nav-title {
    font-family: "Bodoni Moda", serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
}

.nav-logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--teal-dark);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-links a:hover { color: #FFDE59; }

.nav-cta {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 8px 20px;
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.nav-cta:hover { background: rgba(255,255,255,0.12); border-color: white; }

.nav-burger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: white;
}

/* ── HERO ── */
.hero-section {
  padding: 60px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-photo {
  border-radius: 4px;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.eyebrow {
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-content h1 {
  font-size: clamp(2.8rem, 4vw, 3.6rem);
  line-height: 1.1;
  color: var(--navy);
  font-weight: 400;
  font-family: 'Bodoni Moda', Georgia, serif;
  letter-spacing: 0.02em;
}

.hero-content h1 span { color: var(--teal); }

.hero-sub {
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--teal);
  color: white;
  border: none;
  padding: 15px 32px;
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--teal-dark); }

.btn-secondary {
  background: transparent;
  color: var(--teal-dark);
  border: 1px solid var(--teal-dark);
  padding: 15px 32px;
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--teal-dark);
  padding: 40px 24px;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat + .stat {
  border-left: 0.5px solid rgba(255,255,255,0.15);
  padding-left: 80px;
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: #FFDE59;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.stat-label {
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section-alt { background: white; padding: 80px 0; }

.section-tag {
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
}

.section-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 32px;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.about-photo-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.about-photo-quote {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(30,48,64,0.90));
  color: white;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
  padding: 48px 28px 28px;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-pullquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--teal-dark);
  border-left: 3px solid var(--gold);
  padding: 12px 20px;
  margin: 8px 0;
  background: var(--gold-pale);
  border-radius: 0 4px 4px 0;
}

.about-more-link {
  display: inline-block;
  margin-top: 8px;
}

.specialty-tag {
  background: var(--teal-light);
  color: var(--teal-dark);
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.service-card {
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  border: 0.5px solid var(--border);
  box-shadow: 0 1px 4px rgba(91,162,185,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(91,162,185,0.14);
}

.service-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-card:hover .service-img img { transform: scale(1.04); }

.service-body { padding: 18px 20px 22px; }

.service-title {
  font-size: 1.15rem;
  color: var(--teal-dark);
  margin-bottom: 8px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
}

.service-desc {
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

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

/* ── TESTIMONIALS SLIDER ── */
.testimonials-slider {
  position: relative;
  margin-top: 40px;
  padding: 0 64px;
}

.testimonials-overflow { overflow: hidden; }

.testimonials-track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3);
  padding: 40px 32px 28px;
  background: white;
  border-radius: 4px;
  box-shadow: 0 2px 20px rgba(91,162,185,0.07), 0 0 0 0.5px rgba(91,162,185,0.1);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 7rem;
  line-height: 1;
  color: var(--gold-light);
  position: absolute;
  top: 4px;
  left: 20px;
  opacity: 0.3;
  pointer-events: none;
}

.testimonial-text {
  font-style: italic;
  line-height: 1.75;
  color: var(--navy);
  margin-bottom: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  position: relative;
  align-self: start;
}

.testimonial-meta {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 0.5px solid var(--border);
}

.testimonial-author {
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-dark);
}

.testimonial-role {
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 0.5px solid var(--border);
  color: var(--teal-dark);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  z-index: 10;
  box-shadow: 0 2px 12px rgba(91,162,185,0.12);
  line-height: 1;
}

.slider-btn:hover { background: var(--teal-light); border-color: var(--teal); }
.slider-btn:disabled { opacity: 0.3; cursor: default; pointer-events: none; }
.slider-btn--prev { left: 8px; }
.slider-btn--next { right: 8px; }

.ai-section {
  background: var(--teal-light);
  padding: 80px 24px;
}

.ai-section-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.ai-intro {
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.ai-chat-box {
  background: white;
  border-radius: 12px;
  padding: 32px;
  margin-top: 40px;
  text-align: left;
  border: 0.5px solid rgba(27,107,123,0.2);
}

.ai-label {
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ai-dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.chat-messages {
  min-height: 200px;
  max-height: 300px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.msg {
  padding: 12px 16px;
  border-radius: 8px;
  max-width: 85%;
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.msg-ai { background: var(--teal-light); color: var(--teal-dark); align-self: flex-start; }
.msg-user { background: var(--teal-deep); color: white; align-self: flex-end; }
.msg-loading { background: var(--teal-light); color: var(--teal); align-self: flex-start; font-style: italic; }

.chat-input-row { display: flex; gap: 8px; }

.chat-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(27,107,123,0.3);
  border-radius: 4px;
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  outline: none;
  background: var(--cream);
}

.chat-input:focus { border-color: var(--teal); }

.chat-send {
  background: var(--teal);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.04em;
}

.chat-send:hover { background: var(--teal-dark); }
.chat-send:disabled { opacity: 0.5; cursor: not-allowed; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-info > p {
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  color: var(--navy);
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 16px; height: 16px; fill: var(--teal); }

.contact-detail a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
}

.contact-detail a:hover {
  color: var(--teal);
  border-color: var(--teal);
}

.contact-map {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
  border: 0.5px solid var(--border);
}

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

.availability-block {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.availability-label {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  white-space: nowrap;
}

.availability-pill {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--teal-dark);
  background: var(--teal-light);
  border: 0.5px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
  white-space: nowrap;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }

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

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235BA2B9' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-field { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal-dark);
}

.form-input {
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  background: white;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus { border-color: var(--teal); }

.form-textarea {
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  background: white;
  outline: none;
  min-height: 130px;
  resize: vertical;
  transition: border-color 0.2s;
}

.form-textarea:focus { border-color: var(--teal); }

.form-submit {
  padding: 16px;
  width: 100%;
  font-size: 13px;
  letter-spacing: 0.1em;
  border-radius: 2px;
  text-align: center;
}

/* ── PHOTO STRIP ── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.photo-strip-item {
  aspect-ratio: 1;
  overflow: hidden;
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.photo-strip-item:hover img { transform: scale(1.06); }
.photo-strip-item { cursor: pointer; }

.photo-strip-item--more { position: relative; }
.photo-strip-more {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30,48,64,0.55);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
}
.photo-strip-more:hover { background: rgba(91,162,185,0.7); }

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,8,4,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

.lightbox.open { display: flex; }

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

.lightbox-img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  animation: lb-fade 0.2s ease;
}

@keyframes lb-fade {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: rgba(255,240,210,0.7);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  z-index: 1001;
}

.lightbox-close:hover { color: #FFDE59; }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,222,89,0.1);
  border: 0.5px solid rgba(255,222,89,0.25);
  color: rgba(255,240,210,0.8);
  font-size: 42px;
  line-height: 1;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
  z-index: 1001;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,222,89,0.2);
  color: #FFDE59;
}

.lightbox-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(255,240,210,0.45);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--teal);
}

.footer-top {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 6px;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #FFDE59;
  letter-spacing: 0.05em;
}

.footer-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  padding-left: 64px;
}

.footer-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
  max-width: 300px;
}

.footer-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFDE59;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: #FFDE59; }

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-contact li {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.footer-contact a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover { color: #FFDE59; }

.footer-langs {
  display: flex;
  gap: 10px;
}

.footer-langs span {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.65);
  border: 0.5px solid rgba(255,255,255,0.3);
  padding: 3px 8px;
  border-radius: 2px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 0.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer-socials a:hover {
  color: white;
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.12);
}

.footer-socials svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  border-top: 0.5px solid rgba(255,255,255,0.2);
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom span {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-inner,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .hero-photo { aspect-ratio: 3/2; max-width: 480px; }
  .hero-photo img { object-position: center 70%; }

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

  .testimonial-card { flex: 0 0 calc((100% - 24px) / 2); }

  .stats-bar { gap: 40px; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-col--brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(91,162,185,0.98);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
    z-index: 99;
  }
  .nav-burger { display: block; }
  .nav-inner { position: relative; padding: 10px 16px; }

  /* Logo: smaller icon + keep text */
  .logo img { height: 28px; }
  .nav-title { font-size: 13px; letter-spacing: 0.03em; white-space: nowrap; }
  /* Hide top-bar CTA — it will live inside the hamburger menu */
  .nav-cta { display: none; }
  /* Book a Session inside mobile menu */
  .nav-cta-mobile { display: list-item !important; }

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

  .testimonial-card { flex: 0 0 100%; }
  .testimonials-slider { padding: 0 52px; }

  /* Fix stats bar overflow */
  .stats-bar { gap: 0; padding: 32px 16px; justify-content: space-around; }
  .stat + .stat { border-left: 0.5px solid rgba(255,255,255,0.2); padding-left: 0; }
  .stat { flex: 1; }
  .stat-num { font-size: 1.6rem; }
  .stat-label { font-size: 10px; letter-spacing: 0.08em; }

  .photo-strip { grid-template-columns: repeat(3, 1fr); }

  .footer-top { grid-template-columns: 1fr; padding: 40px 24px 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }

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

  /* Form mobile fixes */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 24px 20px !important; }
}

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── SPA PAGES ── */
.page { display: none; }
.page.active { display: block; }

/* ── GALLERY ── */
.gallery-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gallery-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('./pictures/gold_in_balance_8.jpeg') center/cover no-repeat;
  opacity: 0.15;
}
.gallery-hero-inner {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
.gallery-hero .section-tag { color: var(--gold); margin-bottom: 14px; }
.gallery-hero h1 {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 400;
  color: white;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.gallery-hero p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 6px;
  background: var(--cream-dark);
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(91,162,185,0);
  transition: background 0.3s;
}
.gallery-item:hover::after { background: rgba(91,162,185,0.12); }