:root {
  --bg: #090909;
  --surface: #0f0f0f;
  --text: #e8e2d9;
  --text-muted: #9e9a93;
  --gold: #d4ba95;
  --blush: #f2bfd4;
  --blush-soft: rgba(242, 191, 212, 0.22);
  --border: #2a2a2a;
  
  --motion-fast: 0.2s;
  --motion-base: 0.35s;
  --motion-slow: 0.7s;
  --motion-ease: cubic-bezier(0.16, 1, 0.3, 1);
  
  --section-space: clamp(5rem, 10vw, 9rem);
  
  /* Fluid Typography Scale */
  --type-body: clamp(1rem, 0.5vw + 0.9rem, 1.15rem);
  --type-h1: clamp(3.5rem, 8vw + 1rem, 8.5rem);
  --type-h2: clamp(2rem, 4vw + 1rem, 3.8rem);
  --type-h3: clamp(1.2rem, 2vw + 0.5rem, 1.8rem);
  --type-caption: 11px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
}

@view-transition {
  navigation: auto;
}

::selection {
  background: var(--gold);
  color: #000;
}

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

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 300;
  font-size: var(--type-body);
  line-height: 1.62;
  background-color: var(--bg);
  background-image: radial-gradient(circle at 80% 8%, rgba(242, 191, 212, 0.05), transparent 40%);
  position: relative;
}

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

h1 {
  font-size: var(--type-h1);
  line-height: 1.03;
}

h2 {
  font-size: var(--type-h2);
  line-height: 1.12;
}

h3 {
  font-size: var(--type-h3);
  line-height: 1.2;
}

h1,
h2,
h3,
.logo,
.footer-logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
}

.container {
  width: min(1400px, calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(860px, calc(100% - 2rem));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(212, 186, 149, 0.1);
}

.header-inner {
  position: relative;
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.logo {
  justify-self: center;
  color: var(--gold);
  letter-spacing: 0.16em;
  font-size: clamp(1.45rem, 4vw, 1.9rem);
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 0 18px rgba(242, 191, 212, 0.18);
}

.brand-stack {
  justify-self: center;
  text-align: center;
  line-height: 1.1;
}

.brand-stack .logo {
  display: inline-block;
}

.brand-topline {
  margin: 0 0 0.35rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 10px;
  text-shadow: 0 0 10px rgba(10, 10, 10, 0.6);
}

.menu-link {
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 300;
  text-transform: uppercase;
  transition: color var(--motion-fast) var(--motion-ease);
}

.menu-link:hover,
.text-hover-gold:hover {
  color: var(--gold);
}

.header-inner > .menu-link:first-of-type {
  justify-self: start;
}

.header-inner > .menu-link:last-of-type {
  justify-self: end;
  margin-right: 7.5rem;
}

.lang-switcher {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.2rem 0.35rem;
  border-radius: 3px;
  border: 1px solid rgba(212, 186, 149, 0.15);
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 10px;
  padding: 0.2rem 0.4rem;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  border-radius: 2px;
  transition: all var(--motion-fast) var(--motion-ease);
}

.lang-btn:hover {
  opacity: 1;
  color: var(--gold);
}

.lang-btn.is-active {
  opacity: 1;
  color: #000;
  background: var(--gold);
  font-weight: 500;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  will-change: transform;
  transform: scale(1.05); /* Avoid jump on scroll start */
  animation: hero-image-zoom 2.5s var(--motion-ease) forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 92px;
}

.hero-copy {
  max-width: 980px;
  margin: 0 auto;
  padding: 1.2rem 1rem 1rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold);
  letter-spacing: 0.27em;
  text-transform: uppercase;
  font-size: 12px;
  text-shadow: 0 0 12px rgba(10, 10, 10, 0.82), 0 1px 4px rgba(10, 10, 10, 0.55);
}

.hero .eyebrow {
  font-weight: 400;
}

.hero h1 {
  margin: 0 auto 1.1rem;
  font-size: clamp(2.5rem, 7vw, 6.3rem);
  line-height: 0.95;
  max-width: 900px;
  font-style: italic;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.hero-actions .cta {
  min-width: 220px;
  justify-content: center;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: #000;
  border: 1px solid transparent;
  padding: 14px 34px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  transition: transform var(--motion-base) var(--motion-ease), background var(--motion-base) var(--motion-ease);
  border-radius: 999px;
}

.cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #dfc6a3 0%, #ecd7e1 100%);
  box-shadow: 0 8px 24px rgba(212, 186, 149, 0.25);
}

.cta-ghost {
  background: rgba(10, 10, 10, 0.65);
  color: var(--text);
  border-color: rgba(232, 226, 217, 0.42);
}

.cta-ghost:hover {
  color: #000;
  border-color: transparent;
  background: linear-gradient(90deg, #d4ba95 0%, #e5cfd9 100%);
}

.signature-chip {
  margin: 0 auto 2.2rem;
  max-width: 560px;
  color: rgba(232, 226, 217, 0.95);
  letter-spacing: 0.03em;
  font-size: 1.06rem;
  font-style: normal;
  text-shadow: 0 0 10px rgba(10, 10, 10, 0.8), 0 1px 3px rgba(10, 10, 10, 0.5);
}

.signature-chip::after {
  content: none;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 820px;
  margin: 0 auto 1.8rem;
}

.hero-proof-item {
  border: 1px solid rgba(232, 226, 217, 0.28);
  background: rgba(10, 10, 10, 0.45);
  padding: 0.75rem 0.85rem;
  border-radius: 999px;
}

.hero-proof-value {
  margin: 0;
  color: var(--gold);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1;
  letter-spacing: 0.06em;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.hero-proof-label {
  margin: 0.22rem 0 0;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 226, 217, 0.78);
}

.section {
  padding: var(--section-space) 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-head a {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color var(--motion-fast) var(--motion-ease);
}

.section-head a:hover {
  color: var(--text);
}

.section-quote {
  text-align: center;
  border-top: 1px solid rgba(212, 186, 149, 0.22);
  border-bottom: 1px solid rgba(212, 186, 149, 0.22);
  padding: 5rem 1.5rem;
  margin: var(--section-space) auto;
  max-width: 780px;
  position: relative;
}

.section-quote::before {
  content: "“";
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 5rem;
  color: rgba(212, 186, 149, 0.15);
  line-height: 1;
}

.section-quote h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  color: var(--text);
}

.section-quote p {
  margin-top: 2rem;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.photo-grid {
  display: grid;
  gap: 2.25rem;
}

.photo-grid .state-box {
  width: min(680px, 100%);
  justify-self: center;
}

.centered-grid {
  justify-items: center;
}

.photo-grid.centered-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 430px)) !important;
  justify-content: center;
}

