/* -----------------------------
   Base / Reset
----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #0f172a; /* slate-900 */
  background-color: #ffffff;
  background-image:
    radial-gradient(60% 60% at 20% 10%, rgba(255,210,80,0.55), transparent 60%),
    radial-gradient(60% 60% at 80% 20%, rgba(120,220,255,0.50), transparent 55%),
    radial-gradient(70% 70% at 30% 80%, rgba(255,120,200,0.40), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.82)),
    url("pictures/background-small.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  line-height: 1.45;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

:root {
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;

  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 14px 35px rgba(15, 23, 42, 0.18);
  --shadow-xl: 0 18px 45px rgba(15, 23, 42, 0.22);

  --r-2xl: 1rem;      /* 16 */
  --r-3xl: 1.5rem;    /* 24 */
  --r-28: 1.75rem;    /* 28 */
  --r-32: 2rem;       /* 32 */
  --r-40: 2.5rem;     /* 40 */
  --r-22: 1.375rem;   /* 22 */

  --container: 72rem; /* ~1152px */
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .container { padding: 0 1.5rem; }
}

/* -----------------------------
   Sticky nav
----------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.40);
  background: rgba(255,255,255,0.70);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand-badge {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--slate-900);
  color: var(--white);
  box-shadow: var(--shadow-sm);
  flex: 0 0 auto;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .nav-links { display: flex; }
}
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(15,23,42,0.15);
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.85);
  color: var(--slate-900);
  cursor: pointer;
}
.nav-toggle:hover { background: #ffffff; }
.nav-toggle svg { width: 1.25rem; height: 1.25rem; }

.mobile-menu {
  display: none;
  padding: 0.25rem 0 0.9rem;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: var(--r-2xl);
  padding: 0.65rem 0.9rem;
  background: rgba(255,255,255,0.88);
  color: var(--slate-800);
  font-size: 0.9rem;
  font-weight: 700;
}
.mobile-menu a.btn-primary {
  background: var(--slate-900);
  color: var(--white);
  border-color: transparent;
}
@media (min-width: 768px) {
  .nav-toggle,
  .mobile-menu { display: none !important; }
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-700);
}
.nav-links a.btn-primary { color: var(--white); }
.nav-links a:hover { color: var(--slate-900); }
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--r-2xl);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  background: var(--slate-900);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.btn-primary:hover { opacity: 0.92; }

/* -----------------------------
   Hero gradient background
----------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 5rem 0;
  }
}

.pill-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.60);
  background: rgba(255,255,255,0.70);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.pill svg { width: 1rem; height: 1rem; }
.pill span { font-weight: 600; }

h1 {
  margin: 0;
  font-size: 2.25rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: var(--slate-900);
}
@media (min-width: 768px) {
  h1 { font-size: 3rem; }
}

.lead {
  margin-top: 1rem;
  max-width: 38rem;
  font-size: 1rem;
  color: var(--slate-700);
}
@media (min-width: 768px) {
  .lead { font-size: 1.125rem; }
}

.bullet-list { margin: 1.5rem 0 0; padding: 0; list-style: none; }
.bullet-list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-top: 0.5rem;
  color: var(--slate-800);
}
.bullet-list svg { width: 1.25rem; height: 1.25rem; margin-top: 0.125rem; flex: 0 0 auto; }

.hero-cta { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) {
  .hero-cta { flex-direction: row; }
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-2xl);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.70);
  color: var(--slate-900);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: #ffffff; }

.hero-meta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--slate-700);
}
.hero-meta-item { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-meta-item svg { width: 1rem; height: 1rem; }

/* Right hero card */
.hero-right { position: relative; }
.blob {
  position: absolute;
  filter: blur(1px);
  opacity: 0.7;
  border-radius: 2.2rem;
  z-index: 0;
}
.blob.yellow { width: 5rem; height: 5rem; background: rgba(253,224,71,0.70); left: -1.5rem; top: -1.5rem; border-radius: 1.5rem; }
.blob.sky { width: 7rem; height: 7rem; background: rgba(186,230,253,0.70); right: -2rem; top: 2.5rem; }
.blob.pink { width: 7rem; height: 7rem; background: rgba(251,207,232,0.70); left: 2.5rem; bottom: -2.5rem; }

.portrait-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: min(100%, 420px);
  margin: 0 auto;
  aspect-ratio: 45 / 64;
  border-radius: var(--r-40);
  border: 1px solid rgba(255,255,255,0.60);
  background: rgba(255,255,255,0.70);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.portrait-card img { width: 100%; height: 100%; object-fit: cover; }

/* -----------------------------
   Sections
----------------------------- */
section { position: relative; scroll-margin-top: 6rem; }
.section-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: none;
}
.section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

