:root {
  --ink: #2d2035;
  --ink-soft: #5f5365;
  --berry: #c93578;
  --berry-dark: #9c245b;
  --violet: #7557a6;
  --coral: #f46f68;
  --sun: #f4c95d;
  --mint: #55ad9f;
  --cream: #fffaf5;
  --paper: #ffffff;
  --rose-50: #fff0f5;
  --violet-50: #f5f0fb;
  --line: rgba(45, 32, 53, 0.11);
  --shadow-sm: 0 12px 34px rgba(65, 39, 75, 0.09);
  --shadow-lg: 0 28px 75px rgba(65, 39, 75, 0.17);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --max: 1180px;
  --font-display: "Trebuchet MS", "Arial Rounded MT Bold", system-ui, sans-serif;
  --font-body: "Segoe UI", Aptos, system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button, input, textarea, select { font: inherit; }

button { color: inherit; }

h1, h2, h3, h4, p { margin-top: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(3rem, 7vw, 6.6rem); }
h2 { font-size: clamp(2.25rem, 4.6vw, 4.15rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.8rem); }

p { color: var(--ink-soft); }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.section { padding: clamp(76px, 9vw, 132px) 0; }
.section-tight { padding: 74px 0; }
.section-white { background: var(--paper); }
.section-rose { background: var(--rose-50); }
.section-violet { background: var(--violet-50); }
.section-dark { background: var(--ink); color: white; }
.section-dark p { color: rgba(255, 255, 255, 0.72); }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 15px;
  background: var(--ink);
  color: white;
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--berry);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  background: currentColor;
  border-radius: 99px;
}

.display-accent { color: var(--berry); }

.lead {
  max-width: 700px;
  font-size: clamp(1.1rem, 1.7vw, 1.32rem);
  line-height: 1.65;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 46px;
}

.section-heading > div:first-child { max-width: 760px; }
.section-heading h2 { margin-bottom: 14px; }
.section-heading p { margin-bottom: 0; }

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--sun); outline-offset: 3px; }

.btn-primary {
  background: var(--berry);
  color: white;
  box-shadow: 0 12px 30px rgba(201, 53, 120, 0.26);
}

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

.btn-light {
  background: white;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  border-color: rgba(45, 32, 53, 0.2);
  background: rgba(255, 255, 255, 0.75);
}

.btn-outline:hover { border-color: var(--berry); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--berry-dark);
  font-weight: 800;
}

.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(4px); }

/* Header */
.top-note {
  padding: 7px 20px;
  background: var(--ink);
  color: white;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: rgba(255, 250, 245, 0.9);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 28px rgba(45, 32, 53, 0.07);
}

.nav-wrap {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-size: 1.26rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  overflow: hidden;
  border-radius: 50% 50% 46% 54%;
  background: linear-gradient(145deg, var(--berry), var(--violet));
  color: white;
  box-shadow: 0 8px 22px rgba(201, 53, 120, 0.23);
}

.brand-mark svg { width: 23px; height: 23px; }
.brand-name span { color: var(--berry); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav .btn { display: none; }

.site-nav > a:not(.btn) {
  position: relative;
  padding: 11px 0;
  color: #504556;
  font-size: 0.96rem;
  font-weight: 750;
}

.site-nav > a:not(.btn)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--berry);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav > a:not(.btn):hover::after,
.site-nav > a[aria-current="page"]::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  cursor: pointer;
}

.nav-toggle svg { width: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Hero */
.hero-home {
  position: relative;
  min-height: min(800px, calc(100vh - 117px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #f9e8ec;
}

.hero-home::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 250, 245, 0.99) 0%, rgba(255, 250, 245, 0.94) 36%, rgba(255, 250, 245, 0.38) 61%, rgba(255, 250, 245, 0.02) 100%);
  content: "";
}

