@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Inter:wght@300;400&display=swap');

:root {
  --black: #0a0a0a;
  --yellow: #e0d796;
  --beige: #ece7cb;
  --dim: rgba(224,215,150,0.42);
  --mid: rgba(224,215,150,0.65);
  --gold-label: #8a7a40;
  --radius: 10px;
  --ease: cubic-bezier(0.76, 0, 0.24, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { height: 100%; scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--yellow);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  min-height: 100%;
  cursor: none;
}

body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.042;
  pointer-events: none;
}

/* CURSOR */
#cursor-dot {
  position: fixed; width: 6px; height: 6px;
  background: var(--beige); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.08s, opacity 0.3s, width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s;
  will-change: transform;
}
#cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid rgba(236,231,203,0.4); border-radius: 50%;
  pointer-events: none; z-index: 9997;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease), height 0.4s var(--ease), border-color 0.3s, opacity 0.3s;
  will-change: transform;
}
body.cursor-hover #cursor-dot { width: 10px; height: 10px; background: var(--yellow); }
body.cursor-hover #cursor-ring { width: 56px; height: 56px; border-color: rgba(236,231,203,0.7); }
body.cursor-click #cursor-dot { width: 4px; height: 4px; }
body.cursor-click #cursor-ring { width: 28px; height: 28px; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 52px; height: 80px;
}
.logo { cursor: none; display: flex; align-items: center; height: 32px; flex-shrink: 0; text-decoration: none; }
.logo img { height: 26px; width: auto; display: block; transition: opacity 0.3s; }
.logo:hover img { opacity: 0.8; }

.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-size: 11px; font-weight: 300; letter-spacing: 0.16em;
  color: var(--yellow); text-decoration: none; opacity: 0.55;
  transition: opacity 0.25s; text-transform: lowercase; cursor: none; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 1px;
  background: var(--beige); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { opacity: 1; }
.nav-links a.active::after { transform: scaleX(1); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: none; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 1px; background: var(--yellow); transition: all 0.35s var(--ease); }

.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--black); z-index: 600;
  flex-direction: column; align-items: center; justify-content: center; gap: 36px;
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.mobile-menu.open { display: flex; opacity: 1; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif; font-size: 36px; font-style: italic; font-weight: 300;
  letter-spacing: 0.04em; color: var(--yellow); text-decoration: none; text-transform: lowercase;
  opacity: 0.6; transition: opacity 0.2s;
}
.mobile-menu a:hover { opacity: 1; }
.mobile-close {
  position: absolute; top: 28px; right: 28px; background: none; border: none;
  color: var(--yellow); font-size: 28px; font-weight: 100; cursor: none; line-height: 1;
  opacity: 0.6; transition: opacity 0.2s;
}
.mobile-close:hover { opacity: 1; }

/* PAGE ENTRANCE (per real page load, not SPA) */
body.fade-in #page-content { opacity: 0; transform: translateY(8px); }
#page-content {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

/* ============ HOME ============ */
#home-wrap {
  display: flex; flex-direction: column;
  height: 100vh; overflow: hidden;
  padding: 80px 52px 0;
}
.home-encart {
  flex: 1; min-height: 0; border-radius: var(--radius); overflow: hidden;
  position: relative; margin-top: 12px;
  transform: scale(0.99); transition: transform 0.8s var(--ease);
}
body.loaded .home-encart { transform: scale(1); }
.home-encart:hover .home-slide.visible img { transform: scale(1.025); }
.home-slides { position: relative; width: 100%; height: 100%; }
.home-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s var(--ease); pointer-events: none; }
.home-slide.visible { opacity: 1; pointer-events: auto; }
.home-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.8s var(--ease); }

.home-bottom { flex-shrink: 0; padding: 20px 0 0; display: flex; flex-direction: column; align-items: center; text-align: center; }
.home-text-row { display: flex; flex-direction: column; gap: 3px; margin-bottom: 20px; align-items: center; }
.home-line { font-size: 18px; font-weight: 300; letter-spacing: 0.015em; line-height: 1.5; color: rgba(224,215,150,0.78); }
.switch-word { color: var(--beige); font-weight: 400; }
.nav-word { color: var(--dim); font-weight: 300; cursor: none; transition: color 0.25s; }
.nav-word:hover { color: var(--mid); }