.photo-grid.cols-2 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.photo-grid.cols-3 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.photo-card {
  cursor: pointer;
  width: 100%;
  max-width: 430px;
  margin-inline: auto;
  text-align: center;
}

.album-card {
  width: 100%;
  max-width: 430px;
  margin-inline: auto;
  text-align: center;
}

#weddings-grid .album-card .photo-media {
  border: 1px solid var(--gold);
}

#featured-grid .photo-card .photo-media {
  border: 1px solid var(--gold);
}

/* Keep subtle personality: tiny imperfect rhythm without breaking luxury composition */
.centered-grid > :nth-child(odd) {
  transform: rotate(-0.35deg);
}

.centered-grid > :nth-child(even) {
  transform: rotate(0.35deg);
}

.centered-grid > * {
  transition: transform var(--motion-base) var(--motion-ease);
}

.centered-grid > .state-box {
  transform: none;
}

.centered-grid > *:hover {
  transform: rotate(0deg);
}

.photo-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #131313;
  border: 1px solid var(--border);
}

.photo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.photo-card {
  position: relative;
}

.photo-card::after, .album-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 400ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

/* Gallery pages should keep original ratios and stack tightly like masonry. */
.is-ordered-masonry {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.is-ordered-masonry .masonry-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

#portfolio-grid .photo-card {
  max-width: none;
  margin-bottom: 0;
}

#portfolio-grid.centered-grid > :nth-child(odd),
#portfolio-grid.centered-grid > :nth-child(even),
#portfolio-grid.centered-grid > *:hover {
  transform: none;
}

#portfolio-grid .photo-media {
  aspect-ratio: auto;
  background: transparent;
}

#portfolio-grid .photo-media img {
  height: auto;
  object-fit: contain;
}

#album-grid .masonry-item {
  background: transparent;
}

.photo-card:hover .photo-media img,
.album-card:hover .photo-media img {
  transform: scale(1.04);
}

.photo-card:hover::after,
.album-card:hover::after {
  opacity: 1;
}

.photo-title {
  margin: 0;
  font-size: 1.3rem;
  transition: color var(--motion-fast) var(--motion-ease);
}

.photo-card:hover .photo-title,
.album-card:hover .photo-title {
  color: var(--gold);
}

.photo-subtitle {
  margin-top: 0.25rem;
  font-size: var(--type-caption);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 226, 217, 0.62);
}

.album-description {
  margin: 0.6rem auto 0;
  max-width: 38ch;
  color: rgba(232, 226, 217, 0.75);
  font-size: 0.95rem;
}

.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 5rem 0;
}

.footer-inner {
  text-align: center;
  max-width: 760px;
}

.footer-logo {
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 2rem;
}

.footer-inner p {
  margin: 1.5rem 0 2rem;
  color: rgba(232, 226, 217, 0.65);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links a {
  color: rgba(232, 226, 217, 0.55);
  transition: color var(--motion-fast) var(--motion-ease);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-inner small {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232, 226, 217, 0.35);
}

.footer-creator {
  margin: 0 0 1rem;
  color: rgba(232, 226, 217, 0.64);
  font-size: 0.96rem;
}

.footer-creator span {
  color: var(--blush);
}

.page-intro {
  padding-top: 160px;
  padding-bottom: 3rem;
  text-align: center;
}

.page-intro h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 1.02;
}

