:root {
  --ink: #1b1b1b;
  --blush: #e88e93;
  --soft-pink: #f7e8ea;
  --white: #ffffff;
  --muted: #666666;
  --line: rgba(27, 27, 27, 0.12);
  --section: #fcf9f9;
  --shadow: 0 20px 50px rgba(27, 27, 27, 0.08);
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

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

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

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(232, 142, 147, 0.1), transparent 48%),
    linear-gradient(135deg, #171717 0%, #1f1b1c 55%, #2b2526 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s var(--ease), visibility 0.55s var(--ease);
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-core {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.loader-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 156px;
  height: 156px;
}

.loader-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  animation: loaderAura 8s linear infinite;
}

.loader-mark::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 142, 147, 0.16), transparent 68%);
  animation: loaderPulse 2.6s ease-in-out infinite;
}

.loader-logo {
  width: 132px;
  height: 132px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.24));
  animation: loaderPulse 2.6s ease-in-out infinite;
}

.loader-text {
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.loader-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(23, 23, 23, 0.56), rgba(23, 23, 23, 0.42)),
    url('brideandgroom5group.jpg')
    center/cover no-repeat;
  filter: blur(10px);
  opacity: 0.26;
  transform: scale(1.06);
  animation: doodleDrift 12s ease-in-out infinite;
}

/* Skip rendering below-the-fold sections until they approach the viewport. */
.featured-in,
.about,
.services,
.story-strip-section,
.packages,
.gallery,
.testimonial,
.contact,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 760px;
}

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

.section {
  padding: 90px 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  color: var(--blush);
  font-weight: 700;
  margin-bottom: 16px;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 0.95;
  margin: 0 0 18px;
  font-weight: 700;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
}

h3 {
  font-size: 1.9rem;
}

p {
  margin: 0 0 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  font-size: 0.95rem;
}

.main-nav {
  display: flex;
  gap: 26px;
  font-size: 0.95rem;
  color: #333;
}

.main-nav a {
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--blush);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--blush);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 10px 12px;
  font-size: 1rem;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.35s var(--ease);
}

.icon-btn {
  gap: 10px;
}

.icon-btn svg,
.icon-link svg,
.floating-whatsapp svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(27, 27, 27, 0.12);
}

.btn-primary {
  background: var(--blush);
  color: var(--white);
}

.btn-primary:hover {
  background: #de787f;
}

.btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  background: transparent;
}

.site-header .btn-outline {
  border-color: var(--ink);
  color: var(--ink);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.hero {
  padding: 34px 0 50px;
}

.hero-grid {
  background: linear-gradient(135deg, #111111 0%, #1b1b1b 72%, #2a2a2a 100%);
  color: var(--white);
  padding: 72px 54px 170px;
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: 50px;
  position: relative;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.15s var(--ease), transform 6.5s ease;
  will-change: opacity, transform, clip-path;
}

.hero-slide.is-active,
.hero-slide.is-entering {
  opacity: 0.52;
  transform: scale(1.02);
}

.hero-slide.transition-fade {
  clip-path: inset(0 0 0 0);
}

.hero-slide.transition-wipe-left {
  clip-path: inset(0 100% 0 0);
}

.hero-slide.transition-wipe-left.is-active,
.hero-slide.transition-wipe-left.is-entering {
  clip-path: inset(0 0 0 0);
  transition: opacity 0.95s ease, transform 6.5s ease, clip-path 1.15s var(--ease);
}

.hero-slide.transition-wipe-right {
  clip-path: inset(0 0 0 100%);
}

.hero-slide.transition-wipe-right.is-active,
.hero-slide.transition-wipe-right.is-entering {
  clip-path: inset(0 0 0 0);
  transition: opacity 0.95s ease, transform 6.5s ease, clip-path 1.15s var(--ease);
}

.hero-slide.transition-wipe-left.is-leaving {
  clip-path: inset(0 0 0 100%);
}

.hero-slide.transition-wipe-right.is-leaving {
  clip-path: inset(0 100% 0 0);
}

.hero-slide.is-leaving {
  opacity: 0;
  transition: opacity 0.8s ease, clip-path 1s var(--ease);
}

.hero-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(232,142,147,0.22), transparent 30%);
  pointer-events: none;
}

.hero-copy,
.hero-side {
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-size: clamp(2.65rem, 5.8vw, 4.9rem);
}