.trusted-bar { display: flex; align-items: center; padding: 16px 0 22px; border-top: 1px solid rgba(224,215,150,0.07); overflow: hidden; width: 100%; }
.trusted-label { font-size: 8px; font-weight: 300; letter-spacing: 0.22em; color: var(--gold-label); text-transform: lowercase; white-space: nowrap; margin-right: 28px; flex-shrink: 0; }
.trusted-track-wrap { flex: 1; overflow: hidden; }
.trusted-track { display: flex; gap: 40px; animation: scrollTrack 22s linear infinite; white-space: nowrap; width: max-content; }
.trusted-track:hover { animation-play-state: paused; }
@keyframes scrollTrack { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.trusted-name { font-size: 9px; font-weight: 300; letter-spacing: 0.2em; color: rgba(224,215,150,0.22); text-transform: uppercase; white-space: nowrap; flex-shrink: 0; transition: color 0.3s; cursor: none; }
.trusted-name:hover { color: rgba(224,215,150,0.55); }

/* ============ PORTFOLIO PAGES ============ */
.portfolio-page { padding: 100px 52px 0; min-height: 100vh; display: flex; flex-direction: column; }
.section-eyebrow { display: block; font-size: 9px; font-weight: 300; letter-spacing: 0.24em; color: var(--gold-label); text-transform: lowercase; margin-bottom: 14px; }
.page-h1 { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 30px; font-weight: 300; color: var(--beige); margin-bottom: 28px; line-height: 1.2; }

.intro-banner {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; text-align: center; text-decoration: none; cursor: none;
  padding: 18px 0 0; margin-bottom: 36px;
}
.intro-banner-text { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 17px; font-weight: 300; color: var(--beige); letter-spacing: 0.01em; }
.intro-banner-arrow { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--beige); display: inline-block; transition: transform 0.3s var(--ease); }
.intro-banner:hover .intro-banner-arrow { transform: translateX(4px); }
.intro-banner:hover .intro-banner-text { opacity: 0.85; }

.filter-bar { display: flex; gap: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(224,215,150,0.07); margin-bottom: 36px; flex-wrap: wrap; }
.filter-btn {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 300; letter-spacing: 0.13em;
  color: var(--dim); background: none; border: none; border-bottom: 1px solid transparent;
  cursor: none; text-transform: lowercase; padding: 0 0 3px; transition: color 0.2s, border-color 0.2s;
}
.filter-btn:hover { color: var(--yellow); }
.filter-btn.active { color: var(--beige); border-bottom-color: var(--beige); }

.project-grid { columns: 3; column-gap: 12px; flex: 1; }
.project-card {
  break-inside: avoid; margin-bottom: 12px; cursor: none; position: relative;
  border-radius: 6px; overflow: hidden; display: block; text-decoration: none;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
body.loaded .project-card { opacity: 1; transform: translateY(0); }
body.loaded .project-card:nth-child(1) { transition-delay: 0.05s; }
body.loaded .project-card:nth-child(2) { transition-delay: 0.10s; }
body.loaded .project-card:nth-child(3) { transition-delay: 0.15s; }
body.loaded .project-card:nth-child(4) { transition-delay: 0.20s; }
body.loaded .project-card:nth-child(5) { transition-delay: 0.25s; }
body.loaded .project-card:nth-child(6) { transition-delay: 0.30s; }
body.loaded .project-card:nth-child(7) { transition-delay: 0.35s; }
body.loaded .project-card:nth-child(8) { transition-delay: 0.40s; }
body.loaded .project-card:nth-child(9) { transition-delay: 0.45s; }

.project-thumb { width: 100%; display: block; border-radius: 6px; transition: transform 0.6s var(--ease); }
.project-card:hover .project-thumb { transform: scale(1.03); }
.project-card:hover .thumb-ov { opacity: 1; }
.thumb-ov {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.25) 45%, transparent 70%);
  opacity: 0; transition: opacity 0.35s var(--ease); border-radius: 6px;
  display: flex; align-items: flex-end; padding: 16px;
}
.thumb-ov-lbl { font-size: 12px; font-weight: 400; letter-spacing: 0.08em; color: var(--beige); text-transform: lowercase; transform: translateY(4px); transition: transform 0.35s var(--ease); }
.project-card:hover .thumb-ov-lbl { transform: translateY(0); }

.t { display: block; border-radius: 6px; width: 100%; object-fit: cover; height: auto; }
.t1 { aspect-ratio:3/2; } .t2 { aspect-ratio:4/5; } .t3 { aspect-ratio:3/2; }
.t4 { aspect-ratio:1/1; } .t5 { aspect-ratio:3/4; } .t6 { aspect-ratio:16/9; }
.t7 { aspect-ratio:4/3; } .t8 { aspect-ratio:2/3; } .t9 { aspect-ratio:3/2; }

