/* ============================================================
   DRITA PHOTOGRAPHY — styles.css
   Raleway — Premium Black & White Wedding Photography
   ============================================================ */

/* ── Variables ── */
:root {
  --ink:        #0a0a0a;
  --charcoal:   #1c1c1c;
  --dark:       #2e2e2e;
  --mid:        #555555;
  --muted:      #888888;
  --border:     #e2e2e2;
  --off-white:  #f5f5f5;
  --cream:      #eeeeee;
  --white:      #ffffff;
  --gold:       #888888;
  --gold-dk:    #555555;
  --wa-green:   #111111;

  --serif:  'Raleway', sans-serif;
  --sans:   'Raleway', sans-serif;
  --lobster: 'Lobster', cursive;
  --gemola: 'Gemola', cursive;
  --cormorant: 'Cormorant', serif;

  --max-w:   1400px;
  --radius:  6px;
  --trans:   0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; height: 100%; }
body { font-family: var(--sans); font-size: 16px; line-height: 1.7; color: var(--dark); background: var(--white); -webkit-font-smoothing: antialiased; min-height: 100vh; display: flex; flex-direction: column; }
img { max-width: 100%; height: auto; display: block; }

/* ── Site Wrapper ── */
.site-wrapper {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.site-footer { margin-top: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }
em, i { font-style: normal; }

/* ── Typography ── */
.t-overline {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.t-h1 { font-family: var(--cormorant); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; line-height: 1.15; color: var(--ink); }
.t-h2 { font-family: var(--cormorant); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.2; color: var(--ink); }
.t-h3 { font-family: var(--cormorant); font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 600; line-height: 1.25; color: var(--ink); }
.t-h4 { font-family: var(--cormorant); font-size: 1.25rem; font-weight: 600; line-height: 1.3; color: var(--ink); }
.t-body { font-size: 1.0625rem; line-height: 1.75; color: var(--mid); }
.t-white { color: var(--white) !important; }
.t-gold  { color: var(--gold)  !important; }
.t-ink   { color: var(--ink)   !important; }
.t-center { text-align: center; }
.t-serif { font-family: var(--cormorant); }

/* ── Layout ── */
.container { width: 100%; padding: 0; }
.section { padding: 100px 0; }
.section--sm { padding: 60px 0; }
.section--lg { padding: 130px 0; }
.section--dark { background: var(--charcoal); }
.section--ink  { background: var(--ink); }
.section--cream { background: var(--cream); }
.section--off-white { background: var(--white); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-header .t-body { margin-top: 16px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 15px 36px; border-radius: var(--radius);
  transition: background var(--trans), color var(--trans), border-color var(--trans), transform var(--trans), box-shadow var(--trans);
  white-space: nowrap; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--ink); color: var(--white); }
.btn--primary:hover { background: var(--dark); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }

.btn--white { background: var(--white); color: var(--ink); }
.btn--white:hover { background: var(--white); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }

.btn--outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--white); }

.btn--outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.6); }
.btn--outline-white:hover { background: var(--white); color: var(--ink); }

.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-dk); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }

.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--wa-green); color: var(--white);
  font-size: 14px; font-weight: 600; padding: 13px 28px; border-radius: 50px;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}
.btn-wa:hover { background: #333333; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-wa svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }



#mobileToggle
{
  display: block;
}
}

/* ── Forms ── */
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--mid); margin-bottom: 8px; }
.form-input,
.form-textarea,
.form-select {
  width: 100%; padding: 13px 16px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: 15px; color: var(--ink);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--ink); box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-error { font-size: 12px; color: #e53e3e; margin-top: 5px; }

/* ── Scroll Reveal ── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left  { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }
.d6 { transition-delay: 0.6s; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  overflow: hidden;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.site-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    108deg,
    transparent 30%,
    rgba(255,255,255,0.02) 42%,
    rgba(255,255,255,0.06) 50%,
    rgba(255,255,255,0.02) 58%,
    transparent 70%
  );
  transform: translateX(-160%);
  animation: glassShine 25s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.header-inner { position: relative; z-index: 1; }
@keyframes glassShine {
  0%   { transform: translateX(-160%); }
  70%  { transform: translateX(320%); }
  100% { transform: translateX(320%); }
}
.site-header--transparent {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 20px 0;
}
.site-header--solid {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px) saturate(120%);
  -webkit-backdrop-filter: blur(4px) saturate(120%);
  padding: 18px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0;
}

/* Logo */
.header-logo { line-height: 1; flex-shrink: 0; display: flex; align-items: center; }
.header-logo-img {
  height: 32px;
  width: auto;
  display: none;
  transition: opacity var(--trans);
}
.header-logo-img--transparent { display: block; }
.site-header--solid .header-logo-img--transparent { display: none; }
.site-header--solid .header-logo-img--solid { display: block; }

/* Right group: nav + WA */
.header-right {
  display: flex; align-items: center; gap: 24px;
}

/* Nav */
.header-nav { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-family: var(--cormorant); font-size: 15px; font-weight: 600; letter-spacing: 1px;
  color: rgba(255,255,255,0.85); padding: 6px 10px 10px;
  transition: color var(--trans); position: relative;
}
/* Active dot */
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 50%;
  transform: translateX(-50%) scale(0);
  width: 4px; height: 4px; border-radius: 50%;
  background: currentColor;
  transition: transform 0.25s ease;
}
.nav-link.active::after { transform: translateX(-50%) scale(1); }
.nav-link:hover { color: var(--white); }
.nav-link.active { color: var(--white); }

/* Solid state nav */
.site-header--solid .nav-link { color: var(--mid); }
.site-header--solid .nav-link:hover { color: var(--ink); }
.site-header--solid .nav-link.active { color: var(--ink); }

/* WhatsApp icon — no background, just icon */
.nav-wa {
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85);
  transition: color var(--trans), transform var(--trans);
  padding: 4px;
}
.nav-wa:hover { color: var(--white); transform: scale(1.12); }
.nav-wa svg { width: 22px; height: 22px; fill: currentColor; display: block; }
.site-header--solid .nav-wa { color: var(--dark); }
.site-header--solid .nav-wa:hover { color: var(--ink); }

/* Hamburger */
.header-hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; align-items: center; justify-content: center;
  background: transparent; border: none;
  cursor: pointer;
  transition: border-color var(--trans);
}
.header-hamburger span {
  display: block; width: 22px; height: 1px; background: var(--white);
  transition: transform 0.3s, opacity 0.3s, background var(--trans), width 0.3s;
}
.header-hamburger span:nth-child(2) { width: 16px; }
.header-hamburger span:nth-child(3) { width: 10px; }
.site-header--solid .header-hamburger span { background: var(--ink); }
.header-hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.header-hamburger.active span:nth-child(2) { opacity: 0; }
.header-hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); width: 22px; }

/* Mobile Nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: 850;
  background: var(--ink); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav-link {
  font-family: var(--cormorant); font-size: 2rem; font-weight: 700;
  color: rgba(255,255,255,0.65); padding: 10px 24px; display: block;
  transition: color var(--trans); text-align: center; letter-spacing: 1px;
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--white); }
.mobile-nav-wa {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--cormorant); color: rgba(255,255,255,0.5); font-size: 15px; font-weight: 600;
  letter-spacing: 1.5px;
  margin-top: 24px; padding: 10px 24px;
  transition: color var(--trans);
}
.mobile-nav-wa:hover { color: var(--white); }
.mobile-nav-wa svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

/* ============================================================
   PAGE BANNER (inner pages)
   ============================================================ */