.pricing-title {
  font-size: clamp(1.95rem, 4vw, 3.2rem) !important;
}

.page-intro p {
  margin-top: 1rem;
  max-width: 680px;
  margin-inline: auto;
  color: rgba(232, 226, 217, 0.75);
  line-height: 1.72;
}

.availability-indicator {
  margin-top: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
}

.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  display: grid;
  gap: 0.35rem;
  justify-items: end;
}

.floating-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #d4ba95 0%, #e5cfd9 100%);
  color: #000;
  border: 1px solid transparent;
  padding: 0.78rem 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  border-radius: 999px;
  transition: transform var(--motion-base) var(--motion-ease), filter var(--motion-base) var(--motion-ease);
}

.floating-cta-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.floating-cta-note {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 226, 217, 0.66);
  background: rgba(10, 10, 10, 0.82);
  border: 1px solid rgba(232, 226, 217, 0.15);
  padding: 0.35rem 0.55rem;
}

.floating-cta-note a {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: rgba(232, 226, 217, 0.8);
}

.floating-cta-note a:hover {
  color: var(--gold);
}

.mobile-sticky-cta {
  display: none;
}

.story-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.story-nav.story-nav-single {
  max-width: 760px;
  margin-inline: auto;
}

.story-nav.story-nav-single .story-nav-link {
  text-align: center;
}

.story-nav-link {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.01);
  padding: 0.95rem;
  text-align: center;
  transition: border-color var(--motion-fast) var(--motion-ease), color var(--motion-fast) var(--motion-ease);
}

.story-nav-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.story-nav-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232, 226, 217, 0.62);
}

.story-nav-title {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.18rem;
  font-family: "Cormorant Garamond", Georgia, serif;
}

#album-description {
  margin-top: 0.5rem;
}

.state-box {
  border: 1px solid var(--border);
  padding: 1.25rem;
  color: rgba(232, 226, 217, 0.8);
  background: rgba(255, 255, 255, 0.01);
  text-align: center;
  font-size: 1.05rem;
}

.state-box a {
  color: var(--gold);
}

.packages {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

.packages-premium {
  max-width: 1120px;
  margin-inline: auto;
}

.package-note {
  margin: 1.35rem auto 0;
  max-width: 920px;
  text-align: center;
  color: rgba(232, 226, 217, 0.72);
  font-size: 0.95rem;
}

.package {
  border: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.package-featured {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.package-featured h2,
.package-featured .price,
.package-featured ul li {
  color: #000;
}

.minimal-monochrome-panel {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
  background: transparent;
  border-radius: 0;
}

.minimal-monochrome-panel .content-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.02em;
}

.package-personal {
  border-color: rgba(242, 191, 212, 0.48);
  box-shadow: inset 0 0 0 1px rgba(197, 168, 128, 0.35);
  background:
    linear-gradient(180deg, rgba(242, 191, 212, 0.06) 0%, rgba(10, 10, 10, 0) 42%),
    rgba(255, 255, 255, 0.01);
}

.package-personal h2 {
  color: rgba(232, 226, 217, 0.97);
}

.package h2 {
  margin: 0;
  font-size: 2rem;
}

.package .price {
  color: var(--gold);
  font-size: 1.8rem;
  margin: 0.6rem 0 1.1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.package ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.package li {
  margin-bottom: 0.6rem;
  color: rgba(232, 226, 217, 0.78);
  font-size: 1rem;
}

.content-panel {
  text-align: center;
  padding: 1.4rem;
}

.content-title {
  margin: 0 0 1.3rem;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
}

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.process-steps li {
  border: 1px solid var(--border);
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.01);
}

.process-steps h3 {
  margin: 0 0 0.3rem;
  color: var(--gold);
  font-size: 1.2rem;
}

.process-steps p {
  margin: 0;
  color: rgba(232, 226, 217, 0.8);
}

.faq-list {
  display: grid;
  gap: 0.9rem;
  text-align: left;
}

.faq-list details {
  border: 1px solid var(--border);
  padding: 1.05rem 1.05rem;
  background: rgba(255, 255, 255, 0.01);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 400;
  color: var(--text);
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--gold);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0.6rem 0 0;
  color: rgba(232, 226, 217, 0.78);
}

.social-proof-note {
  border-color: rgba(197, 168, 128, 0.45);
}

.about-layout {
  display: grid;
  gap: 1.4rem;
  align-items: stretch;
}

.about-photo-panel {
  padding: 0;
  overflow: hidden;
}

.about-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-story-panel {
  text-align: left;
}

.about-story-shell {
  position: relative;
  padding: 1.2rem 0.6rem 0.6rem;
}

.about-story-shell::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 120px;
  border-top: 1px solid rgba(197, 168, 128, 0.75);
}