.lead {
  max-width: 640px;
  color: rgba(255,255,255,0.82);
  font-size: 0.96rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-notes span {
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}

.hero-side {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 26px;
  width: 100%;
  backdrop-filter: blur(4px);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.35s ease;
}

.hero-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-card {
  animation: floatSoft 6s ease-in-out infinite;
}

.hero .btn-outline {
  border-color: rgba(255,255,255,0.46);
  color: var(--white);
}

.hero .btn-outline:hover {
  background: rgba(255,255,255,0.08);
}

.hero-card strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.hero-card span {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.stats-grid div {
  background: rgba(255,255,255,0.06);
  padding: 16px;
}

.stats-grid b {
  display: block;
  font-size: 1rem;
  margin-bottom: 5px;
}

.gallery-strip {
  margin-top: -112px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.image-card,
.service-image,
.floating-photo,
.masonry-card,
.gallery-box {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.menu-toggle,
.btn,
.hero-card,
.image-card,
.service-card,
.price-card,
.contact-form,
.mini-panel,
.contact-form input,
.contact-form textarea {
  border-radius: 0;
}

.image-card {
  height: 330px;
  box-shadow: var(--shadow);
  transition: transform 0.5s var(--ease), box-shadow 0.45s var(--ease), filter 0.45s ease;
}

.featured {
  transform: translateY(26px);
}

.image-card::after,
.service-image::after,
.floating-photo::after,
.masonry-card::after,
.gallery-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 15%, rgba(255,255,255,0.18) 50%, transparent 85%);
  transform: translateX(-140%);
  opacity: 0;
  transition: transform 0.85s var(--ease), opacity 0.45s ease;
  pointer-events: none;
}

.image-card:hover,
.masonry-card:hover,
.floating-photo:hover,
.gallery-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 55px rgba(27, 27, 27, 0.16);
  filter: saturate(1.06);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 55px rgba(27, 27, 27, 0.14);
}

.image-card:hover::after,
.service-card:hover .service-image::after,
.floating-photo:hover::after,
.masonry-card:hover::after,
.gallery-box:hover::after {
  transform: translateX(140%);
  opacity: 1;
}

.image-one { background-image: linear-gradient(rgba(27,27,27,0.18), rgba(27,27,27,0.18)), url('engamentcouple1.jpg'); }
.image-two { background-image: linear-gradient(rgba(27,27,27,0.12), rgba(27,27,27,0.12)), url('weddingcordinationbanner.jpg'); }
.image-three { background-image: linear-gradient(rgba(27,27,27,0.18), rgba(27,27,27,0.18)), url('eventtable.jpg'); }
.image-four { background-image: linear-gradient(rgba(27,27,27,0.12), rgba(27,27,27,0.12)), url('bride3.jpg'); }

.featured-in {
  padding: 34px 0 18px;
}

.featured-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  text-align: center;
  color: #777;
  font-weight: 700;
}

.featured-row span {
  transition: transform 0.35s var(--ease), color 0.3s ease;
}

.featured-row span:hover {
  transform: translateY(-3px);
  color: var(--blush);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-collage {
  position: relative;
  min-height: 560px;
}

.floating-photo {
  position: absolute;
  box-shadow: var(--shadow);
  transition: transform 0.5s var(--ease), box-shadow 0.45s var(--ease), filter 0.45s ease;
}

.photo-a {
  width: 44%;
  height: 180px;
  left: 0;
  top: 20px;
  background-image: url('brideaccessories.jpg');
}

.photo-b {
  width: 50%;
  height: 260px;
  right: 12%;
  top: 0;
  background-image: url('posterofabout.jpg');
}

.photo-c {
  width: 48%;
  height: 230px;
  right: 0;
  bottom: 70px;
  background-image: url('brideandgroom9.jpg');
}

.mini-panel {
  position: absolute;
  left: 10%;
  bottom: 0;
  width: 52%;
  background: var(--ink);
  color: var(--white);
  padding: 28px;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.mini-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(27, 27, 27, 0.22);
}

.mini-panel strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 10px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 30px;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
}

.check-list li::before {
  content: '•';
  position: absolute;
  left: 6px;
  color: var(--blush);
  font-size: 1.2rem;
}

.split-head,
.contact-grid,
.testimonial-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}

.section-intro {
  max-width: 560px;
  justify-self: end;
  color: var(--muted);
}

.services {
  background: var(--section);
}

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

.service-card {
  background: var(--white);
  padding: 16px 16px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.service-image {
  height: 250px;
  margin-bottom: 22px;
  transition: transform 0.55s var(--ease), filter 0.45s ease;
}

.service-card:hover .service-image {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.service-1 { background-image: url('engamentcouple1-farview.jpg'); }
.service-2 { background-image: url('weddingcordinationbanner.jpg'); }
.service-3 { background-image: url('brideandgroomvenue4.jpg'); }
.service-4 { background-image: url('traditionalweddingscenery2-2.jpg'); }
.service-5 { background-image: url('brideandmaidens.jpg'); }
.service-6 { background-image: url('eventvenue.jpg'); }

.story-strip-section {
  padding: 24px 0 8px;
  background: linear-gradient(180deg, var(--section), #fff);
}

.story-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.story-frame {
  min-height: 240px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), filter 0.35s ease;
}

.story-frame:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(27, 27, 27, 0.14);
  filter: saturate(1.06);
}

.story-1 { background-image: url('brideandgroom3.jpg'); }
.story-2 { background-image: url('eventtable2.jpg'); }
.story-3 { background-image: url('brideandgroom6-birdseyeview.jpg'); }
.story-4 { background-image: url('groomsteam.jpg'); }

.dark-section {
  background: var(--ink);
  color: var(--white);
}

.center-head {
  text-align: center;
  margin-bottom: 36px;
}

.narrow {
  max-width: 760px;
}

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

.price-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 28px;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.35s ease;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.16);
  border-color: rgba(255,255,255,0.22);
}