.page-banner {
  position: relative; height: 420px;
  display: flex; align-items: flex-end; justify-content: flex-start;
  overflow: hidden; background: var(--ink);
}
.page-banner__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.45;
}
.page-banner__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.page-banner__content {
  position: relative; z-index: 2; padding: 0 0 60px;
  width: 100%;
}
.page-banner__breadcrumb {
  font-size: 12px; letter-spacing: 1px; color: rgba(255,255,255,0.5);
  text-transform: uppercase; margin-bottom: 12px;
}
.page-banner__breadcrumb a { color: var(--gold); }
.page-banner__breadcrumb a:hover { color: var(--white); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; height: 100vh;
  overflow: hidden; background: var(--ink);
}
.hero__slider {
  position: absolute; inset: 0;
}
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 2.5s ease-in-out;
  z-index: 0;
}
.hero__slide.active {
  opacity: 1;
  z-index: 1;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transform: scale(1.06);
  transition: transform 7s ease-out;
}
.hero__slide.active .hero__img {
  transform: scale(1);
}
.hero__fade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 45%, transparent 70%);
}
.hero__content {
  position: relative; z-index: 2;
  width: 100%; padding: 0 0 72px;
}
.hero__overline {
  font-size: 11px; font-weight: 500; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 16px;
}
.hero__title {
  font-family: var(--cormorant); font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 32px;
  max-width: 640px;
}
.hero__title strong { font-weight: 700; }
.hero__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 40px; right: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
}
.hero__scroll span {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.hero__scroll-line {
  width: 1px; height: 50px; background: rgba(255,255,255,0.4);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

.hero__heading {
  position: absolute; bottom: 80px; z-index: 2;
  width: 100%; padding: 0;
  left: 50%; transform: translateX(-50%);
  font-family: var(--lobster); font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 400; color: var(--white); line-height: 1.2;
  display: flex; flex-direction: column; gap: 8px;
}
.hero__line {
  display: block; opacity: 0;
  animation: fadeInSlideUp 1s ease-out forwards;
}
.hero__line--1 { animation-delay: 0.2s; }
.hero__line--2 { animation-delay: 0.5s; }
.hero__line--3 { animation-delay: 0.8s; }

@keyframes fadeInSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   ABOUT INTRO (home) — stunning centered layout
   ============================================================ */
.ab-sect {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  background: var(--white);
  padding: 30px 0 70px;
}

/* ── Centered content ── */
.ab-sect__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 1100px;
  position: relative;
}

.ab-sect__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 30px;
}
.ab-sect__tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Headline */
.ab-sect__headline {
  display: block;
  text-align: center;
  line-height: 1.15;
  margin-bottom: 20px;
  margin-top: 15px;
  letter-spacing: -1px;
}
.ab-sect__headline em {
  font-style: normal;
  font-family: var(--cormorant);
  font-size: clamp(1.8rem, 4vw, 3rem);
  display: inline-block;
  color: var(--ink);
  white-space: nowrap;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -1px;
}
.ab-l1 {
  font-weight: 500 !important;
  color: var(--ink) !important;
  letter-spacing: -1px !important;
  margin-right: 8px;
}
.ab-l1::after {
  content: '.';
  margin-left: 2px;
}
.ab-l2 {
  font-weight: 500 !important;
  letter-spacing: -1px !important;
  font-size: clamp(1.8rem, 4vw, 3rem) !important;
  color: var(--ink) !important;
  margin-right: 8px;
}
.ab-l2::after {
  content: '.';
  margin-left: 2px;
}
.ab-l3 {
  font-weight: 500 !important;
  letter-spacing: -1px !important;
  color: var(--ink) !important;
}
.ab-l3::after {
  content: '.';
  margin-left: 2px;
}

/* Body */
.ab-sect__body {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.8;
  color: var(--mid);
  max-width: 620px;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

/* CTA */
.ab-sect__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: gap 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  align-self: flex-start;
}
.ab-sect__cta svg {
  width: 18px; height: 18px; flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.4;
}
.ab-sect__cta:hover { gap: 22px; }
.ab-sect__cta:hover svg { transform: translateX(4px); opacity: 1; }

/* ============================================================
   PORTFOLIO CARDS
   ============================================================ */
.portfolio-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 0 0 60px;
  margin: -40px 0 0;
  background: var(--white);
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-8px);
}

.portfolio-card__image {
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  margin-bottom: 24px;
}

.portfolio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-card__image img {
  transform: scale(1.05);
}

.portfolio-card__content {
  display: flex;
  flex-direction: column;
}

.portfolio-card__title {
  font-family: var(--cormorant);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 12px;
}

.portfolio-card__date {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.portfolio-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
}

.portfolio-card__link:hover {
  gap: 12px;
  color: var(--gold);
}

.portfolio-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.portfolio-card__link:hover svg {
  transform: translateX(3px);
}

/* ============================================================
   PHOTOGRAPHY SERVICES SECTION
   ============================================================ */
.photography-services {
  background: var(--white);
  padding: 0 0 80px;
}

.photography-services__container {
  width: 100%;
}

.photography-services__heading {
  font-family: var(--cormorant);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
  margin-top: 0;
  line-height: 1.2;
  letter-spacing: -1px;
  text-align: left;
}

.photography-services__text {
  font-family: var(--raleway);
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  line-height: 1.8;
  color: var(--charcoal);
  text-align: left;
  margin-bottom: 48px;
}

@media (max-width: 900px) {
  .photography-services { padding: 0 0 60px; }
  .photography-services__heading { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
  .photography-services__text { font-size: clamp(0.85rem, 1.5vw, 0.95rem); }
}

@media (max-width: 640px) {
  .photography-services { padding: 0 0 50px; }
  .photography-services__heading { font-size: clamp(1.5rem, 5vw, 2rem); }
  .photography-services__text { font-size: 0.9rem; }
}

/* ============================================================
   OUR STORY SECTION
   ============================================================ */
.our-story {
  background: var(--white);
  padding: 80px 0;
  width: 100%;
}

.our-story__container {
  display: grid;
  grid-template-columns: 35fr 65fr;
  gap: 80px;
  align-items: stretch;
}

.our-story__image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.our-story__films-banner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.our-story__films-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.our-story__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 2;
  flex: 1;
}

.our-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.our-story:hover .our-story__image img {
  transform: scale(1.08);
}

.our-story__accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 300px;
  height: 300px;
  background: var(--white);
  z-index: 1;
}

.our-story__content {
  display: flex;
  flex-direction: column;
  padding: 0;
  height: 100%;
}

.our-story__overline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  display: inline-block;
}

.our-story__title {
  font-family: var(--cormorant);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -1px;
}

.our-story__divider {
  width: 60px;
  height: 3px;
  background: var(--ink);
  margin-bottom: 24px;
  border-radius: 2px;
}

.our-story__quote {
  font-family: var(--cormorant);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--ink);
  margin-bottom: 28px;
  line-height: 1.4;
  font-weight: 400;
}

.our-story__paragraph {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.9;
  color: var(--mid);
  margin-bottom: 22px;
  letter-spacing: 0.4px;
}

.our-story__paragraph:last-of-type {
  margin-bottom: 40px;
}

.our-story__stats {
  display: flex;
  gap: 50px;
  margin: 40px 0;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.our-story__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.our-story__stat-num {
  font-family: var(--cormorant);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}

.our-story__stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.our-story__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  width: fit-content;
  padding: 14px 24px;
  border: 1.5px solid var(--ink);
  border-radius: 6px;
}

.our-story__link:hover {
  gap: 18px;
  background: var(--ink);
  color: var(--white);
  transform: translateX(4px);
}

.our-story__link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  stroke-width: 1.5;
}

.our-story__link:hover svg {
  transform: translateX(4px);
}

/* ════════════════════════════════════════════════════════════ TESTIMONIALS ════════════════════════════════════════════════════════════ */
.testimonials {
  padding: 80px 0 80px;
  background: var(--white);
  margin-top: -100px;
}

.testimonials__container {
  width: 100%;
  text-align: center;
}

.testimonials__heading {
  font-family: var(--cormorant);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  margin-top: 40px;
  margin-bottom: 48px;
  line-height: 1.2;
}

.testimonials__content {
  display: grid;
  margin-bottom: 48px;
}

.testimonials__item {
  grid-area: 1 / 1;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.testimonials__item.active {
  opacity: 1;
  pointer-events: all;
}

.testimonials__quote {
  font-family: var(--cormorant);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--mid);
  margin-bottom: 28px;
  font-style: italic;
}

.testimonials__author {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.testimonials__author-link {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.3s ease;
}

.testimonials__author-link:hover {
  opacity: 0.8;
}

.testimonials__author-icon {
  font-size: 18px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 5%, #d92e7f 45%, #9b36b7 60%, #515bd4 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonials__author-text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 5%, #d92e7f 45%, #9b36b7 60%, #515bd4 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonials__counter {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 60px;
  text-align: center;
}

.testimonials__controls {
  display: none;
}

.testimonials__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.testimonials__btn:hover {
  background: transparent;
  color: var(--ink);
  transform: scale(1.15);
  opacity: 0.7;
}

.testimonials__btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media(max-width: 768px) {
  .testimonials {
    padding: 25px 0 60px;
  }

  .testimonials__heading {
    margin-bottom: 36px;
  }

  .testimonials__content {
    min-height: 120px;
    margin-bottom: 36px;
  }

  .testimonials__quote {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    margin-bottom: 20px;
  }

  .testimonials__btn {
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
  }
}

@media(max-width: 640px) {
  .testimonials {
    padding: 25px 0 50px;
  }

  .testimonials__heading {
    font-size: clamp(1.6rem, 3vw, 2rem);
    margin-bottom: 32px;
  }

  .testimonials__content {
    margin-bottom: 28px;
  }

  .testimonials__quote {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .testimonials__author-icon {
    width: 18px;
    height: 18px;
  }

  .testimonials__author-text {
    font-size: 12px;
  }

  .testimonials__counter {
    margin-bottom: 20px;
    font-size: 11px;
  }

  .testimonials__btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
  }

  .testimonials__btn svg {
    width: 16px;
    height: 16px;
  }

  .testimonials__counter {
    font-size: 12px;
  }
}

/* ════════════════════════════════════════════════════════════ INSTAGRAM FEED ════════════════════════════════════════════════════════════ */
.instagram-feed {
  padding: 80px 0;
  background: var(--white);
  margin-top: -100px;
}

.instagram-feed__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
}

