:root {
  --bg0: #f6f6fb;
  --bg1: #f3f0ff;
  --bg2: #fff3e7;

  --text: #0f0f14;
  --muted: rgba(15, 15, 20, 0.7);
  --muted2: rgba(15, 15, 20, 0.55);

  --card: rgba(255, 255, 255, 0.72);
  --stroke: rgba(15, 15, 20, 0.1);

  --shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.08);

  --r16: 16px;
  --r20: 20px;
  --r28: 28px;

  --serif: "DM Serif Display", serif;
  --sans: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
html {
  scroll-padding-top: 40px;
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: radial-gradient(
      1200px 800px at 20% 10%,
      var(--bg1),
      transparent 60%
    ),
    radial-gradient(1200px 800px at 80% 20%, var(--bg2), transparent 60%),
    linear-gradient(180deg, var(--bg0), #ffffff 60%);
  overflow-x: hidden;
  padding-top: 72px;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.h1 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.05;
  margin: 12px 0 12px;
}
.h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.1;
  margin: 0 0 10px;
}
.h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 6px;
}
.lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 54ch;
}
.muted {
  color: var(--muted);
}
.muted2 {
  color: var(--muted2);
}
.tiny {
  font-size: 0.85rem;
}
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(15, 15, 20, 0.8);
  padding: 8px 12px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  margin: 0;
}