.about-story-shell .content-title {
  margin-bottom: 1.1rem;
  font-size: clamp(2.2rem, 3.6vw, 3.3rem);
  line-height: 0.98;
}

.about-rich-text {
  display: grid;
  gap: 0.85rem;
}

.about-rich-text p {
  margin: 0;
  color: rgba(232, 226, 217, 0.88);
  line-height: 1.78;
  max-width: 62ch;
}

.about-meta-grid {
  display: grid;
  gap: 1rem;
}

.about-experience-card {
  text-align: center;
}

.about-experience-value {
  margin: 0;
  color: var(--gold);
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  line-height: 1;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.about-experience-label {
  margin: 0.45rem 0 0;
  color: rgba(232, 226, 217, 0.82);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
}

.testimonials-grid {
  position: relative;
  overflow: hidden;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 1.5rem 0;
  display: flex;
}

.testimonials-track {
  display: flex;
  gap: 2.2rem;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
  will-change: transform;
}

/* Pause animation on hover */
.testimonials-grid:hover .testimonials-track {
  animation-play-state: paused;
}

.testimonial-card {
  width: clamp(290px, 28vw, 440px);
  flex-shrink: 0;
  text-align: left;
  border: 1px solid rgba(212, 186, 149, 0.12) !important;
  background: rgba(15, 15, 15, 0.45) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2.2rem 2rem !important;
  border-radius: 6px;
}

@keyframes marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 767px) {
  .testimonials-track {
    animation-duration: 35s;
    gap: 1.5rem;
  }
  .testimonial-card {
    width: 290px;
    padding: 1.8rem 1.5rem !important;
  }
}



.testimonial-chip {
  min-width: min(100%, 360px);
  max-width: 360px;
  transition: transform var(--motion-base) var(--motion-ease), border-color var(--motion-fast) var(--motion-ease), background var(--motion-fast) var(--motion-ease), box-shadow var(--motion-base) var(--motion-ease);
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}

.testimonial-chip::before {
  content: "“";
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4rem;
  color: rgba(212, 186, 149, 0.12);
  line-height: 1;
}

.testimonial-chip:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 186, 149, 0.55);
  background: rgba(20, 20, 20, 0.6);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 186, 149, 0.05);
}

.testimonial-quote {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: rgba(232, 226, 217, 0.88);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.testimonial-name {
  margin: 1.5rem 0 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 10px;
  position: relative;
  z-index: 1;
}

.masonry {
  display: block;
}

#album-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.masonry-item {
  border: 1px solid var(--border);
  background: transparent;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
  object-fit: contain;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-height: 92vh;
  max-width: 92vw;
  object-fit: contain;
}

.lightbox button {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(10, 10, 10, 0.4);
  color: var(--text);
  padding: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 105;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.25s var(--motion-ease);
  opacity: 0.6;
}

.lightbox button:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--gold);
  opacity: 1;
}

/* Close Button Icon */
.lightbox button:not([data-lightbox-prev]):not([data-lightbox-next]) {
  font-size: 0;
}
.lightbox button:not([data-lightbox-prev]):not([data-lightbox-next])::before,
.lightbox button:not([data-lightbox-prev]):not([data-lightbox-next])::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 1.5px;
  background-color: currentColor;
}
.lightbox button:not([data-lightbox-prev]):not([data-lightbox-next])::before {
  transform: rotate(45deg);
}
.lightbox button:not([data-lightbox-prev]):not([data-lightbox-next])::after {
  transform: rotate(-45deg);
}

/* Prev & Next Buttons Icons */
.lightbox [data-lightbox-prev] {
  left: 20px;
  right: auto;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0;
}

.lightbox [data-lightbox-prev]::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 2px;
}

.lightbox [data-lightbox-next] {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0;
}

.lightbox [data-lightbox-next]::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  margin-right: 2px;
}

.lightbox [data-lightbox-pin] {
  right: 76px;
  font-size: 10px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.05em;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--text);
}

/* Mobile optimizations to make sure buttons do not block vertical/wide photos */
@media (max-width: 767px) {
  .lightbox button {
    opacity: 0.8;
  }
  .lightbox [data-lightbox-prev] {
    left: 10px;
  }
  .lightbox [data-lightbox-next] {
    right: 10px;
  }
}

.lightbox-counter {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  border: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.75);
  color: var(--text);
  padding: 0.35rem 0.6rem;
  letter-spacing: 0.14em;
  font-size: 10px;
  text-transform: uppercase;
}

.admin-wrap {
  min-height: 100vh;
  padding-top: 130px;
  padding-bottom: 4rem;
}

.panel {
  border: 1px solid var(--border);
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.01);
}

.panel h2,
.panel h3 {
  margin-top: 0;
}

.admin-section {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.01);
  margin-bottom: 0.8rem;
}