.instagram-feed__heading-icon {
  width: 28px;
  height: 28px;
}

.instagram-feed__wrapper {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.instagram-feed__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  padding: 0;
}

.instagram-feed__item {
  aspect-ratio: 1;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram-feed__item:hover {
  transform: scale(1.08);
}

.instagram-feed__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.instagram-feed__icon {
  width: 40px;
  height: 40px;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-feed__item:hover .instagram-feed__icon {
  opacity: 1;
}

/* ════════════════════════════════════════════════════════════ TESTIMONIALS ════════════════════════════════════════════════════════════ */
.testimonials {
  padding: 25px 0 60px;
  text-align: center;
}

.testimonials__container {
  max-width: 900px;
  margin: 0 auto;
}

.testimonials__heading {
  font-family: var(--cormorant);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.testimonials__content {
  display: grid;
  margin-bottom: 40px;
}

.testimonials__item {
  grid-area: 1 / 1;
  width: 100%;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.testimonials__item.active {
  opacity: 1;
  pointer-events: auto;
}

.testimonials__text {
  font-family: var(--cormorant);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 16px;
}

.testimonials__cite {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 0.3s ease;
  text-decoration: none;
}

.testimonials__cite:hover {
  opacity: 0.8;
}

.testimonials__ig-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.testimonials__btn {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--mid);
  padding: 8px 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.testimonials__btn:hover {
  color: var(--ink);
}

.testimonials__count {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--muted);
  min-width: 50px;
}

/* ── RIGHT: Crazy milestone grid ── */
/*
   Asymmetric layout:
   [ C1 (tall, 2 rows) ][ C2 ]
   [                   ][ C3 ]
   [ C4 (wide, 2 cols)      ]
*/
.ab-ms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr auto;
}

.ab-ms__cell {
  position: relative;
  overflow: hidden;
  border-left: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── Cell 1: 600+ tall, spans 2 rows ── */
.ab-ms__c1 {
  grid-row: span 2;
  background: var(--white);
}
.ab-ms__c1 .ab-ms__n {
  position: absolute;
  bottom: -0.12em;
  left: -0.04em;
  font-family: var(--cormorant);
  font-size: clamp(8rem, 16vw, 20rem);
  font-weight: 900;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -6px;
  white-space: nowrap;
}
.ab-ms__c1 .ab-ms__n sup {
  font-size: 0.28em;
  vertical-align: super;
  letter-spacing: 0;
}
.ab-ms__c1 .ab-ms__l {
  position: absolute;
  top: 28px;
  right: 24px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
  line-height: 1.6;
}

/* ── Cell 2: 8 — dark accent ── */
.ab-ms__c2 {
  background: var(--ink);
  border-bottom-color: rgba(255,255,255,0.07);
  border-left-color: rgba(255,255,255,0.07);
}
.ab-ms__c2 .ab-ms__n {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%);
  font-family: var(--cormorant);
  font-size: clamp(7rem, 13vw, 17rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.07);
  letter-spacing: -4px;
}
.ab-ms__c2 .ab-ms__val {
  position: absolute;
  bottom: 28px;
  left: 28px;
  font-family: var(--cormorant);
  font-size: clamp(2.2rem, 3.5vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.ab-ms__c2 .ab-ms__l {
  position: absolute;
  top: 28px;
  left: 28px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}

/* ── Cell 3: 12 — warm cream ── */
.ab-ms__c3 {
  background: var(--cream);
}
.ab-ms__c3 .ab-ms__n {
  position: absolute;
  bottom: -0.1em;
  right: -0.04em;
  font-family: var(--cormorant);
  font-size: clamp(7rem, 13vw, 17rem);
  font-weight: 900;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -4px;
}
.ab-ms__c3 .ab-ms__l {
  position: absolute;
  top: 28px;
  left: 24px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Cell 4: 4.9★ — wide, spans 2 cols ── */
.ab-ms__c4 {
  grid-column: span 2;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 44px;
  min-height: 110px;
  border-bottom: none;
}
.ab-ms__c4 .ab-ms__n {
  font-family: var(--cormorant);
  font-size: clamp(3.5rem, 7vw, 8.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -3px;
}
.ab-ms__c4 .ab-ms__n sup {
  font-size: 0.35em;
  vertical-align: super;
  letter-spacing: 0;
  color: var(--muted);
}
.ab-ms__c4 .ab-ms__right {
  text-align: right;
}
.ab-ms__c4 .ab-ms__l {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.6;
  display: block;
}
.ab-ms__c4 .ab-ms__est {
  font-family: var(--cormorant);
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  font-weight: 300;
  color: var(--border);
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  margin-top: 8px;
}

/* shared cell height */
.ab-ms__c1, .ab-ms__c2, .ab-ms__c3 { min-height: 240px; }

/* ── Mobile ── */
@media (max-width: 900px) {
  .ab-sect { padding: 25px 0 55px; }
  .ab-sect__headline { gap: 24px; margin-bottom: 20px; }
  .ab-l2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem) !important; }
  .ab-sect__body { margin-bottom: 25px; }
  .portfolio-cards { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 0 0 50px; margin: -30px auto 0; }
  .portfolio-cards > .portfolio-card:nth-child(n+3) { margin-top: 20px; }
  .portfolio-grid > .portfolio-item:nth-child(n+3) { margin-top: 20px; }
  .our-story { padding: 60px 0; }
  .our-story__container { grid-template-columns: 1fr; gap: 50px; }
  .our-story__accent { width: 200px; height: 200px; bottom: -30px; right: -30px; }
  .our-story__stats { gap: 30px; padding: 24px 0; }
}

/* ============================================================
   SERVICES LIST (home)
   ============================================================ */
.svc-list {
  background: var(--ink); padding: 80px 0 0;
  position: relative;
}
.svc-list__cursor {
  position: fixed; top: 0; left: 0;
  width: 280px; height: 360px;
  pointer-events: none; z-index: 999;
  opacity: 0; transition: opacity 0.3s ease;
  overflow: hidden;
}
.svc-list__cursor.visible { opacity: 1; }
.svc-list__cursor img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(20%); }
.svc-list__top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 0 40px;
}
.svc-list__overline {
  font-size: 10px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.svc-list__all {
  font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); transition: color var(--trans);
}
.svc-list__all:hover { color: var(--white); }
.svc-list__row {
  display: flex; align-items: center;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-decoration: none; position: relative;
  transition: background 0.3s ease;
}
.svc-list__row:last-of-type { border-bottom: 1px solid rgba(255,255,255,0.08); }
.svc-list__row:hover { background: rgba(255,255,255,0.03); }
.svc-list__num {
  font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.25);
  letter-spacing: 1px; width: 48px; flex-shrink: 0;
}
.svc-list__name {
  font-family: var(--cormorant); font-size: clamp(2rem, 4.5vw, 5rem);
  font-weight: 300; color: var(--white); flex: 1;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), letter-spacing 0.4s ease;
}
.svc-list__row:hover .svc-list__name { transform: translateX(12px); letter-spacing: 2px; }
.svc-list__arr {
  font-size: 1.4rem; color: rgba(255,255,255,0.2);
  transition: color 0.3s, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.svc-list__row:hover .svc-list__arr { color: var(--white); transform: translate(6px,-6px); }

/* ============================================================
   PORTFOLIO BENTO (home)
   ============================================================ */
.bento { background: var(--white); padding: 80px 0 0; }
.bento__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 0 32px;
}
.bento__viewall {
  font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); transition: color var(--trans);
}
.bento__viewall:hover { color: var(--ink); }
.bento__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 380px 300px 260px;
  gap: 4px;
}
.bento__item { overflow: hidden; position: relative; }
.bento__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94); }
.bento__item:hover img { transform: scale(1.05); }
.bi-1 { grid-column: span 7; }
.bi-2 { grid-column: span 5; }
.bi-3 { grid-column: span 4; }
.bi-4 { grid-column: span 5; }
.bi-5 { grid-column: span 3; }
.bi-6 { grid-column: span 8; }
.bi-7 { grid-column: span 4; }

/* ============================================================
   PROOF / NUMBERS (home)
   ============================================================ */