.hero-home::after {
  position: absolute;
  bottom: -130px;
  left: -80px;
  z-index: 1;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(244, 201, 93, 0.28);
  filter: blur(2px);
  content: "";
}

.hero-home-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  padding: 100px 0 120px;
}

.hero-content h1 { margin-bottom: 24px; }
.hero-content .lead { max-width: 600px; margin-bottom: 33px; }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 9px 14px;
  border: 1px solid rgba(201, 53, 120, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--berry-dark);
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 34px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.mini-dots { display: flex; padding-left: 8px; }
.mini-dots span {
  width: 28px;
  height: 28px;
  margin-left: -8px;
  border: 3px solid var(--cream);
  border-radius: 50%;
}
.mini-dots span:nth-child(1) { background: var(--berry); }
.mini-dots span:nth-child(2) { background: var(--sun); }
.mini-dots span:nth-child(3) { background: var(--mint); }

.hero-float {
  position: absolute;
  right: 5vw;
  bottom: 40px;
  z-index: 4;
  display: flex;
  max-width: 290px;
  align-items: center;
  gap: 13px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.hero-float strong, .hero-float small { display: block; }
.hero-float small { color: var(--ink-soft); }
.float-icon {
  display: grid;
  flex: 0 0 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--rose-50);
  color: var(--berry);
}

.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -1px;
  border-top: 1px solid rgba(45, 32, 53, 0.06);
  border-bottom: 1px solid var(--line);
  background: white;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  min-height: 98px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: left;
}
.trust-item:first-child { border-left: 1px solid var(--line); }
.trust-item svg { flex: 0 0 25px; color: var(--berry); }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.service-image { position: relative; height: 270px; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.service-card:hover .service-image img { transform: scale(1.045); }
.service-image-note {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(34, 17, 34, .82);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .03em;
  backdrop-filter: blur(8px);
}
.service-art {
  position: relative;
  display: grid;
  height: 270px;
  place-items: center;
  align-content: center;
  gap: 15px;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.service-art::before {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 48%);
  content: "";
  transform: rotate(-18deg);
}
.service-art > * { position: relative; z-index: 1; }
.service-art > svg { width: 92px; fill: currentColor; }
.service-art > strong { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: .04em; }
.service-art-horror { background: radial-gradient(circle at 72% 22%, #7d2a62 0, #381433 34%, #140b1d 76%); }
.service-number {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--berry);
  font-family: var(--font-display);
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.service-copy { padding: 28px; }
.service-copy h3 { margin-bottom: 11px; }
.service-copy p { margin-bottom: 19px; font-size: 0.97rem; }

.pill-list { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; list-style: none; }
.pill-list li {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--rose-50);
  color: var(--berry-dark);
  font-size: 0.76rem;
  font-weight: 800;
}

/* About feature */
.split { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(48px, 8vw, 108px); align-items: center; }
.split.reverse { grid-template-columns: 1.05fr 0.95fr; }
.split-copy h2 { margin-bottom: 24px; }
.split-copy .lead { margin-bottom: 20px; }

.photo-stack { position: relative; min-height: 650px; }
.photo-stack .photo-main {
  width: 78%;
  height: 600px;
  object-fit: cover;
  object-position: 65% center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.photo-stack .photo-small {
  position: absolute;
  right: 0;
  bottom: -18px;
  width: 49%;
  height: 300px;
  object-fit: cover;
  border: 10px solid var(--cream);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}
.photo-note {
  position: absolute;
  top: 32px;
  right: -8px;
  max-width: 210px;
  padding: 17px 19px;
  border-radius: 18px;
  background: var(--sun);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  transform: rotate(2deg);
}

.check-list { display: grid; gap: 13px; padding: 0; margin: 30px 0; list-style: none; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 700; }
.check-list svg { flex: 0 0 23px; margin-top: 2px; color: var(--mint); }

/* Gallery */
.gallery-preview {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}
.gallery-preview figure,
.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #e8dfe8;
}
.gallery-preview figure:first-child { grid-row: 1 / 3; }
.gallery-preview figure:last-child { grid-column: 2 / 4; }
.gallery-preview img,
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 420ms ease; }
.gallery-preview figure:hover img,
.gallery-grid figure:hover img { transform: scale(1.045); }
.gallery-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 42px 18px 16px;
  background: linear-gradient(transparent, rgba(45, 32, 53, 0.8));
  color: white;
  font-size: 0.83rem;
  font-weight: 800;
  opacity: 0;
  transition: opacity 180ms ease;
}
figure:hover .gallery-overlay { opacity: 1; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 320px;
  grid-auto-flow: dense;
  gap: 16px;
}
.gallery-grid figure:nth-child(5n + 1) { grid-row: auto; }
.gallery-grid figure:nth-child(7n + 3) { grid-column: auto; }
.gallery-button {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.gallery-button:focus-visible { outline: 4px solid var(--sun); outline-offset: -6px; }

.lightbox {
  width: min(94vw, 1040px);
  max-width: none;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 24px;
  background: transparent;
}
.lightbox::backdrop { background: rgba(31, 20, 38, 0.92); backdrop-filter: blur(8px); }
.lightbox img { max-height: 86vh; width: 100%; object-fit: contain; border-radius: 20px; }
.lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: white;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}