.admin-section > summary {
  list-style: none;
  cursor: pointer;
  padding: 0.85rem 0.95rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  color: var(--text);
  border-bottom: 1px solid transparent;
}

.admin-section > summary::-webkit-details-marker {
  display: none;
}

.admin-section > summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.9rem;
}

.admin-section[open] > summary {
  border-bottom-color: var(--border);
}

.admin-section[open] > summary::after {
  content: "-";
}

.admin-section-body {
  padding: 0.95rem;
}

.form-row {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

input,
select,
button,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #0f0f0f;
  color: var(--text);
  padding: 0.72rem 0.8rem;
  font-family: inherit;
  font-size: 0.95rem;
  border-radius: 0;
}

button {
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
}

button.primary {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

button.ghost {
  background: transparent;
}

button.danger {
  border-color: #652727;
  color: #d39e9e;
}

.album-list {
  display: grid;
  gap: 0.7rem;
}

.admin-quick-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.album-order-controls {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}

.album-order-controls button {
  width: auto;
  min-width: 0;
}

.admin-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 0;
  padding: 0.72rem 0.8rem;
  border: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
}

.photo-view-controls {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.photo-order-controls {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.photo-order-controls button {
  width: auto;
  min-width: 0;
  padding: 0.45rem 0.7rem;
}

.photo-view-controls button {
  width: auto;
  min-width: 0;
  padding: 0.45rem 0.7rem;
}

.photo-view-controls button.is-active {
  border-color: var(--gold);
  color: var(--gold);
}

.album-row,
.photo-row {
  display: grid;
  gap: 0.6rem;
  border: 1px solid var(--border);
  padding: 0.8rem;
}

.album-row {
  grid-template-columns: 1fr auto auto;
  align-items: center;
}

.album-row .move-to-input {
  width: 54px;
  min-width: 54px;
}

.photo-row {
  grid-template-columns: 88px 1fr auto;
  align-items: center;
  cursor: grab;
}

.photo-row.dragging {
  opacity: 0.55;
  border-color: var(--gold);
}

.photo-row.drop-target {
  border-color: var(--gold);
  background: rgba(197, 168, 128, 0.06);
}

.photo-row img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.photo-actions {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  flex-wrap: wrap;
}

.move-to-wrap {
  display: flex;
  gap: 0.3rem;
  align-items: center;
}

.move-to-input {
  width: 58px;
  min-width: 58px;
  padding: 0.35rem 0.45rem;
  font-size: 0.82rem;
}

.move-to-input.is-staged {
  border-color: var(--gold);
  color: var(--gold);
}

.move-to-wrap button {
  min-width: 62px;
}

.photo-actions button {
  min-width: 54px;
  width: auto;
  padding: 0.5rem 0.6rem;
}

#photos-list.compact-photo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}

#photos-list.compact-photo-grid .photo-row {
  grid-template-columns: 1fr;
  gap: 0.35rem;
  padding: 0.4rem;
}

#photos-list.compact-photo-grid .photo-row img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
}

#photos-list.compact-photo-grid .photo-row > div:first-of-type {
  font-size: 0.72rem;
  line-height: 1.2;
}

#photos-list.compact-photo-grid .photo-row > div:first-of-type .photo-subtitle {
  display: none;
}

#photos-list.compact-photo-grid .photo-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.3rem;
}

#photos-list.compact-photo-grid .move-to-wrap {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

#photos-list.compact-photo-grid .move-to-input {
  width: 100%;
  min-width: 0;
}

#photos-list.compact-photo-grid .photo-actions button {
  width: 100%;
  min-width: 0;
  padding: 0.32rem 0.22rem;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.visibility-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  width: auto;
}

.visibility-toggle input {
  width: auto;
}

.dropzone {
  border: 1px dashed var(--border);
  padding: 1.2rem;
  text-align: center;
  color: rgba(232, 226, 217, 0.75);
}

.dropzone.is-over {
  border-color: var(--gold);
  color: var(--gold);
}

.upload-note {
  color: rgba(232, 226, 217, 0.62);
  font-size: 0.85rem;
}

.testimonial-move-controls {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.testimonial-move-controls button {
  width: auto;
  min-width: 0;
  padding: 0.45rem 0.65rem;
}

.admin-cover-preview {
  width: min(240px, 100%);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--border);
  background: #111;
}

.upload-status {
  margin-top: 0.8rem;
  border: 1px solid var(--border);
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.01);
}

#upload-status-text {
  font-size: 0.9rem;
  color: rgba(232, 226, 217, 0.82);
  margin-bottom: 0.55rem;
}

.upload-progress-track {
  width: 100%;
  height: 8px;
  background: #141414;
  border: 1px solid var(--border);
}

.upload-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--blush) 100%);
  transition: width 0.2s ease;
}

.hidden {
  display: none !important;
}