.proof {
  background: var(--ink); padding: 90px 0;
  display: flex; align-items: center; justify-content: center;
}
.proof__item {
  text-align: center; flex: 1;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.proof.in-view .proof__item { opacity: 1; transform: translateY(0); }
.proof.in-view .proof__item:nth-child(1) { transition-delay: 0s; }
.proof.in-view .proof__item:nth-child(3) { transition-delay: 0.1s; }
.proof.in-view .proof__item:nth-child(5) { transition-delay: 0.2s; }
.proof.in-view .proof__item:nth-child(7) { transition-delay: 0.3s; }
.proof__num {
  font-family: var(--cormorant); font-size: clamp(3.5rem, 7vw, 8rem);
  font-weight: 300; color: var(--white); line-height: 1;
}
.proof__num span { font-size: 0.5em; vertical-align: super; }
.proof__label {
  font-size: 10px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-top: 12px;
}
.proof__div { width: 1px; height: 80px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* ============================================================
   PULL QUOTE (home)
   ============================================================ */
.pullquote {
  background: var(--white); padding: 120px 0 100px;
}
.pullquote__inner { position: relative; min-height: 180px; }
.pullquote__item {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.pullquote__item.active {
  opacity: 1; transform: translateY(0); pointer-events: auto;
  position: relative;
}
.pullquote__text {
  font-family: var(--cormorant); font-size: clamp(1.6rem, 3.2vw, 3.2rem);
  font-weight: 300; color: var(--ink); line-height: 1.3;
  max-width: 900px; quotes: none;
}
.pullquote__cite {
  display: block; margin-top: 32px;
  font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); font-style: normal;
}
.pullquote__nav {
  display: flex; align-items: center; gap: 32px; margin-top: 56px;
}
.pullquote__btn {
  font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); background: none; border: none; cursor: pointer;
  padding: 0; transition: color var(--trans);
}
.pullquote__btn:hover { color: var(--ink); }
.pullquote__count {
  font-size: 10px; font-weight: 500; letter-spacing: 2px;
  color: var(--border);
}

/* ============================================================
   HOME CTA (home)
   ============================================================ */
.home-cta {
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  background: var(--ink); padding: 16px 0;
  text-decoration: none; overflow: hidden; position: relative;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.home-cta__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
  flex: 1;
  align-items: center;
  text-align: center;
}
.home-cta__text {
  font-family: var(--cormorant); font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 500; color: var(--white); line-height: 1;
}
.home-cta__subtext {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-family: var(--cormorant);
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  font-weight: 500;
  color: var(--gold);
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  width: fit-content;
}
.home-cta__subtext svg {
  width: 16px;
  height: 16px;
}
.home-cta__arr {
  display: none;
}

/* ============================================================
   CANDID PHOTOGRAPHY SECTION
   ============================================================ */
.candid-photography {
  background: var(--white);
  padding: 30px 0 80px;
  margin-top: -100px;
}

.candid-photography__container {
  width: 100%;
}

.candid-photography__heading {
  font-family: var(--cormorant);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -1px;
  text-align: left;
}

.candid-photography__text {
  font-family: var(--raleway);
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  line-height: 1.8;
  color: var(--charcoal);
  text-align: left;
}

@media (max-width: 900px) {
  .candid-photography { padding: 60px 0; }
  .candid-photography__heading { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-top: 50px; }
  .candid-photography__text { font-size: clamp(0.85rem, 1.5vw, 0.95rem); }
}

@media (max-width: 640px) {
  .candid-photography { padding: 50px 0; }
  .candid-photography__heading { font-size: clamp(1.5rem, 5vw, 2rem); margin-top: 50px; }
  .candid-photography__text { font-size: 0.9rem; }
}

@media (max-width: 768px) {
  .svc-list__row { padding: 20px 6vw; }
  .svc-list__name { font-size: 2rem; }
  .bento__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .bi-1,.bi-2,.bi-3,.bi-4,.bi-5,.bi-6,.bi-7 { grid-column: span 1; height: 220px; }
  .bi-1 { grid-column: span 2; height: 280px; }
  .proof { flex-direction: column; gap: 40px; }
  .proof__div { width: 60px; height: 1px; }
  .pullquote { padding: 80px 6vw 70px; }
  .home-cta { padding: 14px 6vw; }
}

/* ============================================================
   ABOUT PREVIEW (home)
   ============================================================ */
.about-prev { padding: 100px 0; }
.about-prev__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-prev__images {
  position: relative; height: 560px;
}
.about-prev__img-main {
  position: absolute; top: 0; left: 0; width: 72%; height: 80%;
  object-fit: cover; border-radius: var(--radius);
}
.about-prev__img-accent {
  position: absolute; bottom: 0; right: 0; width: 52%; height: 55%;
  object-fit: cover; border-radius: var(--radius);
  border: 6px solid var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.about-prev__badge {
  position: absolute; top: 50%; left: 62%; transform: translate(-50%, -50%);
  background: var(--ink); color: var(--white);
  width: 100px; height: 100px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; z-index: 2;
}
.about-prev__badge-num { font-family: var(--cormorant); font-size: 1.8rem; font-weight: 700; line-height: 1; }
.about-prev__badge-txt { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-top: 4px; }
.about-prev__text { }
.about-prev__stats { display: flex; gap: 32px; margin: 40px 0; }
.about-prev__stat-num { font-family: var(--cormorant); font-size: 2.5rem; font-weight: 700; color: var(--ink); line-height: 1; }
.about-prev__stat-lbl { font-size: 12px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.about-prev__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us { padding: 100px 0; background: var(--charcoal); }
.why-us .t-overline { color: var(--gold); }
.why-us .t-h2 { color: var(--white); }
.why-us .section-header .t-body { color: rgba(255,255,255,0.55); }
.why-us__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 64px; }
.why-us__item {
  padding: 48px 36px; border: 1px solid rgba(255,255,255,0.07);
  transition: background var(--trans), border-color var(--trans);
  position: relative; overflow: hidden;
}
.why-us__item::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transition: transform var(--trans);
  transform-origin: left;
}
.why-us__item:hover { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.12); }
.why-us__item:hover::before { transform: scaleX(1); }
.why-us__icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.why-us__icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.why-us__title { font-family: var(--cormorant); font-size: 1.2rem; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.why-us__desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ============================================================
   PORTFOLIO STRIP (home)
   ============================================================ */
.port-strip { padding: 80px 0 60px; background: var(--ink); }
.port-strip__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0; margin-bottom: 36px;
}
.port-strip__head .t-overline { color: rgba(255,255,255,0.4); }
.port-strip__head .t-h2       { color: var(--white); margin-top: 6px; }
.port-strip__nav  { display: flex; gap: 10px; }
.port-strip__arrow {
  width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.2);
  background: transparent; color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background var(--trans), color var(--trans), border-color var(--trans);
}
.port-strip__arrow svg { width: 18px; height: 18px; }
.port-strip__arrow:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.port-strip__viewport {
  overflow-x: auto; overflow-y: hidden;
  cursor: grab; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.port-strip__viewport::-webkit-scrollbar { display: none; }
.port-strip__track {
  display: flex; gap: 20px;
  padding: 0;
  width: max-content;
}
.port-strip__item {
  flex: 0 0 300px; height: 440px;
  position: relative; overflow: hidden; display: block;
}
.port-strip__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.port-strip__item:hover .port-strip__img { transform: scale(1.06); }
.port-strip__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.4s ease;
  display: flex; align-items: flex-end; padding: 24px;
}
.port-strip__item:hover .port-strip__overlay { opacity: 1; }
.port-strip__label {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--white);
}
.port-strip__foot {
  display: flex; justify-content: flex-end;
  padding: 28px 0 0;
}
.port-strip__viewall {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); transition: color var(--trans);
}
.port-strip__viewall svg { width: 18px; height: 18px; transition: transform var(--trans); }
.port-strip__viewall:hover { color: var(--white); }
.port-strip__viewall:hover svg { transform: translateX(4px); }

/* OLD port-prev kept for reference — now unused */
.port-prev__masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 12px; margin-top: 64px;
}
.port-prev__item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  cursor: pointer;
}
.port-prev__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.port-prev__item:nth-child(4) { grid-column: span 2; }
.port-prev__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.port-prev__item:hover .port-prev__img { transform: scale(1.06); }
.port-prev__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity var(--trans);
}
.port-prev__item:hover .port-prev__overlay { opacity: 1; }
.port-prev__label {
  position: absolute; bottom: 16px; left: 16px;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--white); opacity: 0; transform: translateY(8px);
  transition: opacity var(--trans), transform var(--trans);
}
.port-prev__item:hover .port-prev__label { opacity: 1; transform: translateY(0); }
.port-prev__cta { text-align: center; margin-top: 48px; }

/* ============================================================
   TESTIMONIALS (home)
   ============================================================ */