/* Steps and FAQ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; counter-reset: steps; }
.step {
  position: relative;
  padding: 34px 28px 30px;
  border-top: 1px solid var(--line);
  counter-increment: steps;
}
.step::before {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--berry);
  color: white;
  content: "0" counter(steps);
  font-family: var(--font-display);
  font-weight: 800;
}
.step:not(:last-child)::after {
  position: absolute;
  top: 58px;
  right: -30px;
  width: 60px;
  border-top: 2px dashed rgba(201, 53, 120, 0.3);
  content: "";
}
.step h3 { margin-bottom: 10px; }

.faq-list { display: grid; gap: 12px; max-width: 880px; margin-inline: auto; }
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: 0 8px 24px rgba(65, 39, 75, 0.05);
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 25px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 800;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { color: var(--berry); content: "+"; font-size: 1.6rem; line-height: 1; }
.faq-list details[open] summary::after { content: "−"; }
.faq-answer { padding: 0 25px 22px; }
.faq-answer p { margin-bottom: 0; }

/* CTA */
.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  overflow: hidden;
  padding: clamp(40px, 7vw, 78px);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow-lg);
}
.cta-panel::before,
.cta-panel::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.cta-panel::before { top: -130px; right: -90px; width: 340px; height: 340px; background: rgba(201, 53, 120, 0.36); }
.cta-panel::after { bottom: -130px; left: 30%; width: 230px; height: 230px; background: rgba(244, 201, 93, 0.16); }
.cta-panel > * { position: relative; z-index: 2; }
.cta-panel h2 { max-width: 730px; margin-bottom: 14px; }
.cta-panel p { max-width: 650px; margin-bottom: 0; color: rgba(255,255,255,0.72); }