@media (min-width: 760px) {
  .photo-grid.cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .packages {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .packages.packages-premium {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  .admin-grid {
    grid-template-columns: 1.1fr 1fr;
  }

  .story-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-nav.story-nav-single {
    grid-template-columns: 1fr;
  }

  #album-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  #photos-list.compact-photo-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .about-layout {
    grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
    gap: 1.6rem;
  }

  .about-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem;
  }

  .about-experience-card {
    grid-column: 1 / -1;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .is-ordered-masonry {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  #portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 759px) {
  .header-inner {
    min-height: auto;
    padding: 0.8rem 1rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "brand brand brand"
      "nav-left lang nav-right";
    row-gap: 0.9rem;
  }

  .brand-stack {
    grid-area: brand;
    width: 100%;
  }

  .brand-topline {
    white-space: nowrap;
    font-size: 8px;
    letter-spacing: 0.16em;
    margin-bottom: 0.35rem;
  }

  .logo {
    display: block;
    line-height: 1.1;
  }

  .header-inner > .menu-link:first-of-type {
    grid-area: nav-left;
    justify-self: start;
    align-self: center;
    margin: 0;
  }

  .header-inner > .menu-link:last-of-type {
    grid-area: nav-right;
    justify-self: end;
    align-self: center;
    margin: 0;
  }

  .lang-switcher {
    grid-area: lang;
    position: static;
    transform: none;
    justify-self: center;
    align-self: center;
  }

  .lang-btn {
    font-size: 11px;
    letter-spacing: 0.14em;
    opacity: 0.8;
  }

  .menu-link {
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .hero h1 {
    line-height: 1;
  }

  .hero-copy {
    padding: 0.9rem 0.7rem 0.8rem;
    display: flex;
    flex-direction: column;
  }

  .hero-copy h1 {
    order: 1;
  }

  .hero-proof {
    order: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    max-width: 100%;
    margin: 1.3rem auto 1.5rem;
  }

  .hero-proof-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(232, 226, 217, 0.15);
  }

  /* Hide the 2nd counter item (Countries) on mobile to keep it cleaner */
  .hero-proof-item:nth-child(2) {
    display: none;
  }

  .hero-proof-value {
    font-size: 1rem;
    margin: 0;
  }

  .hero-proof-label {
    margin: 0;
    font-size: 9px;
  }

  .signature-chip {
    order: 3;
    margin: 0 auto 1.8rem;
    font-size: 0.98rem;
    opacity: 0.85;
  }

  .hero-actions {
    order: 4;
  }

  .section {
    padding: var(--section-space) 0;
  }

  .section-head {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .section-quote h2 {
    font-size: clamp(1.45rem, 4.5vw, 2.2rem);
    color: rgba(232, 226, 217, 0.85);
    line-height: 1.45;
  }

  .section-quote p {
    margin-top: 1.2rem;
    font-size: 10px;
  }

  .about-story-panel,
  .testimonial-card {
    text-align: center;
  }

  .centered-grid > :nth-child(odd),
  .centered-grid > :nth-child(even) {
    transform: none;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 1.2rem 1.8rem;
  }

  .photo-row {
    grid-template-columns: 72px 1fr;
  }

  .photo-row img {
    width: 72px;
    height: 72px;
  }

  .photo-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .photo-order-controls {
    flex-wrap: wrap;
  }

  .floating-cta {
    display: none;
  }

  .mobile-sticky-cta {
    display: block;
    position: fixed;
    top: 86px;
    left: 0;
    width: 100%;
    z-index: 65;
    padding: 0.45rem 0.7rem;
    background: rgba(10, 10, 10, 0.92);
    border-bottom: 1px solid var(--border);
  }

  .mobile-sticky-cta-button {
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #d4ba95 0%, #e5cfd9 100%);
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 10px;
    padding: 0.62rem 0.72rem;
    border: 1px solid transparent;
    border-radius: 999px;
  }

  .mobile-sticky-cta-button:active {
    transform: translateY(1px);
  }

  .floating-cta-button,
  .floating-cta-note,
  .mobile-sticky-cta-button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (min-width: 1024px) {
  .photo-grid.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .is-ordered-masonry {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #album-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #photos-list.compact-photo-grid {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}



/* Admin Dashboard layout */
.admin-dashboard-layout {
  display: flex;
  min-height: calc(100vh - 80px);
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
  padding-top: 100px;
  padding-bottom: 4rem;
}

.admin-sidebar {
  width: 250px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  padding-right: 1.5rem;
}

.admin-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: sticky;
  top: 120px;
}

.admin-nav-button {
  background: transparent;
  border: none;
  color: var(--text-muted);
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: color 0.3s, background 0.3s;
  border-left: 2px solid transparent;
}

.admin-nav-button:hover, .admin-nav-button.active {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.03);
  border-left-color: var(--gold);
}

.admin-content-area {
  flex-grow: 1;
  min-width: 0; 
}

.admin-tab-pane {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.admin-tab-pane.active {
  display: block;
}

.admin-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}

.admin-header-row h1, .admin-header-row h2 {
  margin: 0;
  font-size: 2.2rem;
}

@media (max-width: 768px) {
  .admin-dashboard-layout {
    flex-direction: column;
    padding-top: 5rem;
  }
  .admin-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 1rem;
  }
  .admin-nav-menu {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .admin-nav-button {
    border-left: none;
    border-bottom: 2px solid transparent;
  }
  .admin-nav-button:hover, .admin-nav-button.active {
    border-left-color: transparent;
    border-bottom-color: var(--gold);
  }
}

/* Modern Scroll Reveals (2026) */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cinematic Hero Entrance (Pure CSS) */
@keyframes cinematic-fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-image-zoom {
  from {
    opacity: 0;
    transform: scale(1.15);
  }
  to {
    opacity: 0.72;
    transform: scale(1.05);
  }
}

.animate-entrance {
  opacity: 0; /* Hidden before animation starts */
  animation: cinematic-fade-up 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  will-change: opacity, transform;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }

/* Editorial Magazine Style (Ultra-Premium 2026) */
.text-massive {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 12vw, 10rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  font-style: italic;
  margin: 0;
  white-space: nowrap;
}

.text-massive-sub {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.7rem, 2vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.4em;
  margin-top: 2rem;
  color: var(--gold);
}

.editorial-drop-cap::first-letter {
  float: left;
  font-size: 5.5em;
  line-height: 0.65;
  padding-top: 0.15em;
  padding-right: 0.1em;
  padding-left: 0.05em;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--gold);
}

.editorial-pull-quote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  font-style: italic;
  margin: 4rem 0;
  padding-left: 2rem;
  border-left: 2px solid var(--gold);
  color: var(--text);
}

.text-gold-italic {
  color: var(--gold);
  font-style: italic;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.cta-editorial {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 11px;
  padding: 0.5rem 0;
  border-bottom: 2px solid var(--border);
  transition: border-color var(--motion-fast) var(--motion-ease), color var(--motion-fast) var(--motion-ease);
}

.cta-editorial .arrow {
  display: inline-block;
  transition: transform var(--motion-base) var(--motion-ease);
  font-size: 1.1em;
  line-height: 1;
}

.cta-editorial:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.cta-editorial:hover .arrow {
  transform: translate3d(6px, 0, 0);
  color: var(--gold);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .editorial-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
  }
}

.editorial-menu {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 800px;
  margin: 0 auto;
}

.editorial-menu-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.editorial-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 1rem;
}

.editorial-menu-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.02em;
}