/* Decorative blobs */
.bg-blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.blob {
  position: absolute;
  width: 520px;
  height: 520px;
  filter: blur(40px);
  opacity: 0.35;
  border-radius: 50%;
}
.b1 {
  left: -160px;
  top: -180px;
  background: #cbb7ff;
}
.b2 {
  right: -180px;
  top: -120px;
  background: #ffd7b3;
}
.b3 {
  left: 20%;
  bottom: -220px;
  background: #b8f0ff;
  opacity: 0.22;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(15, 15, 20, 0.08);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(14px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 16px;
}
.brand-logo {
  width: 90px;
  height: auto;
  display: block;
  padding: 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.brand-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(15, 15, 20, 0.92);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.brand-name {
  letter-spacing: -0.01em;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.55);
}
.nav-link {
  font-size: 0.92rem;
  color: rgba(15, 15, 20, 0.78);
}
.nav-link:hover {
  color: rgba(15, 15, 20, 0.95);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.link.subtle {
  font-size: 0.92rem;
  color: rgba(15, 15, 20, 0.7);
}
.link.subtle:hover {
  color: rgba(15, 15, 20, 0.95);
}

.btn {
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease,
    border-color 0.15s ease;
  user-select: none;
}
.btn:active {
  transform: translateY(1px);
}
.btn-primary {
  background: rgba(15, 15, 20, 0.95);
  color: #fff;
  border-color: rgba(15, 15, 20, 0.95);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
  background: rgba(15, 15, 20, 0.88);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.75);
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.55);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.icon-btn:hover {
  background: rgba(255, 255, 255, 0.8);
}
.icon-btn:active {
  transform: translateY(1px);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(15, 15, 20, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: none;
  place-items: center;
}
.burger i {
  font-size: 1.1rem;
  color: rgba(15, 15, 20, 0.9);
}

.mobile-drawer {
  display: none;
  border-top: 1px solid rgba(15, 15, 20, 0.08);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
}
.drawer-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 14px 0 18px;
  display: grid;
  gap: 10px;
}
.drawer-link {
  padding: 10px 12px;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
}
.drawer-link:hover {
  background: rgba(255, 255, 255, 0.8);
}
.btn.full {
  width: 100%;
}

/* Sections */
.section {
  padding: 80px 0;
  scroll-margin-top: 76px;
}
.section.testimonials {
  padding-top: 96px;
  margin-top: 6px;
}
.section.soft {
  background: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(15, 15, 20, 0.06);
  border-bottom: 1px solid rgba(15, 15, 20, 0.06);
  backdrop-filter: blur(10px);
}
.section-head {
  margin-bottom: 22px;
}
.section-head.row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.carousel-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Hero */
.hero {
  padding: 72px 0 30px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 38px;
  align-items: center;
}
.cta-row {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.stat-row {
  display: flex;
  gap: 18px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.hero-social {
  margin-top: 18px;
}
.hero-social .social-link {
  border-color: rgba(15, 15, 20, 0.75);
  background: rgba(15, 15, 20, 0.08);
  color: rgba(15, 15, 20, 0.9);
}
.hero-social .social-link:hover {
  border-color: rgba(15, 15, 20, 0.9);
  background: rgba(15, 15, 20, 0.14);
}
.stat {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  padding: 12px 14px;
  min-width: 160px;
}
.stat-num {
  display: block;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.stat-label {
  display: block;
  color: var(--muted2);
  font-size: 0.88rem;
  margin-top: 2px;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}
.card-fan {
  position: relative;
  width: 420px;
  height: 420px;
}

.photo-card {
  position: absolute;
  width: 260px;
  height: 320px;
  border-radius: 22px;
  border: 1px solid rgba(15, 15, 20, 0.1);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform-origin: 50% 80%;
  transition: transform 0.25s ease;
}
.photo-card .ph-img {
  width: 100%;
  height: 78%;
  object-fit: cover;
}
.photo-card.p2 .ph-img {
  object-position: center top;
}
.photo-card.p4 .ph-img {
  object-position: center 20%;
}
.ph-meta {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 15, 20, 0.1);
  background: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  font-weight: 600;
}
.meta {
  font-size: 0.82rem;
  color: var(--muted2);
  white-space: nowrap;
}

.photo-card:hover {
  transform: translateY(-4px) rotate(var(--rot)) scale(1.03);
}
.photo-card.is-active {
  z-index: 4;
  transform: translateY(-10px) rotate(var(--rot)) scale(1.05);
}

.p1 {
  left: -6px;
  top: 58px;
  --rot: -12deg;
  transform: rotate(-12deg);
}
.p2 {
  left: 86px;
  top: 20px;
  --rot: 0deg;
  transform: rotate(0deg);
}
.p3 {
  left: 176px;
  top: 78px;
  --rot: 10deg;
  transform: rotate(10deg);
}
.p4 {
  left: 110px;
  top: 90px;
  --rot: -3deg;
  transform: rotate(-3deg) translateY(80px) scale(0.98);
  opacity: 1;
  z-index: 2;
}

.photo-card.main {
  width: 280px;
  height: 340px;
  z-index: 3;
}

/* Hero sparks */
.spark {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(15, 15, 20, 0.08);
  border: 1px solid rgba(15, 15, 20, 0.12);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
}
.s1 {
  left: 10%;
  top: 20%;
}
.s2 {
  right: 12%;
  top: 16%;
}
.s3 {
  right: 18%;
  bottom: 22%;
}

/* Grid cards (testimonials) */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.quote-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}
.stars {
  margin: 0 0 10px;
  font-weight: 700;
}
.quote {
  margin: 0 0 12px;
  color: rgba(15, 15, 20, 0.8);
  line-height: 1.55;
}
.who {
  margin: 0;
  color: var(--muted2);
  font-size: 0.92rem;
}

/* Carousel */
.carousel {
  display: flex;
  gap: 14px;
  padding: 10px 0 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.carousel::-webkit-scrollbar {
  display: none;
}
.service-card {
  min-width: 280px;
  scroll-snap-align: start;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.2s ease;
}
.service-card:hover {
  transform: translateY(-3px);
}
.service-img {
  height: 160px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.service-card[data-key="weddings"] .service-img {
  object-position: center 20%;
}
.service-card[data-key="corporate"] .service-img {
  object-position: center 20%;
}
.service-card[data-key="portraits"] .service-img {
  object-position: center 15%;
}
.service-card[data-key="graduations"] .service-img {
  object-position: center 20%;
}
.service-card[data-key="kids"] .service-img {
  object-position: center 15%;
}
.service-body {
  padding: 14px 14px 16px;
}
.service-title {
  margin: 0 0 6px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.service-desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

/* Split sections */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: center;
}
.split.reverse {
  grid-template-columns: 1fr 1fr;
}
.split.reverse .split-copy {
  order: 2;
}
.split.reverse .split-visual {
  order: 1;
}

.checklist {
  margin: 16px 0 18px;
  padding-left: 18px;
  color: rgba(15, 15, 20, 0.78);
  line-height: 1.7;
}
.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.feature {
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.55);
}

/* Phones */
.phones {
  position: relative;
  min-height: 420px;
}
.phone {
  position: absolute;
  width: 220px;
  height: 420px;
  border-radius: 34px;
  border: 1px solid rgba(15, 15, 20, 0.12);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.phone::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 90px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(15, 15, 20, 0.1);
}
.phone-top {
  display: flex;
  justify-content: space-between;
  padding: 14px 14px 8px;
}
.phone-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 14px;
}
.phone.ph-right .phone-bottom {
  justify-content: flex-end;
}
.dot {
  font-size: 0.7rem;
  color: rgba(15, 15, 20, 0.45);
}
.phone-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-top: 1px solid rgba(15, 15, 20, 0.06);
  border-bottom: 1px solid rgba(15, 15, 20, 0.06);
}
.ph-left {
  left: 14%;
  top: 60px;
  transform: rotate(-10deg);
}
.ph-mid {
  left: 40%;
  top: 20px;
  transform: rotate(0deg);
  z-index: 3;
}
.ph-right {
  left: 64%;
  top: 70px;
  transform: rotate(10deg);
}

.glow {
  box-shadow: 0 18px 60px rgba(170, 145, 255, 0.22),
    0 18px 50px rgba(0, 0, 0, 0.1);
}
.float-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 15, 20, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.14;
  mask-image: radial-gradient(
    closest-side at 55% 45%,
    rgba(0, 0, 0, 1),
    transparent 70%
  );
  pointer-events: none;
}