/* Inner pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 12vw, 150px) 0 92px;
  background: linear-gradient(135deg, var(--rose-50), var(--cream) 55%, var(--violet-50));
}
.page-hero::before {
  position: absolute;
  top: -90px;
  right: 6vw;
  width: 330px;
  height: 330px;
  border: 55px solid rgba(201, 53, 120, 0.08);
  border-radius: 48% 52% 64% 36%;
  content: "";
  transform: rotate(18deg);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 980px; margin-bottom: 20px; font-size: clamp(3rem, 6vw, 5.8rem); }
.page-hero .lead { margin-bottom: 0; }

.detail-section { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(42px, 8vw, 100px); align-items: center; }
.detail-section + .detail-section { margin-top: 100px; }
.detail-section:nth-child(even) .detail-media { order: 2; }
.detail-media { position: relative; }
.detail-media img { width: 100%; height: 570px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.detail-media.service-art { height: 570px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.detail-media.service-art > svg { width: 150px; }
.detail-media.service-art > strong { font-size: 1.45rem; }
.detail-badge {
  position: absolute;
  right: -20px;
  bottom: 25px;
  max-width: 230px;
  padding: 17px;
  border-radius: 17px;
  background: white;
  box-shadow: var(--shadow-lg);
  font-weight: 800;
  line-height: 1.3;
}
.detail-copy h2 { margin-bottom: 20px; }
.feature-list { display: grid; gap: 14px; padding: 0; margin: 27px 0 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 32px 1fr; gap: 11px; align-items: start; }
.feature-list strong, .feature-list small { display: block; }
.feature-list small { margin-top: 3px; color: var(--ink-soft); }
.feature-bullet { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; background: var(--rose-50); color: var(--berry); font-weight: 900; }

.event-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.event-card { min-height: 190px; padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: white; }
.event-card svg { width: 31px; margin-bottom: 25px; color: var(--berry); }
.event-card h3 { margin-bottom: 8px; font-size: 1.2rem; }
.event-card p { margin-bottom: 0; font-size: 0.9rem; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: clamp(34px, 7vw, 90px); align-items: start; }
.contact-cards { display: grid; gap: 13px; margin-top: 30px; }
.contact-card { display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: center; padding: 17px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.contact-card-icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; background: var(--rose-50); color: var(--berry); }
.contact-card strong, .contact-card span { display: block; }
.contact-card span { color: var(--ink-soft); font-size: 0.88rem; }
.contact-form { padding: clamp(26px, 5vw, 48px); border: 1px solid var(--line); border-radius: 28px; background: white; box-shadow: var(--shadow-sm); }
.contact-form h2 { margin-bottom: 12px; font-size: clamp(2rem, 4vw, 3rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.88rem; font-weight: 800; }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(45, 32, 53, 0.18);
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink);
  outline: none;
}
.form-field textarea { min-height: 135px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--berry); box-shadow: 0 0 0 3px rgba(201, 53, 120, 0.12); }
.checkbox { display: flex; align-items: flex-start; gap: 10px; margin: 20px 0; font-size: 0.84rem; color: var(--ink-soft); }
.checkbox input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--berry); }
.form-note { margin: 12px 0 0; font-size: 0.8rem; }

/* Legal */
.legal { max-width: 820px; }
.legal h2 { margin: 50px 0 15px; font-size: 2rem; }
.legal h3 { margin: 32px 0 10px; font-size: 1.25rem; }
.legal p, .legal li { color: var(--ink-soft); }
.legal a { color: var(--berry-dark); text-decoration: underline; }
.legal-note { padding: 20px 22px; border-left: 4px solid var(--coral); border-radius: 10px; background: #fff1ed; }

/* Footer */
.site-footer { padding: 80px 0 34px; background: #24192c; color: white; }
.footer-main { display: grid; grid-template-columns: 1.45fr 0.8fr 0.8fr 1fr; gap: 54px; padding-bottom: 56px; }
.footer-brand p { max-width: 360px; margin: 18px 0 0; color: rgba(255,255,255,0.64); font-size: 0.92rem; }
.footer-title { margin-bottom: 18px; color: white; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.68); font-size: 0.92rem; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.11); color: rgba(255,255,255,0.45); font-size: 0.8rem; }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 3px solid white;
  border-radius: 50%;
  background: #25d366;
  color: white;
  box-shadow: 0 16px 34px rgba(25, 87, 52, 0.28);
  transition: transform 180ms ease;
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float svg { width: 26px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    inset: 117px 0 auto;
    display: none;
    max-height: calc(100vh - 117px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    padding: 24px 20px 32px;
    border-top: 1px solid var(--line);
    background: var(--cream);
    box-shadow: var(--shadow-lg);
  }
  .site-nav.open { display: flex; }
  .site-nav .btn { display: inline-flex; margin-top: 10px; }
  .site-nav > a:not(.btn) { padding: 13px 8px; font-size: 1.08rem; }
  .site-nav > a:not(.btn)::after { display: none; }
  .nav-toggle { display: grid; }
  .nav-wrap > .btn { display: none; }
  .hero-home { min-height: 720px; align-items: end; }
  .hero-home::before { background: linear-gradient(90deg, rgba(255,250,245,.98), rgba(255,250,245,.82) 62%, rgba(255,250,245,.1)); }
  .hero-content { max-width: 620px; padding: 100px 0; }
  .hero-float { display: none; }
  .card-grid { grid-template-columns: 1fr; }
  .service-card { display: grid; grid-template-columns: 0.85fr 1.15fr; }
  .service-image { height: 100%; min-height: 340px; }
  .split, .split.reverse, .detail-section, .contact-layout { grid-template-columns: 1fr; }
  .photo-stack { max-width: 720px; }
  .detail-section:nth-child(even) .detail-media { order: initial; }
  .detail-media img { height: 500px; }
  .detail-media.service-art { height: 500px; }
  .event-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-main > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 30px), var(--max)); }
  .top-note { font-size: 0.72rem; }
  .nav-wrap { min-height: 74px; }
  .site-nav { inset-block-start: 108px; max-height: calc(100vh - 108px); }
  .brand { font-size: 1.08rem; }
  .brand-mark { width: 39px; height: 39px; }
  .hero-home { min-height: 730px; align-items: end; }
  .hero-home-bg { object-position: 64% center; }
  .hero-home::before { background: linear-gradient(0deg, rgba(255,250,245,1) 0%, rgba(255,250,245,.97) 50%, rgba(255,250,245,.3) 100%); }
  .hero-content { padding: 270px 0 70px; }
  .hero-content h1 { max-width: 100%; font-size: clamp(2.4rem, 11.5vw, 3.35rem); line-height: 0.99; overflow-wrap: anywhere; }
  .page-hero h1 { font-size: clamp(2.45rem, 10.6vw, 3.2rem); overflow-wrap: anywhere; }
  .hero-kicker { font-size: 0.74rem; }
  .button-row .btn { width: 100%; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { min-height: 86px; padding: 15px 12px; font-size: 0.78rem; }
  .trust-item:nth-child(odd) { border-left: 1px solid var(--line); }
  .trust-item:nth-child(n+3) { border-top: 1px solid var(--line); }
  .section-heading { display: block; }
  .section-heading .text-link { margin-top: 16px; }
  .service-card { display: block; }
  .service-image { min-height: 0; height: 280px; }
  .service-card .service-art { height: 280px; }
  .photo-stack { min-height: 520px; }
  .photo-stack .photo-main { width: 88%; height: 475px; }
  .photo-stack .photo-small { width: 50%; height: 220px; border-width: 7px; }
  .photo-note { top: 22px; right: 0; max-width: 170px; font-size: 0.86rem; }
  .gallery-preview { grid-template-columns: 1fr 1fr; grid-template-rows: 280px 220px 220px; }
  .gallery-preview figure:first-child { grid-column: 1 / 3; grid-row: auto; }
  .gallery-preview figure:last-child { grid-column: auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 230px; }
  .gallery-grid figure:nth-child(7n + 3) { grid-column: auto; }
  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .cta-panel { grid-template-columns: 1fr; gap: 28px; }
  .cta-panel .btn { width: 100%; }
  .detail-section + .detail-section { margin-top: 75px; }
  .detail-media img { height: 440px; }
  .detail-media.service-art { height: 440px; }
  .detail-badge { right: -5px; bottom: -20px; }
  .event-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 38px 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-main > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 430px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 360px; }
  .gallery-grid figure:nth-child(5n + 1) { grid-row: auto; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand, .footer-main > div:last-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