.section-inner { padding: 4rem 0; }
@media (min-width: 768px) { .section-inner { padding: 4rem 0; } }

.section-head { margin-bottom: 2.5rem; }
.section-head h2 {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--slate-900);
}
@media (min-width: 768px) { .section-head h2 { font-size: 2.25rem; } }
.section-head p {
  margin: 0.75rem 0 0;
  max-width: 42rem;
  font-size: 1rem;
  color: var(--slate-800);
}
@media (min-width: 768px) { .section-head p { font-size: 1.125rem; } }

.card {
  border-radius: var(--r-32);
  border: 1px solid rgba(15,23,42,0.10);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.card-pad-6 { padding: 1.5rem; }
.card-pad-8 { padding: 2rem; }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

.service-card-head { display: flex; align-items: center; gap: 0.75rem; }
.icon-chip {
  border-radius: var(--r-2xl);
  padding: 0.5rem;
  background: rgba(186,230,253,0.60);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon-chip svg { width: 1.5rem; height: 1.5rem; }
.h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--slate-900);
  letter-spacing: -0.01em;
}

.checklist { margin: 1rem 0 0; padding: 0; list-style: none; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-700);
}
.checklist svg { width: 1rem; height: 1rem; margin-top: 0.15rem; flex: 0 0 auto; }

.expect-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 768px) { .expect-grid { grid-template-columns: repeat(3, 1fr); } }

.expect {
  border-radius: var(--r-32);
  border: 1px solid rgba(15,23,42,0.10);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
}
.expect.yellow { background: #fefce8; }
.expect.sky { background: #f0f9ff; }
.expect.pink { background: #fdf2f8; }
.expect p { margin: 0; font-size: 0.875rem; font-weight: 700; color: var(--slate-800); }

/* Pricing */
.pricing-note { margin-top: 0.5rem; font-size: 0.875rem; color: var(--slate-700); }
.tier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 768px) { .tier-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .tier-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }

.tier {
  border-radius: var(--r-3xl);
  border: 1px solid rgba(15,23,42,0.10);
  background: var(--slate-50);
  padding: 1.25rem;
  text-align: center;
}
.tier .label { margin: 0; font-size: 0.875rem; font-weight: 700; color: var(--slate-700); }
.tier .value { margin: 0.5rem 0 0; font-size: 1.25rem; font-weight: 900; color: var(--slate-900); }

.divider-dashed {
  margin: 2rem 0;
  border-top: 1px dashed var(--slate-300);
}

/* Gallery */
.gallery-orbit {
  position: relative;
  padding: 1.75rem 1rem;
  overflow: hidden;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  isolation: isolate;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.gallery-orbit::before,
.gallery-orbit::after {
  content: none;
}

.gallery-rail {
  --item-size: 180px;
  --rail-gap: 1rem;
  display: flex;
  align-items: center;
  gap: var(--rail-gap);
  width: max-content;
  animation: gallery-drift 34s linear infinite;
  will-change: transform;
}

@media (min-width: 640px) {
  .gallery-rail {
    --item-size: 220px;
    --rail-gap: 1.2rem;
  }
}

@media (min-width: 1024px) {
  .gallery-rail {
    --item-size: 250px;
    --rail-gap: 1.35rem;
  }
}

.gallery-orbit:hover .gallery-rail {
  animation-play-state: paused;
}

.gallery-orbit-item {
  width: var(--item-size);
  height: var(--item-size);
  border-radius: 999px;
  overflow: hidden;
  flex: 0 0 var(--item-size);
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.22);
  background: transparent;
  transform: rotate(-2deg);
}

.gallery-orbit-item:nth-child(2n) {
  transform: rotate(2deg);
}

.gallery-orbit-item:nth-child(3n) {
  transform: rotate(0deg);
}

.gallery-orbit-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes gallery-drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - (var(--rail-gap) / 2)));
  }
}
/* Calendar embed */
.iframe-wrap {
  overflow: hidden;
  border-radius: var(--r-28);
}
.ratio {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 70%;
  background: var(--slate-50);
}
.ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 1;
}
.calendar-consent {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--slate-50);
  text-align: center;
  z-index: 2;
  pointer-events: auto;
}
.calendar-consent p {
  margin: 0;
  max-width: 32rem;
  font-size: 0.875rem;
  color: var(--slate-700);
}
.is-hidden { display: none !important; }
.calendar-foot {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .calendar-foot {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.calendar-foot p { margin: 0; font-size: 0.875rem; color: var(--slate-700); }

.howto {
  margin-top: 1.5rem;
}
.howto p { margin: 0; }
.howto .h { font-weight: 800; font-size: 0.875rem; color: var(--slate-900); }
.howto .d { margin-top: 0.25rem; font-size: 0.875rem; color: var(--slate-700); }
.howto-actions {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .howto-actions { grid-template-columns: repeat(3, 1fr); } }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-2xl);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  border: 1px solid rgba(15,23,42,0.10);
  background: #fff;
  color: var(--slate-900);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.btn-outline:hover { background: var(--slate-50); }

/* Reviews */
.quote { margin: 0; font-size: 0.875rem; color: var(--slate-700); }
.quote-by { margin: 1rem 0 0; font-size: 0.875rem; font-weight: 900; color: var(--slate-900); }

/* Contact */
.contact-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-photo-wrap {
  display: none;
}

@media (min-width: 768px) {
  .contact-photo-wrap {
    display: flex;
  }
}

.contact-photo-card {
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: var(--r-3xl);
  border: 1px solid rgba(15,23,42,0.10);
  background: var(--slate-50);
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-900);
}
.contact-item:hover { background: var(--slate-100); }
.contact-item svg { width: 1.25rem; height: 1.25rem; }