.tm-home { padding: 100px 0; background: var(--white); }
.tm-home__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 64px; }
.tm-card {
  background: var(--white); padding: 40px 32px;
  border-radius: var(--radius); border: 1px solid var(--border);
  transition: box-shadow var(--trans), transform var(--trans);
  position: relative;
}
.tm-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.tm-card__stars { display: flex; gap: 3px; margin-bottom: 16px; }
.tm-card__stars svg { width: 14px; height: 14px; fill: var(--gold); }
.tm-card__quote {
  font-family: var(--cormorant); font-size: 1.05rem;
  color: var(--dark); line-height: 1.7; margin-bottom: 24px;
}
.tm-card__quote::before { content: '\201C'; color: var(--gold); font-size: 2.5rem; line-height: 0; vertical-align: -0.55em; margin-right: 4px; }
.tm-card__author { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--border); padding-top: 20px; }
.tm-card__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.tm-card__name { font-weight: 600; font-size: 14px; color: var(--ink); }
.tm-card__loc { font-size: 12px; color: var(--muted); }

/* ============================================================
   PROCESS (home)
   ============================================================ */
.process { padding: 100px 0; background: var(--ink); }
.process .t-h2 { color: var(--white); }
.process .section-header .t-body { color: rgba(255,255,255,0.5); }
.process__steps {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; margin-top: 64px;
  position: relative;
}
.process__steps::before {
  content: ''; position: absolute; top: 32px; left: 8.33%; right: 8.33%;
  height: 1px; background: rgba(255,255,255,0.15); z-index: 0;
}
.process__step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.process__num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--charcoal); border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--cormorant); font-size: 1.2rem; font-weight: 700; color: var(--gold);
  margin: 0 auto 20px;
}
.process__title { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 8px; letter-spacing: 0.3px; }
.process__desc { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.6; }

/* ============================================================
   INSTAGRAM FEED (home)
   ============================================================ */
.ig-feed { padding: 80px 0; background: var(--white); }
.ig-feed__grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; margin-top: 48px;
}
.ig-feed__item {
  aspect-ratio: 1; overflow: hidden; position: relative; cursor: pointer;
}
.ig-feed__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ig-feed__item:hover img { transform: scale(1.08); }
.ig-feed__item-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--trans);
}
.ig-feed__item:hover .ig-feed__item-overlay { opacity: 1; }
.ig-feed__item-overlay svg { width: 28px; height: 28px; fill: var(--white); }
.ig-feed__handle {
  text-align: center; margin-top: 28px;
  font-size: 14px; color: var(--mid); letter-spacing: 0.5px;
}
.ig-feed__handle a { color: var(--ink); font-weight: 600; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative; padding: 120px 0; overflow: hidden; text-align: center;
}
.cta-band__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.3;
}
.cta-band__overlay {
  position: absolute; inset: 0; background: var(--ink);
  opacity: 0.7;
}
.cta-band__content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; padding: 0; }
.cta-band .t-h2 { color: var(--white); margin-bottom: 16px; }
.cta-band .t-body { color: rgba(255,255,255,0.6); margin-bottom: 40px; }
.cta-band__actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.6); padding: 25px 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name { font-family: var(--cormorant); font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.footer-brand-sub { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
.footer-brand-desc { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.45); max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: border-color var(--trans), color var(--trans), background var(--trans);
}
.footer-social a:hover { border-color: rgba(255,255,255,0.5); color: var(--white); background: rgba(255,255,255,0.08); }
.footer-social svg { width: 15px; height: 15px; fill: currentColor; }
.footer-col-title { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color var(--trans); }
.footer-links a:hover { color: var(--white); }
.footer-hours { font-size: 13px; line-height: 1.9; color: rgba(255,255,255,0.45); }
.footer-contact-info { font-size: 13px; line-height: 1.9; color: rgba(255,255,255,0.45); }
.footer-contact-info a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color var(--trans); }
.footer-contact-info a:hover { color: var(--white); }
.footer-bottom {
  display: flex; align-items: center; justify-content: center;
  padding: 25px 0; font-size: 12px; color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color var(--trans); }
.footer-bottom a:hover { color: var(--white); }
.back-to-top {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); cursor: pointer;
  transition: background var(--trans), color var(--trans);
}
.back-to-top:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.back-to-top svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
  padding: 120px 0 0;
  background: var(--white);
  text-align: center;
}

.about-intro__content {
  max-width: 800px;
  margin: 0 auto;
}

.about-intro__heading {
  font-family: var(--cormorant);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-intro__subtitle {
  font-size: 1.0625rem;
  color: var(--mid);
  line-height: 1.8;
}

.about-hero {
  padding: 50px 0 0;
  background: var(--white);
}

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

.about-hero--member {
  padding: 80px 0 0;
}

.about-hero__grid--reverse {
  direction: rtl;
}

.about-hero__grid--reverse > * {
  direction: ltr;
}

.about-hero__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 20px;
}

.about-hero__headline {
  font-family: var(--cormorant);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.25;
}

.about-hero__tagline {
  font-family: var(--cormorant);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--mid);
  margin-bottom: 36px;
  line-height: 1.25;
}

.about-hero__text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 24px;
}

.about-hero__text em {
  font-style: italic;
}

.about-hero__image {
  align-self: center;
}

.about-hero__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-timeline {
  padding: 40px 0 48px;
  background: var(--white);
}

.timeline-header {
  margin: 0 0 80px;
  text-align: center;
}

.timeline-header__title {
  font-family: var(--cormorant);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.timeline-header__subtitle {
  font-size: 1.0625rem;
  color: var(--mid);
}

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

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-item__dot {
  display: none;
}

.timeline-item__year {
  font-family: var(--cormorant);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.timeline-item__content {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  flex: 1;
}

.timeline-item__title {
  font-family: var(--cormorant);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}

.timeline-item__description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--mid);
}

.timeline-closing {
  margin-top: 36px;
  text-align: center;
  padding: 24px 24px;
  color: var(--mid);
  font-size: 1.0625rem;
  line-height: 2;
}
.timeline-closing strong {
  display: block;
  font-family: var(--cormorant);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--ink);
  margin: 8px 0 20px;
}
.timeline-closing__welcome {
  font-style: italic;
  color: var(--muted);
  font-size: 0.95rem;
}

.about-cta {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}

.about-cta__title {
  font-family: var(--cormorant);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.about-cta__subtitle {
  font-size: 1.0625rem;
  color: var(--mid);
  margin-bottom: 48px;
}

.about-cta__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .about-hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-hero__grid--reverse .about-hero__image {
    order: 2;
  }

  .about-hero__grid--reverse .about-hero__content {
    order: 1;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .timeline-item__year {
    font-size: 1.2rem;
  }

  .timeline-item__content {
    padding: 20px;
  }
}

@media (max-width: 640px) {
  .about-intro {
    padding: 130px 18px 60px;
  }

  .about-hero {
    padding: 40px 0 0;
  }

  .about-timeline {
    padding: 100px 0 0;
  }

  .about-cta {
    padding: 60px 18px;
  }

  .timeline-header__title {
    font-size: clamp(1.6rem, 3vw, 2rem);
    margin-bottom: 12px;
  }

  .timeline-item__year {
    font-size: 1rem;
  }

  .timeline-item__title {
    font-size: 1.1rem;
  }

  .timeline-item__description {
    font-size: 0.9rem;
  }

  .about-cta__buttons {
    flex-direction: column;
  }

  .about-cta__buttons .btn {
    width: 100%;
  }
}

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */
.portfolio-intro {
  padding: 120px 0 80px;
  background: var(--white);
  text-align: center;
}

.portfolio-intro__content {
  max-width: 800px;
  margin: 0 auto;
}

.portfolio-intro__heading {
  font-family: var(--cormorant);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.2;
}

.portfolio-intro__subtitle {
  font-size: 1.0625rem;
  color: var(--mid);
  line-height: 1.8;
}

.portfolio-filters {
  display: none;
}

.filter-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-btn {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 11px 24px;
  border-radius: 50px;
  background: var(--white);
  color: var(--mid);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-btn:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.filter-btn.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.portfolio-grid-section {
  padding: 0 0 80px;
  background: var(--white);
}

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

.portfolio-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.portfolio-item:hover {
  transform: scale(0.97);
}

.portfolio-item__image {
  overflow: hidden;
  aspect-ratio: 2 / 3;
  width: 100%;
}

.portfolio-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-item__image img {
  transform: scale(1.05);
}
.home-page .portfolio-item:hover .portfolio-item__image img {
  transform: scale(1.05);
}

.portfolio-item__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
}

.portfolio-item__title {
  font-family: var(--cormorant);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 600;
  color: var(--ink);
  padding-top: 8px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.portfolio-item__meta {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.portfolio-item__description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--mid);
  margin-bottom: 20px;
}

.portfolio-item__link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--ink);
  text-decoration: none;
  transition: opacity 0.3s ease;
  width: fit-content;
}