/* Laptop */
.laptop {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  grid-template-rows: repeat(3, auto);
  gap: 16px;
  align-items: start;
}
.laptop-frame {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(15, 15, 20, 0.12);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  overflow: hidden;
  grid-column: 1;
  grid-row: 1 / 4;
}
.laptop-bar {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(15, 15, 20, 0.08);
}
.laptop-bar .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(15, 15, 20, 0.15);
}
.laptop-bar .d1 {
  background: rgba(255, 90, 90, 0.35);
}
.laptop-bar .d2 {
  background: rgba(255, 200, 80, 0.35);
}
.laptop-bar .d3 {
  background: rgba(110, 255, 170, 0.35);
}
.laptop-screen {
  position: relative;
  height: 310px;
}
.laptop-screen img,
.laptop-screen iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.thumb {
  position: relative;
  width: 100%;
  height: 160px;
  border-radius: 18px;
  border: 1px solid rgba(15, 15, 20, 0.12);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.thumb img,
.thumb iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.t1 {
  grid-column: 2;
  grid-row: 1;
}
.t2 {
  grid-column: 2;
  grid-row: 2;
}
.t3 {
  grid-column: 2;
  grid-row: 3;
}

/* Chips */
.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0 18px;
}
.chip {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.55);
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.15s ease, transform 0.15s ease;
}
.chip:hover {
  background: rgba(255, 255, 255, 0.8);
}
.chip.active {
  background: rgba(15, 15, 20, 0.92);
  color: #fff;
  border-color: rgba(15, 15, 20, 0.92);
}