.info-box {
  margin-top: 1.5rem;
  border-radius: var(--r-3xl);
  background: #f0f9ff;
  padding: 1rem;
}
.info-box .h { margin: 0; font-weight: 800; font-size: 0.875rem; color: var(--slate-900); }
.info-box ul { margin: 0.5rem 0 0; padding: 0; list-style: none; }
.info-box li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-700);
}
.info-box svg { width: 1rem; height: 1rem; margin-top: 0.15rem; }

/* Footer */
footer {
  border-top: 1px solid rgba(15,23,42,0.10);
  background: #fff;
}
.footer-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.5rem 0;
}
@media (min-width: 768px) {
  .footer-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.chip-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--r-2xl);
  border: 1px solid rgba(15,23,42,0.10);
  background: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-900);
}
.chip-link:hover { background: var(--slate-50); }

.seo-tip { margin-top: 1.5rem; font-size: 0.75rem; color: var(--slate-500); }

.gdpr-note {
  margin-top: 1rem;
  border-top: 1px solid rgba(15,23,42,0.10);
  padding-top: 1rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 960px) {
  .gdpr-note {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
.gdpr-col {
  min-width: 0;
}
.gdpr-note p {
  margin: 0.4rem 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--slate-600);
}
.gdpr-note p:first-child { margin-top: 0; }
.gdpr-note ul {
  margin: 0.35rem 0 0.55rem 1rem;
  padding: 0;
}
.gdpr-note li {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--slate-600);
}

/* Floating quick-contact */
.float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .float { display: flex; }
}
.float .btn-primary, .float .btn-outline { box-shadow: var(--shadow-lg); }

/* Simple appear animation (replaces framer motion) */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Small utilities */
.muted { color: var(--slate-700); }
.mt-10 { margin-top: 2.5rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-2 { margin-top: 0.5rem; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.fw-900 { font-weight: 900; }
.fw-800 { font-weight: 800; }
.fw-700 { font-weight: 700; }
.center { text-align: center; }

/* Make scroll-to anchors land nicely under sticky nav */
.scroll-mt { scroll-margin-top: 6rem; }