.portfolio-item__link:hover {
  opacity: 0.7;
}

.portfolio-cta {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}

.portfolio-cta__title {
  font-family: var(--cormorant);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.portfolio-cta__subtitle {
  font-size: 1.0625rem;
  color: var(--mid);
  margin-bottom: 32px;
}

/* ============================================================
   FILMS PAGE
   ============================================================ */
.films-intro {
  padding: 120px 0 80px;
  background: var(--white);
  text-align: center;
}

.films-intro__content {
  max-width: 800px;
  margin: 0 auto;
}

.films-intro__heading {
  font-family: var(--cormorant);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.2;
}

.films-intro__subtitle {
  font-size: 1.0625rem;
  color: var(--mid);
  line-height: 1.8;
}

.films-featured {
  padding: 0 0 80px;
  background: var(--white);
}

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

.film-card {
  background: var(--white);
  overflow: hidden;
}

.film-card__video {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 16 / 9;
}

.film-card__thumbnail {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.film-card__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.film-card:hover .film-card__thumbnail img {
  transform: none;
}

.film-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all 0.3s ease;
  z-index: 2;
}

.film-card:hover .film-card__play {
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
}

.film-card__play svg {
  width: 24px;
  height: 24px;
}

.film-card__content {
  padding: 0;
}

.film-card__title {
  font-family: var(--cormorant);
  font-size: 1.3rem;
  font-weight: 600;
  padding-top: 15px;
  color: var(--ink);
  margin-bottom: 8px;
}

.film-card__meta {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.film-card__description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--mid);
  margin-bottom: 20px;
}

.film-card__link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--ink);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.film-card__link:hover {
  opacity: 0.7;
}

.films-benefits {
  padding: 80px 0;
  background: var(--white);
}

.films-benefits__title {
  font-family: var(--cormorant);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  margin-bottom: 60px;
}

.films-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.benefit-card {
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius);
  text-align: center;
}

.benefit-card__title {
  font-family: var(--cormorant);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}

.benefit-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--mid);
}

.films-cta {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}

.films-cta__title {
  font-family: var(--cormorant);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.films-cta__subtitle {
  font-size: 1.0625rem;
  color: var(--mid);
  margin-bottom: 32px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-intro {
  padding: 120px 0 80px;
  background: var(--white);
  text-align: center;
}

.contact-intro__content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-intro__heading {
  font-family: var(--cormorant);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-intro__subtitle {
  font-size: 1.0625rem;
  color: var(--mid);
  line-height: 1.8;
}

.contact-form-section {
  padding: 0 0 80px;
  background: var(--white);
  margin-top: -30px;
}

.contact-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.form-errors {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #dc2626;
}

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

.form-row--3cols {
  grid-template-columns: 1fr 1fr 1fr !important;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--ink);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-input,
.form-textarea {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ink);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.btn--full {
  width: 100%;
  justify-content: center;
  padding: 16px;
  margin-top: 12px;
}

@media (max-width: 900px) {
  .form-row {
    gap: 20px;
  }
  .form-row--3cols {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  .contact-intro {
    padding: 130px 18px 60px;
  }

  .contact-form-section {
    padding: 0 18px 60px;
    margin-top: -30px;
  }

  .form-row,
  .form-row--3cols {
    grid-template-columns: 1fr !important;
    gap: 16px;
    margin-bottom: 16px;
  }

  .form-group {
    margin-bottom: 0;
  }
}

@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .portfolio-item {
    grid-template-columns: 1fr;
  }

  .films-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .films-benefits__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .portfolio-intro {
    padding: 130px 18px 60px;
  }

  .portfolio-grid-section {
    padding: 0 0 60px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .portfolio-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .portfolio-item__title {
    padding-top: 12px;
  }

  .portfolio-cta {
    padding: 60px 0;
  }

  .films-intro {
    padding: 130px 0 60px;
  }

  .films-featured {
    padding: 0 0 60px;
  }

  .films-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .films-benefits {
    padding: 60px 0;
  }

  .films-benefits__title {
    font-size: clamp(1.6rem, 3vw, 2rem);
    margin-bottom: 40px;
  }

  .films-cta {
    padding: 60px 0;
  }

  .filter-buttons {
    gap: 8px;
  }

  .filter-btn {
    padding: 9px 16px;
    font-size: 12px;
  }
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 64px; }
.service-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: transform var(--trans), box-shadow var(--trans);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0,0,0,0.1); }
.service-card__img { width: 100%; height: 220px; object-fit: cover; }
.service-card__body { padding: 28px; }
.service-card__title { font-family: var(--cormorant); font-size: 1.2rem; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.service-card__desc { font-size: 14px; color: var(--mid); line-height: 1.7; margin-bottom: 20px; }
.service-card__link { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; }
.service-card__link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; transition: transform var(--trans); }
.service-card:hover .service-card__link svg { transform: translateX(4px); }

.packages-section { padding: 100px 0; background: var(--white); }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 64px; align-items: start; }
.pkg-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px 32px;
  transition: transform var(--trans), box-shadow var(--trans);
}
.pkg-card:hover { transform: translateY(-4px); }
.pkg-card--featured {
  background: var(--ink); border-color: var(--ink);
  position: relative;
}
.pkg-card--featured::before {
  content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--white); color: var(--ink);
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 16px; border-radius: 20px;
}
.pkg-card__name { font-family: var(--cormorant); font-size: 1.4rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.pkg-card--featured .pkg-card__name { color: var(--white); }
.pkg-card__price { font-family: var(--cormorant); font-size: 2.5rem; font-weight: 700; color: var(--gold); margin: 16px 0; }
.pkg-card__price span { font-size: 1rem; font-family: var(--sans); font-weight: 400; color: var(--muted); }
.pkg-card--featured .pkg-card__price span { color: rgba(255,255,255,0.4); }
.pkg-card__features { border-top: 1px solid var(--border); padding-top: 24px; margin: 24px 0; }
.pkg-card--featured .pkg-card__features { border-color: rgba(255,255,255,0.1); }
.pkg-card__feature { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--mid); margin-bottom: 12px; }
.pkg-card--featured .pkg-card__feature { color: rgba(255,255,255,0.65); }
.pkg-card__feature svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   GALLERY / PORTFOLIO PAGE
   ============================================================ */
.gallery-filter { padding: 40px 0 0; text-align: center; }
.filter-tabs { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.filter-tab {
  font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  padding: 9px 20px; border-radius: 50px;
  border: 1.5px solid var(--border); color: var(--mid);
  cursor: pointer; transition: all var(--trans); background: transparent;
}
.filter-tab:hover, .filter-tab.active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.gallery-grid { margin-top: 40px; }
.gallery-masonry {
  columns: 4; column-gap: 12px;
}
.gallery-masonry__item {
  break-inside: avoid; margin-bottom: 12px;
  overflow: hidden; border-radius: var(--radius); cursor: pointer;
  position: relative;
}
.gallery-masonry__item img { width: 100%; display: block; transition: transform 0.5s ease; }
.gallery-masonry__item:hover img { transform: scale(1.05); }
.gallery-masonry__overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--trans);
}
.gallery-masonry__item:hover .gallery-masonry__overlay { opacity: 1; }
.gallery-masonry__overlay svg { width: 32px; height: 32px; stroke: var(--white); fill: none; stroke-width: 1.5; }

/* ============================================================
   TESTIMONIALS PAGE
   ============================================================ */
.google-rating { background: var(--white); padding: 60px 0; text-align: center; }
.google-rating__badge {
  display: inline-flex; align-items: center; gap: 20px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 100px; padding: 18px 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.google-rating__logo { width: 80px; }
.google-rating__score { font-family: var(--cormorant); font-size: 2.5rem; font-weight: 700; color: var(--ink); }
.google-rating__stars { display: flex; gap: 3px; margin: 4px 0; }
.google-rating__stars svg { width: 18px; height: 18px; fill: var(--ink); }
.google-rating__count { font-size: 13px; color: var(--muted); }

.couple-stories { padding: 100px 0; }
.couple-stories__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 64px; }
.couple-story {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  display: grid; grid-template-columns: 200px 1fr;
  transition: transform var(--trans), box-shadow var(--trans);
}
.couple-story:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.couple-story__img { object-fit: cover; width: 100%; height: 100%; }
.couple-story__body { padding: 32px; }
.couple-story__couple { font-family: var(--cormorant); font-size: 1.15rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.couple-story__venue { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.couple-story__quote { font-size: 14px; color: var(--mid); line-height: 1.7; }

.before-after { background: var(--ink); padding: 100px 0; text-align: center; }
.before-after .t-h2 { color: var(--white); }
.before-after__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.ba-card { position: relative; border-radius: var(--radius); overflow: hidden; }
.ba-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.ba-card__label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 40px 16px 16px;
  font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--white);
}