/* Masonry gallery */
.masonry {
  columns: 3 260px;
  column-gap: 14px;
}
.g-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.6);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transform: translateZ(0);
}
.g-item:hover img {
  transform: scale(1.03);
}
.g-item img {
  width: 100%;
  height: auto;
  transition: transform 0.25s ease;
}
.g-cap {
  padding: 12px 14px 14px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.g-cap strong {
  font-size: 0.95rem;
}
.g-cap span {
  color: var(--muted2);
  font-size: 0.85rem;
}

/* Profile */
.profile-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: center;
}
.profile-media {
  display: grid;
  place-items: center;
}
.profile-ring {
  width: min(320px, 78vw);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 12px;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.95),
      transparent 60%
    ),
    linear-gradient(
      140deg,
      rgba(255, 215, 180, 0.55),
      rgba(190, 215, 255, 0.55)
    );
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 15, 20, 0.08);
}
.profile-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid rgba(255, 255, 255, 0.85);
}
.profile-copy .h2 {
  margin-bottom: 10px;
}
.profile-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 18px;
}
.profile-chip {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 18px;
  align-items: start;
}
.info-card {
  margin-top: 16px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-soft);
}
.info-card .label {
  font-weight: 700;
}
.note {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px dashed rgba(15, 15, 20, 0.2);
  background: rgba(255, 255, 255, 0.5);
}
.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 15, 20, 0.92);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
}

.form-card {
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(15, 15, 20, 0.12);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
  position: relative;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
label {
  display: grid;
  gap: 7px;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 12px;
}
.req {
  color: #c31919;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(15, 15, 20, 0.12);
  background: rgba(255, 255, 255, 0.8);
  padding: 12px 12px;
  font: inherit;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(15, 15, 20, 0.35);
  box-shadow: 0 0 0 4px rgba(170, 145, 255, 0.18);
}
.hint {
  color: var(--muted2);
  font-weight: 500;
}
.error {
  color: #c31919;
  font-weight: 600;
  min-height: 16px;
}
.invalid {
  border-color: rgba(195, 25, 25, 0.55) !important;
  box-shadow: 0 0 0 4px rgba(195, 25, 25, 0.1) !important;
}
.valid {
  border-color: rgba(20, 150, 90, 0.55) !important;
  box-shadow: 0 0 0 4px rgba(20, 150, 90, 0.1) !important;
}
.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
  font-weight: 600;
}
.check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  margin-top: 8px;
  flex-wrap: wrap;
}
.form-success {
  display: none;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(20, 150, 90, 0.25);
  background: rgba(20, 150, 90, 0.08);
}