.editorial-menu-price {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.editorial-menu-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .editorial-menu-details {
    grid-template-columns: 1fr 1fr;
  }
}

.editorial-menu-details li {
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.editorial-menu-details li::before {
  content: "—";
  color: var(--gold);
}

/* Contact Invitation Card (Luxury Style) */
.contact-panel {
  text-align: center;
  border: 1px solid rgba(212, 186, 149, 0.22);
  background: radial-gradient(circle at 50% 0%, rgba(212, 186, 149, 0.08), transparent 70%), rgba(15, 15, 15, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 5rem 2.5rem;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 60px rgba(212, 186, 149, 0.03);
  position: relative;
  overflow: hidden;
}

.contact-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.02);
  pointer-events: none;
  border-radius: 3px;
}

.contact-panel h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-style: italic;
  font-weight: 400;
  margin: 0 0 1.2rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.contact-panel p {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-weight: 300;
  max-width: 580px;
  margin: 0 auto 3rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.contact-panel .cta-container {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Polaroid Luxury Card Styling */
.polaroid-luxury {
  background: rgba(15, 15, 15, 0.45) !important;
  border: 1px solid var(--border) !important;
  padding: 1.2rem 1.2rem 2.2rem 1.2rem !important; /* Thick bottom frame */
  border-radius: 6px !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  display: flex !important;
  flex-direction: column !important;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s var(--motion-ease),
              box-shadow 0.4s var(--motion-ease),
              transform 0.4s var(--motion-ease) !important;
}

/* Initial cinematic rack-focus state for homepage featured stories ONLY */
#featured-grid .polaroid-luxury {
  opacity: 0;
  filter: blur(16px);
  transform: scale(1.08) translateY(35px);
  transition: opacity 1.3s var(--motion-ease), 
              filter 1.3s var(--motion-ease), 
              transform 1.3s var(--motion-ease),
              border-color 0.4s var(--motion-ease),
              box-shadow 0.4s var(--motion-ease) !important;
  will-change: opacity, filter, transform;
}

#featured-grid .polaroid-luxury.in-focus {
  opacity: 1;
  filter: blur(0);
  transform: scale(1) translateY(0);
}

@media (min-width: 768px) {
  #featured-grid .polaroid-luxury:nth-child(1) {
    transition-delay: 0.1s !important;
  }
  #featured-grid .polaroid-luxury:nth-child(2) {
    transition-delay: 0.3s !important;
  }
  #featured-grid .polaroid-luxury:nth-child(3) {
    transition-delay: 0.5s !important;
  }
}