/* ============================================================
   BLOG PAGES
   ============================================================ */
.blogs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; margin-top: 64px; }
.blog-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--trans), box-shadow var(--trans);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0,0,0,0.1); }
.blog-card__img-wrap { overflow: hidden; height: 220px; }
.blog-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card__img { transform: scale(1.06); }
.blog-card__body { padding: 28px; }
.blog-card__meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.blog-card__meta span { display: flex; align-items: center; gap: 4px; }
.blog-card__title { font-family: var(--cormorant); font-size: 1.15rem; font-weight: 600; color: var(--ink); margin-bottom: 10px; line-height: 1.35; }
.blog-card__excerpt { font-size: 14px; color: var(--mid); line-height: 1.7; margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card__link { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; }
.blog-card__link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; transition: transform var(--trans); }
.blog-card:hover .blog-card__link svg { transform: translateX(4px); }

/* Blog show */
.blog-show-layout { display: grid; grid-template-columns: 1fr 320px; gap: 64px; padding: 80px 0; }
.blog-article__hero { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius); margin-bottom: 40px; }
.blog-article__meta { display: flex; align-items: center; gap: 16px; font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.blog-article__title { font-family: var(--cormorant); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--ink); line-height: 1.2; margin-bottom: 24px; }
.blog-article__body { font-size: 1.0625rem; line-height: 1.85; color: var(--dark); }
.blog-article__body h2 { font-family: var(--cormorant); font-size: 1.5rem; font-weight: 700; color: var(--ink); margin: 40px 0 16px; }
.blog-article__body h3 { font-family: var(--cormorant); font-size: 1.2rem; font-weight: 600; color: var(--ink); margin: 32px 0 12px; }
.blog-article__body p { margin-bottom: 20px; }
.blog-article__body img { border-radius: var(--radius); margin: 24px 0; }
.blog-article__body ul, .blog-article__body ol { padding-left: 24px; margin-bottom: 20px; }
.blog-article__body ul li, .blog-article__body ol li { margin-bottom: 8px; }
.blog-article__body blockquote {
  border-left: 3px solid var(--gold); padding: 20px 28px;
  background: var(--white); margin: 28px 0; border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--cormorant); font-size: 1.1rem; color: var(--dark);
}
.blog-article__images { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 28px 0; }
.blog-article__images img { border-radius: var(--radius); width: 100%; height: 240px; object-fit: cover; }
.blog-article__bullets { margin: 28px 0; }
.blog-article__bullet { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: 15px; color: var(--mid); }
.blog-article__bullet svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }

.blog-sidebar { }
.blog-sidebar__widget { margin-bottom: 40px; }
.blog-sidebar__title { font-family: var(--cormorant); font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.related-post { display: flex; gap: 14px; margin-bottom: 20px; }
.related-post__img { width: 72px; height: 72px; border-radius: 4px; object-fit: cover; flex-shrink: 0; }
.related-post__title { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.4; }
.related-post__date { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; padding: 80px 0; align-items: start; }
.contact-info-card {
  background: var(--ink); border-radius: var(--radius); padding: 48px 40px;
  position: sticky; top: 100px;
}
.contact-info-card .t-overline { color: var(--gold); }
.contact-info-card .t-h3 { color: var(--white); margin-bottom: 10px; }
.contact-info-card > .t-body { color: rgba(255,255,255,0.5); margin-bottom: 36px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-info-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.08); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.contact-info-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.contact-info-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-info-value { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.5; }
.contact-info-value a { color: rgba(255,255,255,0.7); transition: color var(--trans); }
.contact-info-value a:hover { color: var(--white); }
.contact-wa-btn {
  display: flex; align-items: center; gap: 12px;
  background: var(--wa-green); color: var(--white);
  font-size: 14px; font-weight: 600; padding: 14px 24px; border-radius: var(--radius);
  margin-top: 32px; transition: background var(--trans), transform var(--trans);
}
.contact-wa-btn:hover { background: #333333; transform: translateY(-2px); }
.contact-wa-btn svg { width: 22px; height: 22px; fill: currentColor; flex-shrink: 0; }

.contact-form-section { }
.contact-form-section .t-h3 { color: var(--ink); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-section { padding: 80px 0; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border); overflow: hidden;
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; font-size: 1.0625rem; font-weight: 600;
  color: var(--ink); cursor: pointer; gap: 16px; width: 100%;
  background: none; text-align: left;
}
.faq-question svg {
  width: 20px; height: 20px; stroke: var(--gold); fill: none;
  stroke-width: 2; flex-shrink: 0;
  transition: transform var(--trans);
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  font-size: 15px; color: var(--mid); line-height: 1.75;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 24px; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content { max-width: 780px; margin: 0 auto; padding: 80px 0; }
.legal-content h2 { font-family: var(--cormorant); font-size: 1.5rem; font-weight: 700; color: var(--ink); margin: 40px 0 16px; }
.legal-content h3 { font-family: var(--cormorant); font-size: 1.1rem; font-weight: 600; color: var(--ink); margin: 28px 0 10px; }
.legal-content p { font-size: 15px; color: var(--mid); line-height: 1.8; margin-bottom: 16px; }
.legal-content ul { padding-left: 24px; margin-bottom: 16px; }
.legal-content ul li { font-size: 15px; color: var(--mid); margin-bottom: 8px; list-style: disc; }
.legal-content .legal-date { font-size: 13px; color: var(--muted); margin-bottom: 40px; display: block; }

/* ============================================================
   ENQUIRY SUCCESS
   ============================================================ */
.success-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 80px 0; }
.success-card { text-align: center; max-width: 520px; padding: 60px 48px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,0.06); }
.success-card__icon { width: 72px; height: 72px; border-radius: 50%; background: var(--white); border: 2px solid var(--ink); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.success-card__icon svg { width: 32px; height: 32px; stroke: var(--gold); fill: none; stroke-width: 2; }
.success-card__ref { font-size: 13px; letter-spacing: 1px; color: var(--muted); margin: 16px 0 28px; }
.success-card__ref strong { color: var(--ink); font-weight: 700; }

/* ============================================================
   WHY COUPLES (testimonials / about)
   ============================================================ */
.why-couples { padding: 100px 0; background: var(--white); }
.why-couples__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 64px; }
.wc-card { padding: 40px 32px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); text-align: center; transition: transform var(--trans), box-shadow var(--trans); }
.wc-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.wc-card__icon { font-size: 2.5rem; margin-bottom: 16px; }
.wc-card__title { font-family: var(--cormorant); font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.wc-card__desc { font-size: 14px; color: var(--mid); line-height: 1.7; }

/* ============================================================
   PRODUCTS (basic public page)
   ============================================================ */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 64px; }