/* Footer */
.footer {
  padding: 52px 0 18px;
  background: rgba(15, 15, 20, 0.94);
  color: rgba(255, 255, 255, 0.92);
}
.footer .muted {
  color: rgba(255, 255, 255, 0.72);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr;
  gap: 18px;
  align-items: start;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo-footer {
  width: clamp(160px, 20vw, 220px);
  height: auto;
  padding: 6px 10px;
  background: rgba(15, 15, 20, 0.94);
  border-radius: 14px;
}
.footer-brand .brand-mark {
  background: rgba(255, 255, 255, 0.92);
  color: rgba(15, 15, 20, 0.92);
}
.social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.social-link {
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 8px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  opacity: 0.92;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.social-link:hover {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.3);
}
.social-link i {
  font-size: 1.05rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.footer-cols h4,
.newsletter h4 {
  margin: 0 0 10px;
  font-size: 0.95rem;
}
.footer-cols a {
  display: block;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.78);
}
.footer-cols a:hover {
  color: #fff;
}

.newsletter-row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.newsletter-row input {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.newsletter-row input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.newsletter-success {
  display: none;
  margin-top: 10px;
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 20, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 100;
}
.lightbox img {
  max-width: min(980px, 96vw);
  max-height: 78vh;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
}
.lightbox-caption {
  position: absolute;
  bottom: 18px;
  color: rgba(255, 255, 255, 0.84);
  max-width: 980px;
  text-align: center;
  font-size: 0.95rem;
}

/* WhatsApp button */
.whatsapp-btn {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 999px;
  background: #25d366;
  color: #0f0f14;
  font-weight: 800;
  border: 1px solid rgba(15, 15, 20, 0.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  z-index: 90;
}
.whatsapp-btn:hover {
  background: #20bd59;
}
.wa-fa {
  font-size: 1.2rem;
  color: #25d366;
  background: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

/* =========================================================
   RESPONSIVE PACK (drop at bottom of styles.css)
   Targets: tablets (<= 980), iPad (<= 768), phones (<= 560),
            small phones (<= 420), tiny (<= 320)
   ========================================================= */

/* ---------- 1) GLOBAL / LAYOUT ---------- */
@media (max-width: 980px) {
  body {
    padding-top: 68px; /* slightly smaller fixed header space */
  }

  .section {
    padding: 72px 0;
  }

  .container {
    width: min(1200px, calc(100% - 40px));
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 50px;
  }

  .section {
    padding: 48px 0;
  }

  .container {
    width: min(1200px, calc(100% - 32px));
  }

  .lead {
    max-width: 60ch; /* better readability on tablet */
  }
}

@media (max-width: 560px) {
  body {
    padding-top: 62px;
  }

  .section {
    padding: 56px 0;
  }

  .container {
    width: min(1200px, calc(100% - 24px));
  }

  .lead {
    font-size: 1rem;
    line-height: 1.6;
  }
}

@media (max-width: 320px) {
  .container {
    width: min(1200px, calc(100% - 18px));
  }
}

/* ---------- 2) HEADER / NAV ---------- */
@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .burger {
    display: grid;
  }

  .header-inner {
    gap: 12px;
  }

  .brand-logo {
    width: 84px;
  }

  .btn.btn-primary {
    padding: 10px 12px;
    font-size: 0.92rem;
  }

  .mobile-drawer.show {
    display: block;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: 76px;
  }

  .header-actions .btn.btn-primary {
    display: none; /* keeps header clean on small phones */
  }

  .burger {
    width: 42px;
    height: 42px;
    margin-right: 90px;
  }

  /* optional: show Book button inside drawer only */
  .mobile-drawer .btn.full {
    display: inline-flex;
  }
}

@media (max-width: 320px) {
  .burger {
    width: 40px;
    height: 40px;
  }
}

/* ---------- 3) HERO SECTION ---------- */
@media (max-width: 980px) {
  .hero {
    padding: 62px 0 28px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .cta-row {
    gap: 10px;
  }

  .stat-row {
    gap: 12px;
  }

  .stat {
    min-width: 150px;
  }

  /* Cards shrink nicely */
  .hero-visual {
    min-height: 380px;
  }
  .card-fan {
    width: 360px;
    height: 380px;
  }
  .photo-card {
    width: 240px;
    height: 300px;
  }
  .photo-card.main {
    width: 260px;
    height: 320px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 56px 0 26px;
  }

  .stat {
    flex: 1;
    min-width: 0;
  }

  .card-fan {
    width: 340px;
    height: 360px;
  }
  .photo-card {
    width: 230px;
    height: 290px;
  }
  .photo-card.main {
    width: 250px;
    height: 310px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 52px 0 22px;
  }

  .cta-row .btn {
    width: 100%; /* stacked CTA buttons */
    justify-content: center;
  }

  .stat-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
  }

  .card-fan {
    width: 320px;
    height: 350px;
  }

  .photo-card {
    width: 220px;
    height: 280px;
  }

  .photo-card.main {
    width: 240px;
    height: 300px;
  }
}

@media (max-width: 420px) {
  .card-fan {
    width: 290px;
    height: 330px;
  }

  .photo-card {
    width: 205px;
    height: 265px;
  }

  .photo-card.main {
    width: 225px;
    height: 285px;
  }
}

@media (max-width: 320px) {
  .card-fan {
    width: 260px;
    height: 310px;
  }

  .photo-card {
    width: 190px;
    height: 250px;
  }

  .photo-card.main {
    width: 205px;
    height: 265px;
  }
}

/* ---------- 4) TESTIMONIALS GRID ---------- */
@media (max-width: 980px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ---------- 5) SERVICES CAROUSEL ---------- */
@media (max-width: 820px) {
  .carousel {
    padding: 8px 4px 12px;
    gap: 12px;
  }

  .service-card {
    min-width: 240px;
  }

  .carousel-controls .icon-btn {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 560px) {
  .service-card {
    min-width: 220px;
  }

  /* Helps carousel feel nicer on touch */
  .carousel {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 320px) {
  .service-card {
    min-width: 205px;
  }
}

/* ---------- 6) SPLIT SECTIONS (Collections + Pricing) ---------- */
@media (max-width: 980px) {
  .split {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .split.reverse .split-copy {
    order: 1;
  }
  .split.reverse .split-visual {
    order: 2;
  }
}

/* ---------- 7) PHONES OVERLAP (Collections) ---------- */
@media (max-width: 980px) {
  .phones {
    min-height: 520px;
  }

  .phone {
    width: 210px;
    height: 410px;
  }

  .ph-left {
    left: 4%;
    top: 120px;
  }
  .ph-mid {
    left: 30%;
    top: 40px;
  }
  .ph-right {
    left: 56%;
    top: 140px;
  }
}

@media (max-width: 768px) {
  .phones {
    min-height: 580px;
  }

  .ph-left {
    left: 2%;
    top: 150px;
  }
  .ph-mid {
    left: 22%;
    top: 50px;
  }
  .ph-right {
    left: 44%;
    top: 300px;
    transform: rotate(8deg);
  }
}

@media (max-width: 560px) {
  .phones {
    min-height: 640px;
  }

  .phone {
    width: 205px;
    height: 400px;
  }

  .ph-left {
    left: 0%;
    top: 180px;
  }
  .ph-mid {
    left: 14%;
    top: 60px;
  }
  .ph-right {
    left: 28%;
    top: 320px;
  }
}

@media (max-width: 320px) {
  .phone {
    width: 190px;
    height: 385px;
  }

  .ph-mid {
    left: 10%;
  }
  .ph-right {
    left: 20%;
  }
}

/* ---------- 8) LAPTOP + THUMBS (Pricing/Videos) ---------- */
@media (max-width: 980px) {
  .laptop {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .laptop-frame {
    grid-column: auto;
    grid-row: auto;
  }

  .thumb {
    height: 180px;
  }

  .t1,
  .t2,
  .t3 {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .laptop-screen {
    height: 260px;
  }

  .thumb {
    height: 160px;
  }
}

@media (max-width: 320px) {
  .laptop-screen {
    height: 230px;
  }

  .thumb {
    height: 150px;
  }
}

/* ---------- 9) GALLERY (Masonry) ---------- */
@media (max-width: 980px) {
  .masonry {
    columns: 2 240px;
  }
}

@media (max-width: 560px) {
  .masonry {
    columns: 1 260px; /* single column for phones */
  }

  .g-cap {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- 10) PROFILE SECTION ---------- */
@media (max-width: 980px) {
  .profile-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .profile-ring {
    width: min(280px, 80vw);
  }
}

/* ---------- 11) CONTACT SECTION + FORM ---------- */
@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .form-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- 12) FOOTER ---------- */
@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-cols {
    grid-template-columns: 1fr;
  }

  .newsletter-row {
    flex-direction: column;
  }

  .newsletter-row .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- 13) LIGHTBOX ---------- */
@media (max-width: 560px) {
  .lightbox {
    padding: 14px;
  }

  .lightbox img {
    max-height: 72vh;
  }

  .lightbox-caption {
    font-size: 0.9rem;
    padding: 0 10px;
  }
}

/* ---------- 14) WHATSAPP BUTTON ---------- */
@media (max-width: 560px) {
  .whatsapp-btn {
    right: 12px;
    bottom: 12px;
    width: 50px;
    height: 50px;
    margin-right: 80px;
    padding: 0;
    gap: 0;
    justify-content: center;
  }

  .wa-fa {
    width: 26px;
    height: 26px;
    font-size: 1.25rem;
  }

  .wa-text {
    display: none; /* icon-only on small screens */
  }
}

@media (max-width: 320px) {
  .whatsapp-btn {
    right: 10px;
    bottom: 10px;
  }
}