.featured-price {
  background: var(--blush);
  color: var(--white);
}

.package-name {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
}

.featured-price .package-name {
  color: rgba(255,255,255,0.95);
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 12px 0 18px;
}

.deposit-note {
  margin: 0 0 22px;
  font-weight: 700;
  color: rgba(255,255,255,0.96);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}

.price-card li {
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
  color: rgba(255,255,255,0.86);
}

.featured-price li {
  color: rgba(255,255,255,0.98);
}

.price-card li::before {
  content: '•';
  position: absolute;
  left: 0;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  grid-auto-rows: 180px;
}

.gallery-box {
  min-height: 180px;
  box-shadow: var(--shadow);
  transition: transform 0.65s var(--ease), box-shadow 0.5s var(--ease), filter 0.55s ease, opacity 0.6s ease;
}

.gallery-box.tall {
  grid-row: span 2;
}

.gallery-box.wide {
  grid-column: span 2;
}

.gallery-box.is-switching {
  opacity: 0.05;
  transform: scale(0.985);
  filter: blur(1px);
}

.accent-section {
  background: linear-gradient(180deg, var(--soft-pink), #fff);
}

.testimonial blockquote {
  margin: 0;
}

.testimonial-wrap blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  padding-left: 30px;
  border-left: 3px solid var(--blush);
}

.contact {
  background: #fffdfd;
}

.contact-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.contact-points strong {
  display: block;
  margin-bottom: 4px;
}

.contact-points a {
  transition: color 0.3s ease;
}

.contact-points a:hover,
.social-links a:hover {
  color: var(--blush);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.map-wrap {
  margin-top: 28px;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  box-shadow: var(--shadow);
}

.contact-form {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 26px;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.contact-form:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 55px rgba(27, 27, 27, 0.12);
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(232, 142, 147, 0.65);
  box-shadow: 0 0 0 4px rgba(232, 142, 147, 0.12);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
  margin-bottom: 16px;
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-contact {
  color: var(--muted);
  margin-bottom: 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  color: var(--muted);
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.icon-link:hover {
  transform: translateY(-3px);
  color: var(--blush);
  border-color: rgba(232, 142, 147, 0.45);
  box-shadow: 0 14px 24px rgba(27, 27, 27, 0.08);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.28);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background-color 0.3s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px);
  background: #1ebe5d;
  box-shadow: 0 24px 42px rgba(37, 211, 102, 0.34);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.float-soft {
  animation: floatSoft 6s ease-in-out infinite;
}

@keyframes heroPan {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.14) translate3d(-2%, 1.5%, 0);
  }
}

@keyframes loaderPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes loaderAura {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes doodleDrift {
  0%, 100% {
    transform: scale(1.06);
  }
  50% {
    transform: scale(1.09);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-loader {
    transition-duration: 0.2s;
  }

  .loader-mark::before,
  .loader-mark::after,
  .loader-logo,
  .loader-background,
  .stat-card,
  .hero-slide,
  .reveal,
  .story-frame,
  .image-card,
  .service-card,
  .price-card,
  .gallery-box {
    animation: none !important;
    transition-duration: 0.2s !important;
  }
}

@keyframes floatSoft {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1050px) {
  .hero-grid,
  .about-grid,
  .split-head,
  .contact-grid,
  .testimonial-wrap,
  .services-grid,
  .pricing-grid,
  .featured-row,
  .story-strip {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid {
    padding-bottom: 140px;
  }

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

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

@media (max-width: 820px) {
  .main-nav,
  .desktop-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav.open {
    display: flex;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 18px 20px;
    flex-direction: column;
    gap: 14px;
  }

  .hero-grid,
  .about-grid,
  .split-head,
  .contact-grid,
  .testimonial-wrap,
  .services-grid,
  .pricing-grid,
  .featured-row,
  .masonry-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 56px 24px 110px;
  }

  .hero-notes {
    gap: 8px;
  }

  .contact-links {
    flex-direction: column;
    align-items: stretch;
  }

  .map-wrap iframe {
    height: 320px;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
    margin-top: -74px;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-box,
  .gallery-box.tall,
  .gallery-box.wide {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 240px;
  }

  .featured {
    transform: none;
  }

  .contact-points {
    grid-template-columns: 1fr;
  }

  .image-card {
    height: 260px;
  }

  .about-collage {
    min-height: 500px;
  }

  .photo-a { width: 42%; }
  .photo-b { width: 52%; right: 3%; }
  .photo-c { width: 50%; }
  .mini-panel { width: 65%; left: 0; }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}