.product-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform var(--trans), box-shadow var(--trans); }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0,0,0,0.1); }
.product-card__img-wrap { position: relative; height: 260px; overflow: hidden; }
.product-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-card__img { transform: scale(1.05); }
.product-card__badge { position: absolute; top: 12px; left: 12px; background: var(--ink); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; }
.product-card__body { padding: 24px; }
.product-card__title { font-family: var(--cormorant); font-size: 1.1rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.product-card__desc { font-size: 13px; color: var(--mid); line-height: 1.65; margin-bottom: 16px; }
.product-card__price { display: flex; align-items: baseline; gap: 10px; }
.product-card__price-active { font-family: var(--cormorant); font-size: 1.4rem; font-weight: 700; color: var(--ink); }
.product-card__price-old { font-size: 0.9rem; color: var(--muted); text-decoration: line-through; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .container { padding: 0 24px; }
  .header-inner { padding: 0 24px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .process__steps::before { display: none; }
  .gallery-masonry { columns: 3; }
  .ig-feed__grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .blog-show-layout { grid-template-columns: 1fr; }
  .blog-sidebar { display: none; }
}

@media (max-width: 900px) {
  .section { padding: 70px 0; }
  .instagram-feed { padding: 60px 0; }
  .instagram-feed__heading { margin-bottom: 36px; }
  .instagram-feed__heading-icon { width: 24px; height: 24px; }
  .instagram-feed__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0; }
  .instagram-feed__icon { width: 32px; height: 32px; }
  .testimonials { padding: 25px 24px 50px; }
  .testimonials__heading { margin-bottom: 6px; }
  .testimonials__content { min-height: 120px; margin-bottom: 32px; }
  .about-prev__grid { grid-template-columns: 1fr; gap: 48px; }
  .about-prev__images { height: 420px; }
  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
  .port-prev__masonry { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .port-prev__item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .port-prev__item:nth-child(4) { grid-column: span 1; }
  .tm-home__grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .blogs-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .about-story__grid { grid-template-columns: 1fr; }
  .founder-section__grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .before-after__grid { grid-template-columns: 1fr; }
  .couple-stories__grid { grid-template-columns: 1fr; }
  .couple-story { grid-template-columns: 1fr; }
  .couple-story__img { height: 280px; width: 100%; }
  .equipment-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .ig-feed__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .section { padding: 50px 0; }
  .container { padding: 0 18px; }
  .header-inner { padding: 0 18px; justify-content: flex-start; }
  .header-logo { margin-right: auto; }
  .header-nav, .nav-actions { display: none; }
  .header-hamburger { display: flex; margin-left: 10px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .why-us__grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .blogs-grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 2.4rem; }
  .hero__heading { font-size: clamp(1.8rem, 4.5vw, 2.6rem); bottom: 60px; padding: 0 18px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .ab-sect { padding: 20px 0 45px; }
  .ab-sect__headline { gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
  .ab-sect__headline em { font-size: clamp(1.8rem, 4vw, 2.8rem); }
  .ab-l2 { font-size: clamp(2rem, 4.5vw, 2.8rem) !important; }
  .ab-sect__body { max-width: 100%; font-size: 0.95rem; margin-bottom: 20px; }
  .portfolio-cards { grid-template-columns: 1fr; gap: 20px; padding: 0 0 40px; margin: -25px auto 0; }
  .portfolio-cards > .portfolio-card:nth-child(n+2) { margin-top: 20px; }
  .portfolio-grid > .portfolio-item:nth-child(n+2) { margin-top: 20px; }
  .our-story { padding: 50px 0; }
  .our-story__container { grid-template-columns: 1fr; gap: 35px; }
  .our-story__title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
  .our-story__quote { font-size: 1.3rem; margin-bottom: 20px; }
  .our-story__paragraph { font-size: 0.95rem; margin-bottom: 16px; }
  .our-story__paragraph:last-of-type { margin-bottom: 28px; }
  .our-story__accent { display: none; }
  .our-story__stats { gap: 20px; padding: 20px 0; }
  .our-story__stat-num { font-size: 1.8rem; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .port-prev__masonry { grid-template-columns: 1fr 1fr; }
  .port-prev__item:nth-child(1) { grid-column: span 2; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 2; }
  .ig-feed__grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-banner { height: 300px; }
  .form-row { grid-template-columns: 1fr; }
  .equipment-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .packages-grid { max-width: 100%; }
  .why-couples__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2rem; }
  .tm-home__grid { max-width: 100%; }
  .about-prev__stats { flex-direction: column; gap: 20px; }
  .port-prev__masonry { grid-template-columns: 1fr; }
  .port-prev__item:nth-child(1) { grid-column: span 1; }
  .gallery-masonry { columns: 1; }
  .ig-feed__grid { grid-template-columns: repeat(2, 1fr); }
  .section-header { margin-bottom: 40px; }
  .process__steps { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .success-card { padding: 40px 28px; }
  .contact-info-card { padding: 32px 24px; }
}


.full-body-optimize
{
  max-width: 1300px !important;
  margin: 0 auto;
  padding-left: 15px !important;
  padding-right: 15px !important;
}


@media(max-width: 992px)
{
  .full-body-optimize
{
  max-width: 100% !important;
  margin: 0 auto;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
}
@media(min-width: 1601px)
{
.hero__heading {
  position: absolute; bottom: 80px; z-index: 2;
  width: 100%; padding: 0;
  left: 50%; transform: translateX(-50%);
  font-family: var(--lobster);font-size: clamp(3.8rem, 9vw, 6.4rem);
  font-weight: 400; color: var(--white); line-height: 1.2;
  display: flex; flex-direction: column; gap: 8px;
}
}

/* ============================================================
   PORTFOLIO DETAIL PAGE
   ============================================================ */

/* ── Hero ── */
.pd-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 440px;
  max-height: 800px;
  overflow: hidden;
  background: var(--ink);
}
.pd-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.pd-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(0,0,0,.35) 100%);
  pointer-events: none;
}

/* ── Meta bar ── */
.pd-meta-bar {
  margin-bottom: 40px;
}
.pd-meta-bar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: flex-start;
  gap: 24px;
  padding: 36px 0 40px;
  border-bottom: 1px solid var(--border);
}
.pd-meta-bar__left {
  display: flex;
  align-items: flex-start;
}
.pd-meta-bar__center {
  text-align: center;
}
.pd-meta-bar__right {
  display: flex;
  justify-content: flex-end;
}
.pd-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--mid);
  text-decoration: none;
  transition: color var(--trans);
  padding-top: 6px;
}
.pd-back-link svg { width: 16px; height: 16px; }
.pd-back-link:hover { color: var(--ink); }
.pd-title {
  font-family: var(--cormorant);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 14px;
}
.pd-meta-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.pd-meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--mid);
}
.pd-meta-tag svg { width: 15px; height: 15px; }
.pd-meta-tag--cat {
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--muted);
}

/* ── Body ── */
.pd-body {
  padding: 60px 0 0;
}
.pd-intro-text {
  margin: 0 0 60px;
  text-align: center;
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--mid);
}

/* ── Group ── */
.pd-group {
  margin-bottom: 80px;
}
.pd-group:last-child {
  margin-bottom: 40px;
}

/* ── Description ── */
.pd-desc {
  margin: 0 0 40px;
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--mid);
  text-align: center;
}
a.pd-desc-link {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--border);
  transition: text-decoration-color var(--trans);
}
a.pd-desc-link:hover {
  text-decoration-color: var(--ink);
}

/* ── Masonry collage ── */
.pd-collage {
  columns: 3;
  column-gap: 12px;
}
.pd-collage-item {
  break-inside: avoid;
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
}
.pd-collage-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.45s ease, filter 0.45s ease;
}
.pd-collage-item:hover .pd-collage-img {
  transform: scale(1.03);
  filter: brightness(0.92);
}

/* ── Lightbox ── */
.pd-lb {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.pd-lb--open {
  opacity: 1;
  pointer-events: all;
}
.pd-lb__stage {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 88vh;
}
.pd-lb__img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  transition: opacity 0.25s ease;
}
.pd-lb__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.12);
  border: none;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.pd-lb__close:hover { background: rgba(255,255,255,.25); }
.pd-lb__close svg { width: 20px; height: 20px; }
.pd-lb__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.12);
  border: none;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
}
.pd-lb__nav:hover { background: rgba(255,255,255,.28); }
.pd-lb__nav svg { width: 22px; height: 22px; }
.pd-lb__nav--prev { left: 20px; }
.pd-lb__nav--next { right: 20px; }
.pd-lb__counter {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(255,255,255,.6);
}
@media (max-width: 768px) {
  .pd-lb { display: none !important; }
}

/* ── You May Also Like ── */
.pd-ymal {
  padding: 80px 0 100px;
  background: var(--off-white);
  margin-top: 60px;
}
.pd-ymal__heading {
  font-family: var(--cormorant);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  margin-bottom: 48px;
}
.pd-ymal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.pd-ymal-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.pd-ymal-card__img {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  margin-bottom: 16px;
}
.pd-ymal-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.pd-ymal-card:hover .pd-ymal-card__img img {
  transform: scale(1.05);
}
.pd-ymal-card__cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.pd-ymal-card__title {
  font-family: var(--cormorant);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 8px;
}
.pd-ymal-card__date {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}
.pd-ymal-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.3px;
  transition: opacity 0.3s;
}
.pd-ymal-card:hover .pd-ymal-card__link {
  opacity: 0.6;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pd-collage { columns: 2; }
  .pd-meta-bar__inner { grid-template-columns: 1fr; text-align: center; }
  .pd-meta-bar__left, .pd-meta-bar__right { justify-content: center; }
  .pd-ymal__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 768px) {
  .pd-hero { height: 55vw; min-height: 280px; }
  .pd-meta-bar { padding: 0 16px; }
  .pd-meta-bar__inner { padding: 28px 0 32px; gap: 16px; }
  .pd-title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .pd-body { padding: 40px 16px 0; }
  .pd-collage { columns: 2; column-gap: 8px; }
  .pd-collage-item { margin-bottom: 8px; }
  .pd-group { margin-bottom: 56px; }
  .pd-lb__nav--prev { left: 8px; }
  .pd-lb__nav--next { right: 8px; }
}
@media (max-width: 480px) {
  .pd-collage { columns: 1; }
  .pd-ymal__grid { grid-template-columns: 1fr; gap: 32px; }
  .pd-ymal { padding: 60px 0 80px; }
}