/* placeholder gradients (until real photos are uploaded) */
.ph1 { background: linear-gradient(155deg,#2a1a0f,#4a3020,#1a1210); }
.ph2 { background: linear-gradient(155deg,#c8c0b8,#a0988e,#7a726a); }
.ph3 { background: linear-gradient(155deg,#3a2010,#8b4a20,#d4844a,#2a1008); }
.ph4 { background: linear-gradient(155deg,#0f1418,#1a2028,#2a3040); }
.ph5 { background: linear-gradient(155deg,#e8e0d8,#d0c8c0,#b8b0a8); }
.ph6 { background: linear-gradient(155deg,#1a0f08,#5a3018,#3a1a08); }
.ph7 { background: linear-gradient(155deg,#181818,#282828,#383838); }
.ph8 { background: linear-gradient(155deg,#d8d0c8,#bfb7af,#a8a09a); }
.ph9 { background: linear-gradient(155deg,#3a2a18,#6a4a28,#2a1a0a); }

/* ============ PORTFOLIO BOTTOM CTA ============ */
.portfolio-cta { margin-top: 56px; padding: 40px 0; border-top: 1px solid rgba(224,215,150,0.07); text-align: center; }
.portfolio-cta-title { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 24px; font-weight: 300; color: var(--beige); margin-bottom: 14px; line-height: 1.4; }
.portfolio-cta-line {
  display: inline-block; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 22px;
  font-weight: 300; color: var(--beige); text-decoration: none; cursor: none;
  border-bottom: 1px solid rgba(236,231,203,0.25); padding-bottom: 4px; transition: border-color 0.3s, opacity 0.3s;
}
.portfolio-cta-line:hover { border-color: rgba(236,231,203,0.6); opacity: 0.85; }

/* ============ LIGHTBOX ============ */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(4,4,4,0.96); z-index: 800; flex-direction: column; opacity: 0; transition: opacity 0.35s var(--ease); }
.lightbox.open { display: flex; }
.lightbox.visible { opacity: 1; }
.lb-header { display: flex; justify-content: space-between; align-items: center; padding: 26px 52px; flex-shrink: 0; }
.lb-title { font-size: 10px; font-weight: 300; letter-spacing: 0.18em; color: var(--dim); text-transform: lowercase; }
.lb-close {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; cursor: none;
  color: var(--dim); font-size: 28px; font-weight: 100; background: none; border: none;
  transition: color 0.2s, transform 0.3s var(--ease); line-height: 1;
}
.lb-close:hover { color: var(--yellow); transform: rotate(90deg); }
.lb-carousel { flex: 1; display: flex; align-items: center; justify-content: center; padding: 0 72px; position: relative; overflow: hidden; }
.lb-slides { display: flex; width: 100%; height: 100%; align-items: center; transition: transform 0.6s var(--ease); }
.lb-slide { min-width: 100%; display: flex; justify-content: center; align-items: center; }
.lb-img { max-height: calc(100vh - 240px); max-width: 100%; border-radius: 6px; display: block; }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%); background: none; border: none;
  color: rgba(224,215,150,0.18); font-size: 36px; font-weight: 100; cursor: none; padding: 20px;
  transition: color 0.25s, transform 0.25s var(--ease); z-index: 10; line-height: 1;
}
.lb-nav:hover { color: rgba(224,215,150,0.7); }
.lb-prev { left: 0; } .lb-prev:hover { transform: translateY(-50%) translateX(-2px); }
.lb-next { right: 0; } .lb-next:hover { transform: translateY(-50%) translateX(2px); }
.lb-footer { padding: 18px 52px 36px; flex-shrink: 0; }
.lb-counter { font-size: 9px; letter-spacing: 0.18em; color: var(--gold-label); margin-bottom: 7px; }
.lb-desc { font-size: 12px; font-weight: 300; letter-spacing: 0.06em; color: var(--dim); line-height: 1.8; }

/* ============ ABOUT ============ */
.about-page { padding: 100px 52px 0; min-height: 100vh; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: start; max-width: 1080px; }
.about-photo-wrap { border-radius: var(--radius); overflow: hidden; }
.about-photo-img { width: 100%; aspect-ratio: 3/4; background: linear-gradient(160deg,#1a1412,#2a2018,#3a3028); border-radius: var(--radius); display: block; object-fit: cover; }
.about-right { padding-top: 4px; }
.about-name { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; font-style: italic; letter-spacing: 0.01em; margin-bottom: 30px; line-height: 1.05; color: var(--beige); }
.about-body { font-size: 13px; font-weight: 300; line-height: 2; color: var(--dim); margin-bottom: 14px; }
.about-body em { color: var(--yellow); font-style: normal; }
.divider { width: 24px; height: 1px; background: var(--gold-label); opacity: 0.5; margin: 26px 0; }
.meta-lbl { font-size: 8px; font-weight: 300; letter-spacing: 0.22em; color: var(--gold-label); text-transform: lowercase; margin-bottom: 10px; display: block; }
.socials { display: flex; gap: 22px; margin-top: 30px; flex-wrap: wrap; }
.soc-link {
  font-size: 10px; font-weight: 300; letter-spacing: 0.16em; color: var(--dim); text-decoration: none;
  text-transform: lowercase; border-bottom: 1px solid rgba(224,215,150,0.12); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s; cursor: none;
}
.soc-link:hover { color: var(--yellow); border-color: rgba(224,215,150,0.35); }

/* ============ CONTACT ============ */
.contact-page { padding: 100px 52px 0; min-height: 100vh; }
.contact-wrap { max-width: 520px; }
.contact-h { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 300; font-style: italic; letter-spacing: 0.01em; line-height: 1.06; margin-bottom: 14px; color: var(--beige); }
.contact-sub { font-size: 12px; font-weight: 300; color: var(--dim); letter-spacing: 0.05em; line-height: 1.8; margin-bottom: 44px; }
.form-row { display: flex; border-top: 1px solid rgba(224,215,150,0.07); flex-wrap: wrap; }
.form-row:last-of-type { border-bottom: 1px solid rgba(224,215,150,0.07); }
.form-field { flex: 1; min-width: 140px; padding: 18px 0; display: flex; flex-direction: column; }
.form-field + .form-field { border-left: 1px solid rgba(224,215,150,0.07); padding-left: 20px; }
.form-lbl { font-size: 8px; font-weight: 300; letter-spacing: 0.2em; color: var(--gold-label); text-transform: lowercase; margin-bottom: 8px; }
.form-inp { background: none; border: none; outline: none; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 300; color: var(--yellow); width: 100%; cursor: none; }
.form-inp::placeholder { color: rgba(224,215,150,0.15); }
.form-ta { resize: none; height: 72px; line-height: 1.75; }
.form-sel { appearance: none; cursor: none; }
.form-sel option { background: #111; color: #e0d796; }
.form-actions { margin-top: 36px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.send-btn {
  background: none; border: 1px solid rgba(224,215,150,0.18); color: var(--yellow);
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 300; letter-spacing: 0.2em;
  text-transform: lowercase; padding: 13px 36px; cursor: none; border-radius: 2px;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease), transform 0.25s var(--ease);
}
.send-btn:hover { background: var(--beige); border-color: var(--beige); color: var(--black); transform: translateY(-1px); }

/* ============ WEDDINGS DEDICATED PAGE ============ */
.weddings-page { padding: 100px 52px 0; min-height: 100vh; }
.weddings-back {
  font-size: 10px; font-weight: 300; letter-spacing: 0.16em; color: var(--dim); text-decoration: none;
  text-transform: lowercase; cursor: none; display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 40px; transition: color 0.25s;
}
.weddings-back:hover { color: var(--yellow); }
.weddings-back .arrow-back { transition: transform 0.3s var(--ease); }
.weddings-back:hover .arrow-back { transform: translateX(-3px); }
.weddings-hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: start; margin-bottom: 64px; max-width: 1080px; }
.weddings-title { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300; font-size: 46px; line-height: 1.12; color: var(--beige); margin-bottom: 22px; }
.weddings-lede { font-size: 14px; font-weight: 300; line-height: 1.95; color: var(--dim); margin-bottom: 16px; }
.weddings-lede em { color: var(--yellow); font-style: normal; }
.weddings-meta-card { border: 1px solid rgba(224,215,150,0.1); border-radius: var(--radius); padding: 28px; }
.weddings-meta-row { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; border-bottom: 1px solid rgba(224,215,150,0.07); }
.weddings-meta-row:last-child { border-bottom: none; }
.weddings-meta-label { font-size: 10px; letter-spacing: 0.14em; color: var(--gold-label); text-transform: lowercase; }
.weddings-meta-value { font-size: 13px; font-weight: 300; color: var(--yellow); text-align: right; }
.weddings-cta {
  display: block; width: 100%; text-align: center; margin-top: 24px; background: none;
  border: 1px solid rgba(224,215,150,0.2); color: var(--yellow); font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 300; letter-spacing: 0.16em; text-transform: lowercase; padding: 14px 0;
  cursor: none; border-radius: 2px; transition: all 0.35s var(--ease); text-decoration: none;
}
.weddings-cta:hover { background: var(--beige); border-color: var(--beige); color: var(--black); }
.weddings-gallery { columns: 3; column-gap: 12px; margin-bottom: 56px; }
.weddings-gallery .project-card { margin-bottom: 12px; }
.weddings-section-title { font-size: 9px; font-weight: 300; letter-spacing: 0.22em; color: var(--gold-label); text-transform: lowercase; margin-bottom: 24px; display: block; }

/* ============ GLOBAL FOOTER ============ */
.site-footer { margin-top: 60px; padding: 28px 52px 36px; border-top: 1px solid rgba(224,215,150,0.07); }
.footer-trusted-bar { display: flex; align-items: center; overflow: hidden; margin-bottom: 24px; }
.footer-trusted-label { font-size: 8px; font-weight: 300; letter-spacing: 0.22em; color: var(--gold-label); text-transform: lowercase; white-space: nowrap; margin-right: 28px; flex-shrink: 0; }
.footer-trusted-track-wrap { flex: 1; overflow: hidden; }
.footer-trusted-track { display: flex; gap: 40px; animation: scrollTrack 22s linear infinite; white-space: nowrap; width: max-content; }
.footer-trusted-track:hover { animation-play-state: paused; }
.footer-trusted-name { font-size: 9px; font-weight: 300; letter-spacing: 0.2em; color: rgba(224,215,150,0.22); text-transform: uppercase; white-space: nowrap; flex-shrink: 0; transition: color 0.3s; cursor: none; }
.footer-trusted-name:hover { color: rgba(224,215,150,0.55); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding-top: 18px; border-top: 1px solid rgba(224,215,150,0.06); }
.footer-socials { display: flex; align-items: center; gap: 22px; }
.footer-ig {
  font-size: 10px; font-weight: 300; letter-spacing: 0.14em; color: var(--dim); text-decoration: none;
  text-transform: lowercase; border-bottom: 1px solid rgba(224,215,150,0.12); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s; cursor: none;
}
.footer-ig:hover { color: var(--yellow); border-color: rgba(224,215,150,0.35); }
.footer-copyright { font-size: 9px; font-weight: 300; letter-spacing: 0.12em; color: rgba(224,215,150,0.3); text-transform: uppercase; white-space: nowrap; }

::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(224,215,150,0.1); border-radius: 2px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  body { cursor: auto; }
  #cursor-dot, #cursor-ring { display: none; }
  nav { padding: 20px 24px; height: 68px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .logo img { height: 32px; }

  #home-wrap { padding: 68px 24px 0; }
  .home-encart { border-radius: 8px; margin-top: 10px; }
  .home-line { font-size: 14px; }
  .home-bottom { padding: 14px 0 0; }
  .home-text-row { margin-bottom: 14px; }
  .trusted-label { display: none; }

  .portfolio-page { padding: 80px 24px 0; }
  .project-grid { columns: 2; column-gap: 8px; }
  .project-card { margin-bottom: 8px; cursor: auto; }
  .mobile-gallery-active .project-grid { columns: 1 !important; }
  .mobile-gallery-active .t { aspect-ratio: 3/4 !important; }

  .about-page { padding: 80px 24px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-photo-img { aspect-ratio: 4/3; }
  .about-name { font-size: 38px; }

  .contact-page { padding: 80px 24px 0; }
  .contact-h { font-size: 40px; }
  .form-field + .form-field { border-left: none; border-top: 1px solid rgba(224,215,150,0.07); padding-left: 0; }

  .weddings-page { padding: 80px 24px 0; }
  .weddings-hero { grid-template-columns: 1fr; gap: 32px; }
  .weddings-title { font-size: 32px; }
  .weddings-gallery { columns: 2; }

  .lb-header { padding: 20px 24px; }
  .lb-footer { padding: 12px 24px 28px; }
  .lb-carousel { padding: 0 40px; }

  .filter-btn { cursor: auto; }
  .nav-word { cursor: auto; }
  .send-btn { cursor: auto; }
  .soc-link { cursor: auto; }
  .footer-ig { cursor: auto; }
  .weddings-back { cursor: auto; }
  .weddings-cta { cursor: auto; }

  .site-footer { padding: 24px 24px 32px; }
  .footer-trusted-label { display: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (max-width: 480px) {
  .project-grid { columns: 1; }
  .weddings-gallery { columns: 1; }
  .home-line { font-size: 13px; }
  .about-name { font-size: 32px; }
  .contact-h { font-size: 34px; }
}