.polaroid-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.polaroid-luxury .photo-media {
  border: 1px solid var(--border) !important;
  aspect-ratio: 1 / 1 !important; /* Authentic polaroid square crop */
  overflow: hidden !important;
  width: 100% !important;
  background: #0d0d0d;
}

.polaroid-luxury .photo-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.8s var(--motion-ease) !important;
}

.polaroid-luxury:hover {
  border-color: var(--gold) !important;
  box-shadow: 0 20px 45px rgba(212, 186, 149, 0.08) !important;
  transform: translateY(-8px) rotate(-1deg) !important; /* Playful tilt */
}

.polaroid-luxury:nth-child(even):hover {
  transform: translateY(-8px) rotate(1deg) !important;
}

.polaroid-luxury:hover .photo-media img {
  transform: scale(1.05);
}

.polaroid-footer {
  margin-top: 1.5rem;
  text-align: center;
}

.polaroid-footer h3 {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-style: italic !important;
  font-size: 1.35rem !important;
  font-weight: 400 !important;
  color: var(--gold) !important;
  margin: 0 0 0.3rem 0 !important;
  letter-spacing: 0.02em !important;
}

.polaroid-footer p {
  font-family: "Montserrat", sans-serif !important;
  font-size: 0.72rem !important;
  color: var(--text-muted) !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  margin: 0 !important;
}

/* Quote Word Reveal Animation */
.reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px) rotate(2deg);
  filter: blur(4px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--word-index) * 0.04s);
}

.reveal-word.is-revealed {
  opacity: 1;
  transform: translateY(0) rotate(0);
  filter: blur(0);
}

/* Custom Cursor for Galleries */
.gallery-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  mix-blend-mode: exclusion;
}

.gallery-cursor.is-active {
  transform: translate(-50%, -50%) scale(1);
}

.hide-default-cursor {
  cursor: none !important;
}

/* Badge Styles */
.awards-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.awards-grid a {
  display: block;
}

/* ProWed Badge — red PNG, show grayscale by default, original color on hover */
.badge-prowed {
  height: 70px;
  width: auto;
  filter: grayscale(1) brightness(1.3) opacity(0.6);
  transition: filter 0.4s var(--motion-ease), transform 0.4s var(--motion-ease), opacity 0.4s var(--motion-ease);
  display: block;
}
a:hover .badge-prowed,
.badge-prowed:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.08);
}
.about-affiliations .badge-prowed {
  height: 80px;
}

/* MyWed Badge — black SVG logo, needs invert to show white on dark bg */
.badge-mywed {
  transition: filter 0.4s var(--motion-ease), transform 0.4s var(--motion-ease), opacity 0.4s var(--motion-ease);
  display: block;
}
.badge-mywed img {
  filter: brightness(0) invert(1) opacity(0.7);
  transition: filter 0.4s var(--motion-ease), transform 0.4s var(--motion-ease);
  display: block;
}
.badge-mywed:hover img {
  filter: brightness(0) invert(1) opacity(1);
  transform: scale(1.08);
}

/* Fearless Photographers */
.fearless-honors {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.badge-fearless-frame {
  opacity: 0.75;
  transition: opacity 0.4s var(--motion-ease), transform 0.4s var(--motion-ease);
}
.badge-fearless-frame:hover {
  opacity: 1;
  transform: scale(1.08);
}
.badge-fearless-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  text-align: center;
  line-height: 1.6;
  transition: color 0.3s var(--motion-ease);
}
.badge-fearless-text:hover {
  color: var(--gold);
}

/* Picture of the Day Badge — red PNG, same treatment as ProWed */
.badge-picture-day {
  height: 70px;
  width: auto;
  filter: grayscale(1) brightness(1.3) opacity(0.6);
  transition: filter 0.4s var(--motion-ease), transform 0.4s var(--motion-ease), opacity 0.4s var(--motion-ease);
}
.badge-picture-day:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.08);
}
/* Elopement & Destination Feature Card */
.elopement-feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.elopement-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
}
.destination-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.dest-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(212, 186, 149, 0.08);
  border: 1px solid rgba(212, 186, 149, 0.25);
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
}

/* Meet Photographer Mini-Box */
.meet-photographer-box {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 4px;
}
@media (max-width: 768px) {
  .meet-photographer-box {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}
.meet-photo-wrap {
  flex-shrink: 0;
}
.meet-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  filter: contrast(1.05);
}

/* Smart Contact Pills Grid */
.smart-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
  text-align: left;
}
.contact-pill {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.35s var(--motion-ease);
  text-decoration: none;
}
.contact-pill:hover {
  background: rgba(212, 186, 149, 0.06);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.contact-pill-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.contact-pill-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Subtle photo card hover (replaces harsh 3D tilt) */
.photo-card {
  transition: transform 0.4s var(--motion-ease), box-shadow 0.4s var(--motion-ease);
}
.photo-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

