﻿@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Nunito+Sans:opsz,wght@6..12,400;6..12,500;6..12,600;6..12,700&display=swap");

:root {
  --kc-asset-build: "20260715d";
  --ink: #111214;
  --ink-soft: #17181b;
  --paper: #f8f6f2;
  --white: #fff;
  --muted: #746f67;
  --line: #ddd7ce;
  --gold: #b89a63;
  --gold-light: #d8c18f;
  --black-gradient: linear-gradient(145deg, #191a1d 0%, #0b0c0e 52%, #020203 100%);
  --black-gradient-soft: linear-gradient(145deg, #242529 0%, #121316 55%, #080809 100%);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  --serif: "Manrope", Arial, sans-serif;
  --sans: "Nunito Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 14% 4%, rgba(255,255,255,.72), transparent 32%),
    radial-gradient(circle at 88% 28%, rgba(194,188,178,.42), transparent 34%),
    linear-gradient(155deg, #e8e6e2 0%, #d8d5cf 48%, #cbc7c0 100%);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  border: 0;
  cursor: pointer;
}

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

.visually-hidden {
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

main {
  overflow: hidden;
}

.service-mode-grid,
.package-mode-grid {
  display: none;
}

.service-mode-grid.active,
.package-mode-grid.active {
  display: grid;
  animation: category-reveal 420ms cubic-bezier(.22,.75,.25,1) both;
}

@keyframes category-reveal {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.gallery-item[hidden] {
  display: none !important;
}

[data-service-card][hidden],
[data-package-card][hidden] {
  display: none !important;
}

[data-service-card]:not([hidden]),
[data-package-card]:not([hidden]) {
  animation: item-reveal 360ms cubic-bezier(.22,.75,.25,1) both;
}

@keyframes item-reveal {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.announcement {
  min-height: 32px;
  padding: 7px 4.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: var(--black-gradient);
  color: #ddd5c8;
  font-size: 10px;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.announcement span:first-child::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--gold-light);
  vertical-align: 1px;
}

.announcement-location {
  color: #817c74;
}

.site-header {
  width: calc(100% - 3vw);
  height: 80px;
  margin: 14px auto 0;
  padding: 0 4.5vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(248, 246, 241, 0.97);
  border-bottom: 1px solid rgba(16, 16, 15, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 45px rgba(17, 18, 20, 0.07);
  position: relative;
  z-index: 40;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
}

.site-logo {
  width: clamp(172px, 15vw, 220px);
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.site-logo-dark {
  filter: invert(1);
}

.site-logo-light {
  width: clamp(210px, 18vw, 270px);
}

.brand-mark {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1;
}

.brand-copy {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.brand-copy i {
  margin-left: 3px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 33px;
}

.nav-links a {
  position: relative;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links a:not(.nav-social)::after {
  content: "";
  width: 0;
  height: 1px;
  background: var(--gold);
  position: absolute;
  left: 0;
  bottom: -7px;
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-social {
  display: none;
}

.header-book {
  justify-self: end;
  padding: 11px 0;
  background: transparent;
  border-bottom: 1px solid var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-book span,
.button span {
  margin-left: 16px;
}

.menu-toggle {
  display: none;
}

.hero {
  width: calc(100% - 3vw);
  height: min(770px, calc(100vh - 112px));
  min-height: 620px;
  margin: 14px auto 0;
  position: relative;
  color: var(--white);
  background: #59544c;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-in 1.2s ease both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 10, 9, 0.76) 0%, rgba(10, 10, 9, 0.49) 38%, rgba(10, 10, 9, 0.06) 73%),
    linear-gradient(0deg, rgba(10, 10, 9, 0.42), transparent 44%);
}

@keyframes hero-in {
  from { opacity: 0; transform: scale(1.02); }
  to { opacity: 1; transform: scale(1); }
}

.hero-content {
  width: min(660px, 48vw);
  position: absolute;
  left: 7vw;
  top: 50%;
  transform: translateY(-56%);
}

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 35px;
  height: 1px;
  background: currentColor;
}

.eyebrow.light {
  color: var(--gold-light);
}

.hero h1,
.about h2,
.section-heading-row h2,
.deliverables h2,
.center-heading h2,
.booking h2,
.faq h2,
footer h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.hero h1 {
  font-size: clamp(67px, 7.2vw, 112px);
}

.hero h1 span {
  display: block;
  color: var(--gold-light);
  font-style: italic;
}

.hero-copy {
  max-width: 480px;
  margin: 30px 0 32px;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 33px;
}

.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  background: linear-gradient(135deg, #c6ad79 0%, var(--gold) 58%, #9f814d 100%);
  color: var(--white);
}

.button-gold:hover {
  background: #a98549;
}

.hero-primary {
  min-width: 230px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.4);
  background: linear-gradient(135deg, #e0ca95 0%, #c3a463 48%, #96723a 100%);
  box-shadow: 0 18px 45px rgba(194, 158, 88, 0.38), inset 0 1px 0 rgba(255,255,255,0.42);
  color: #111214;
  font-weight: 800;
}

.hero-primary::before {
  content: "";
  width: 45%;
  position: absolute;
  top: -80%;
  bottom: -80%;
  left: -70%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.52), transparent);
  transform: rotate(18deg);
  animation: hero-button-shine 4.8s ease-in-out infinite;
}

.hero-primary span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  background: rgba(17,18,20,0.92);
  border-radius: 50%;
  color: #fff;
}

.hero-primary:hover {
  background: linear-gradient(135deg, #ead8aa 0%, #c9aa68 52%, #9f7c43 100%);
  box-shadow: 0 22px 55px rgba(194, 158, 88, 0.48), inset 0 1px 0 rgba(255,255,255,0.55);
}

@keyframes hero-button-shine {
  0%, 62% { left: -70%; }
  82%, 100% { left: 135%; }
}

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

.text-link {
  padding: 8px 0;
  display: inline-flex;
  gap: 22px;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.light-link {
  color: rgba(255,255,255,0.82);
}

.hero-explore {
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.48);
  border-radius: var(--radius-pill);
  background: rgba(7,8,9,0.42);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.12);
  color: #fff;
  text-shadow: 0 1px 12px rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
}

.hero-explore:hover {
  background: rgba(7,8,9,0.68);
  border-color: var(--gold-light);
}

.hero-proof {
  position: absolute;
  left: 7vw;
  bottom: 42px;
  display: flex;
  gap: 45px;
}

.hero-proof div {
  padding-right: 45px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.hero-proof span,
.hero-caption {
  color: rgba(255,255,255,0.5);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-caption {
  margin: 0;
  position: absolute;
  right: 30px;
  bottom: 25px;
  writing-mode: vertical-rl;
}

.section-pad {
  padding: 130px 7vw;
}

.about {
  min-height: 560px;
  display: grid;
  grid-template-columns: 0.42fr 1.2fr 0.88fr;
  gap: 7vw;
  position: relative;
}

.section-index {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  color: var(--muted);
}

.section-index span {
  font-family: var(--serif);
  font-size: 44px;
  color: var(--gold);
}

.section-index p {
  margin: 16px 0 0;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-heading h2 {
  font-size: clamp(58px, 6vw, 94px);
}

.about-heading em,
.booking h2 em {
  display: block;
  color: var(--gold);
  font-weight: 400;
}

.about-copy {
  padding-top: 47px;
}

.about-copy p {
  margin: 0 0 17px;
  color: #5e5a53;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.62;
}

.about-copy .text-link {
  margin-top: 15px;
}

.signature {
  position: absolute;
  right: 6vw;
  bottom: 35px;
  color: rgba(185, 150, 88, 0.18);
  font-family: var(--serif);
  font-size: 75px;
  font-style: italic;
  transform: rotate(-8deg);
}

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

.section-heading-row {
  margin-bottom: 55px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading-row .eyebrow,
.center-heading .eyebrow {
  margin-bottom: 18px;
}

.section-heading-row h2,
.center-heading h2,
.deliverables h2,
.faq h2 {
  font-size: clamp(54px, 5.8vw, 86px);
}

.mode-switch {
  display: flex;
  border-bottom: 1px solid var(--line);
}

.mode-switch button {
  padding: 14px 25px;
  background: transparent;
  color: #8e8981;
  border-bottom: 2px solid transparent;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mode-switch button.active {
  color: var(--ink);
  border-color: var(--gold);
}

.subcategory-switch {
  margin: -26px 0 30px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.subcategory-switch.active {
  display: flex;
  animation: category-reveal 360ms cubic-bezier(.22,.75,.25,1) both;
}

.subcategory-switch > span {
  flex: 0 0 auto;
  color: #8a847b;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.subcategory-switch > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.subcategory-switch button {
  min-height: 40px;
  padding: 0 17px;
  background: #f5f1e9;
  border: 1px solid #ded7cb;
  border-radius: var(--radius-pill);
  color: #777169;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.subcategory-switch button.active {
  background: var(--black-gradient-soft);
  border-color: #17181a;
  color: var(--gold-light);
  box-shadow: 0 10px 25px rgba(17,18,20,0.14);
}

.subcategory-switch button:active { transform: scale(.97); }

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(310px,.85fr);
  overflow: hidden;
  background: linear-gradient(135deg, #faf8f3, #f0ebe2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 55px rgba(17,18,20,0.06);
}

.service-image-wrap {
  height: 510px;
  position: relative;
  overflow: hidden;
  background: #ded9d0;
  border-radius: 0;
}

.service-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover img {
  transform: scale(1.035);
}

.service-card:first-child .service-image-wrap img {
  object-position: 60% center;
}

.image-tag {
  padding: 8px 12px;
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255,255,255,0.9);
  border-radius: var(--radius-pill);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-card-copy {
  padding: 46px 38px;
  display: grid;
  grid-template-columns: 35px 1fr 38px;
  gap: 15px;
  align-items: center;
  align-content: center;
}

.service-number {
  padding-top: 8px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 17px;
}

.service-card h3,
.deliverable-row h3,
.process h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.service-card p {
  margin: 9px 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.52;
}

.service-card-copy button {
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}

.service-card-copy button:hover {
  background: var(--ink);
  color: var(--white);
}

.deliverables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #ece8df;
}

.deliverables-image {
  min-height: 820px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.deliverables-image > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.deliverables-stamp {
  width: 145px;
  height: 145px;
  position: absolute;
  right: 35px;
  bottom: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(248,246,241,0.93);
  border-radius: 50%;
  color: var(--ink);
}

.deliverables-stamp span {
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.deliverables-stamp strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 500;
}

.deliverables-copy {
  padding: 100px 8vw 85px;
}

.deliverables-copy h2 {
  max-width: 580px;
}

.deliverables-lead {
  max-width: 510px;
  margin: 25px 0 35px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
}

.deliverable-row {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  border-top: 1px solid #cec8be;
}

.deliverable-row > span {
  padding-top: 6px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 16px;
}

.deliverable-row h3 {
  font-size: 22px;
}

.deliverable-row p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.packages {
  background: var(--paper);
}

.center-heading {
  max-width: 650px;
  margin: 0 auto 55px;
  text-align: center;
}

.center-heading .eyebrow {
  justify-content: center;
}

.center-heading > p:last-child {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 17px;
}

.package-switch-row {
  margin: -20px auto 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
}

.package-mode-switch {
  min-width: 340px;
}

.package-mode-switch button {
  flex: 1;
}

.package-carousel-controls {
  display: flex;
  gap: 8px;
}

.package-carousel-controls button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  font-size: 17px;
  box-shadow: 0 8px 25px rgba(17,18,20,0.05);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.package-carousel-controls button:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: #f8f4ec;
}

.package-grid {
  grid-auto-flow: column;
  grid-auto-columns: min(440px, calc((100% - 18px) / 2));
  gap: 18px;
  align-items: stretch;
  padding: 16px 3px 26px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 3px;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.package-grid::-webkit-scrollbar { display: none; }

.package-card {
  padding: 46px 38px 38px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #e0dbd2;
  border-radius: var(--radius-md);
  box-shadow: 0 18px 55px rgba(17,18,20,0.05);
  scroll-snap-align: start;
}

.package-featured {
  background: var(--black-gradient-soft);
  color: var(--white);
  border-color: var(--ink-soft);
  transform: translateY(-12px);
}

.popular {
  padding: 8px 15px;
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #c6ad79, #a78853);
  border-radius: var(--radius-pill);
  color: var(--white);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.package-eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.package-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
}

.package-description {
  min-height: 62px;
  margin: 13px 0 25px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.45;
}

.package-featured .package-description,
.package-featured li {
  color: #aaa59d;
}

.price {
  padding: 22px 0;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  border-top: 1px solid rgba(128,120,108,0.3);
  border-bottom: 1px solid rgba(128,120,108,0.3);
}

.price span {
  padding-bottom: 6px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price strong {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
}

.package-card ul {
  min-height: 165px;
  margin: 25px 0 20px;
  padding: 0;
  list-style: none;
}

.package-card li {
  margin: 0 0 14px;
  color: #5f5b55;
  font-size: 11px;
}

.package-card li span {
  margin-right: 10px;
  color: var(--gold);
}

.package-card .button {
  width: 100%;
  margin-top: auto;
}

.package-note {
  margin: 30px 0 0;
  text-align: center;
  color: var(--muted);
  font-family: var(--serif);
}

.package-swipe-hint {
  display: none;
}

.package-note button {
  padding: 0;
  background: transparent;
  border-bottom: 1px solid var(--gold);
  color: var(--ink);
  font-family: inherit;
}

.work {
  background: var(--white);
}

.gallery-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.gallery-filter button {
  padding: 8px 3px;
  margin-left: 13px;
  background: transparent;
  color: #8d8880;
  border-bottom: 1px solid transparent;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
}

.gallery-filter button.active {
  color: var(--ink);
  border-color: transparent;
  background: #eee8dd;
  padding-left: 13px;
  padding-right: 13px;
}

.gallery-grid {
  min-height: 500px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 80px;
  gap: 16px;
}

.gallery-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #dfdbd2;
  border-radius: var(--radius-md);
}

.gallery-item-0 { grid-column: span 5; grid-row: span 7; }
.gallery-item-1 { grid-column: span 3; grid-row: span 6; }
.gallery-item-2 { grid-column: span 4; grid-row: span 5; }
.gallery-item-3 { grid-column: span 4; grid-row: span 5; }
.gallery-item-4 { grid-column: span 3; grid-row: span 6; }
.gallery-item-5 { grid-column: span 5; grid-row: span 7; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.gallery-item-0 img { object-position: 57% center; }

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(8,8,7,0.65));
  pointer-events: none;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--white);
}

.gallery-caption > span {
  display: flex;
  flex-direction: column;
}

.gallery-caption small {
  margin-bottom: 5px;
  color: var(--gold-light);
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gallery-caption strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.gallery-caption i {
  font-size: 18px;
  font-style: normal;
}

.album-body {
  background: var(--paper);
}

.album-page {
  min-height: 100vh;
}

.album-header {
  width: calc(100% - 3vw);
  min-height: 80px;
  margin: 14px auto 0;
  padding: 0 4.5vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(248,246,242,.98);
  border: 1px solid rgba(17,18,20,.08);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 45px rgba(17,18,20,.06);
  position: relative;
  z-index: 5;
}

.album-header nav {
  display: flex;
  gap: 32px;
}

.album-header nav a,
.album-header-contact {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.album-header-contact {
  justify-self: end;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ink);
}

.album-breadcrumb {
  width: min(1120px, 88vw);
  margin: 38px auto 22px;
  display: flex;
  gap: 9px;
  color: #8d8880;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.album-breadcrumb a:hover {
  color: var(--gold);
}

.album-hero {
  width: calc(100% - 3vw);
  height: min(790px, 78vh);
  min-height: 590px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #4e4b46;
  color: var(--white);
}

.album-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.album-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4,4,4,.72), rgba(4,4,4,.05) 62%);
}

.album-hero-copy {
  position: absolute;
  left: 6vw;
  right: 6vw;
  bottom: 6vw;
}

.album-hero-copy p {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.album-hero-copy h1 {
  max-width: 1000px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(64px, 9vw, 142px);
  font-weight: 500;
  line-height: .92;
  letter-spacing: -.055em;
}

.album-hero-copy a {
  margin-top: 30px;
  display: inline-flex;
  gap: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.album-intro {
  width: min(1180px, 88vw);
  margin: 0 auto;
  padding: 120px 0 110px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 10vw;
}

.album-intro h2,
.album-related h2,
.album-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.045em;
}

.album-intro h2 {
  font-size: clamp(54px, 6.5vw, 92px);
  line-height: .98;
}

.album-intro h2 span {
  display: block;
  color: var(--gold);
  font-style: italic;
}

.album-intro > div:last-child > p {
  margin: 45px 0 48px;
  color: #5f5b55;
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.58;
}

.album-intro dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.album-intro dl div {
  padding: 16px 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  border-bottom: 1px solid var(--line);
}

.album-intro dt {
  color: #9b958b;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.album-intro dd {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

.album-story-grid {
  width: calc(100% - 3vw);
  margin: 0 auto;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
}

.album-photo {
  min-height: 560px;
  margin: 0;
  grid-column: span 6;
  position: relative;
  overflow: hidden;
  background: #e2ded6;
  border-radius: var(--radius-md);
}

.album-photo-0 { grid-column: span 7; min-height: 820px; }
.album-photo-1 { grid-column: span 5; min-height: 670px; align-self: end; }
.album-photo-2 { grid-column: span 5; min-height: 700px; }
.album-photo-3 { grid-column: span 7; min-height: 850px; }
.album-photo-4 { grid-column: span 8; min-height: 780px; }
.album-photo-5 { grid-column: span 4; min-height: 600px; align-self: center; }

.album-photo img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.album-photo figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  padding: 16px 18px;
  display: flex;
  gap: 18px;
  background: rgba(13,13,13,.72);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  color: var(--white);
}

.album-photo figcaption span {
  color: var(--gold-light);
  font-size: 9px;
  letter-spacing: .12em;
}

.album-photo figcaption p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

.album-related {
  padding: 130px 5vw;
}

.album-related-heading {
  margin-bottom: 42px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.album-related h2 {
  font-size: clamp(56px, 6vw, 88px);
}

.album-related-heading > a {
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.album-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.album-related-grid a {
  min-height: 480px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  color: var(--white);
}

.album-related-grid img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  transition: transform .6s ease;
}

.album-related-grid a:hover img { transform: scale(1.035); }

.album-related-grid a::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
}

.album-related-grid a > span {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.album-related-grid small {
  margin-bottom: 6px;
  color: var(--gold-light);
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.album-related-grid strong {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
}

.album-cta {
  width: calc(100% - 3vw);
  margin: 0 auto;
  padding: 110px 6vw;
  text-align: center;
  background: var(--black-gradient);
  border-radius: var(--radius-lg);
  color: var(--white);
}

.album-cta > p {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.album-cta h2 {
  margin: 24px 0 38px;
  font-size: clamp(54px, 7vw, 102px);
  line-height: .98;
}

.album-cta h2 em { color: var(--gold-light); font-style: italic; }

.album-footer {
  padding: 34px 5vw 110px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 25px;
  color: #827c73;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.album-footer a:last-child { justify-self: end; }

.album-not-found {
  min-height: 100vh;
  padding: 10vw;
  display: grid;
  place-content: center;
  justify-items: start;
  background: var(--black-gradient);
  color: var(--white);
}

.album-not-found img { width: 230px; margin-bottom: 45px; }
.album-not-found p { color: var(--gold-light); text-transform: uppercase; letter-spacing: .16em; }
.album-not-found h1 { max-width: 700px; margin: 12px 0 35px; font-family: var(--serif); font-size: clamp(52px, 8vw, 100px); line-height: .95; }

.process {
  width: calc(100% - 3vw);
  margin: 0 auto;
  background: var(--black-gradient);
  border-radius: var(--radius-lg);
  color: var(--white);
}

.light-center h2 {
  color: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.14);
}

.process-grid article {
  min-height: 250px;
  padding: 32px 32px 20px 0;
  border-right: 1px solid rgba(255,255,255,0.14);
}

.process-grid article:not(:first-child) {
  padding-left: 32px;
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid > article > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 20px;
}

.process h3 {
  margin-top: 50px;
  font-size: 26px;
}

.process article p {
  margin: 10px 0 0;
  color: #96918a;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.55;
}

.booking {
  width: calc(100% - 3vw);
  margin: 14px auto 0;
  padding: 120px 7vw;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 8vw;
  background:
    linear-gradient(145deg, rgba(25,26,29,0.92), rgba(2,2,3,0.97)),
    url("/assets/images/hero-graduation.png") center/cover;
  color: var(--white);
  border-radius: var(--radius-lg);
}

.booking-intro {
  padding-top: 35px;
}

.booking h2 {
  font-size: clamp(62px, 6vw, 96px);
}

.booking-intro > p:not(.eyebrow) {
  max-width: 480px;
  margin: 28px 0;
  color: #aaa59d;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
}

.booking-contact {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.booking-contact span { color: #77726b; }
.booking-contact a { color: var(--gold-light); }

.booking-form {
  padding: 45px 50px;
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius-md);
  box-shadow: 0 26px 70px rgba(0,0,0,0.2);
}

.form-heading {
  margin-bottom: 34px;
  padding-bottom: 18px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.form-heading strong { color: #9c978f; }

.booking-form label {
  margin-bottom: 23px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #5e5a54;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.booking-form label span {
  color: #aaa59c;
  font-weight: 400;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 13px 15px;
  background: rgba(255,255,255,0.78);
  border: 1px solid #d6d0c6;
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  outline: none;
  text-transform: none;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--gold);
}

.booking-form textarea { resize: vertical; }

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

.form-submit {
  width: 100%;
  margin-top: 7px;
}

.form-note {
  margin: 14px 0 0;
  color: #8c877f;
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.faq {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 9vw;
  background: var(--paper);
}

.faq-heading > p:not(.eyebrow) {
  margin-top: 25px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 17px;
}

.faq-heading .text-link {
  margin-top: 10px;
}

.faq-item {
  margin-bottom: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item > button {
  width: 100%;
  padding: 24px 20px;
  display: grid;
  grid-template-columns: 45px 1fr 25px;
  align-items: center;
  text-align: left;
  background: transparent;
}

.faq-item button span {
  color: var(--gold);
  font-family: var(--serif);
}

.faq-item button strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

.faq-item button i {
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-answer p {
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
}

.faq-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-open .faq-answer p {
  padding: 0 45px 25px;
}

.photographer-profile {
  width: calc(100% - 3vw);
  min-height: 470px;
  margin: 14px auto 0;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 5vw, 88px);
  align-items: stretch;
  background: linear-gradient(135deg, #ffffff 0%, #f4f0e9 100%);
  border: 1px solid rgba(184, 154, 99, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 75px rgba(17, 18, 20, 0.06);
}

.photographer-photo {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #d8d1c5;
}

.photographer-photo::after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(transparent, rgba(5, 5, 6, 0.58));
}

.photographer-photo img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center 36%;
}

.photographer-photo > span {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.84);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.photographer-profile-copy {
  max-width: 700px;
  padding: clamp(34px, 5vw, 72px) 6vw clamp(34px, 5vw, 72px) 0;
  align-self: center;
}

.photographer-profile-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.photographer-profile-copy h2 span {
  display: block;
  color: var(--gold);
}

.photographer-role {
  width: fit-content;
  margin: 24px 0 18px;
  padding: 9px 14px;
  background: rgba(184, 154, 99, 0.12);
  border: 1px solid rgba(184, 154, 99, 0.2);
  border-radius: var(--radius-pill);
  color: #806638;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.photographer-bio {
  max-width: 620px;
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

footer {
  width: calc(100% - 3vw);
  margin: 14px auto 1.5vw;
  padding: 80px 7vw 28px;
  background: var(--black-gradient);
  border-radius: var(--radius-lg);
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 0.55fr 1.35fr 0.55fr;
  align-items: center;
  gap: 45px;
}

.footer-brand .brand-mark {
  border-color: var(--white);
}

footer h2 {
  max-width: 700px;
  font-size: clamp(42px, 4.5vw, 70px);
  color: #e6e1d8;
}

.footer-bottom {
  margin-top: 70px;
  padding-top: 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: #77736d;
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
  color: #b7b1a8;
}

.footer-bottom > a {
  justify-self: end;
}

.mobile-book {
  display: none;
}

.floating-whatsapp {
  min-height: 58px;
  padding: 8px 18px 8px 8px;
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 65;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: linear-gradient(135deg, #25d366, #159648);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-pill);
  color: #fff;
  box-shadow: 0 16px 38px rgba(20, 132, 62, 0.32);
  isolation: isolate;
  animation: whatsapp-float 2.8s ease-in-out infinite;
}

.floating-whatsapp::before,
.floating-whatsapp::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border: 1px solid rgba(37, 211, 102, 0.48);
  border-radius: inherit;
  animation: whatsapp-pulse 2.4s ease-out infinite;
}

.floating-whatsapp::after {
  animation-delay: 1.2s;
}

.floating-whatsapp-symbol {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(255,255,255,0.96);
  border-radius: 50%;
  color: #138e43;
}

.floating-whatsapp-symbol svg {
  width: 25px;
  height: 25px;
  display: block;
}

.floating-whatsapp-symbol img {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}

.floating-whatsapp-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@keyframes whatsapp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes whatsapp-pulse {
  0% { opacity: 0.55; transform: scale(1); }
  78%, 100% { opacity: 0; transform: scale(1.24); }
}

@media (max-width: 1050px) {
  .nav-links { gap: 20px; }
  .hero-content { width: 58vw; }
  .about { grid-template-columns: 0.25fr 1fr 0.9fr; gap: 5vw; }
  .service-image-wrap { height: 360px; }
  .deliverables-copy { padding: 80px 6vw; }
  .package-card { padding: 42px 27px 30px; }
  .booking { gap: 5vw; }
  .booking-form { padding: 40px 35px; }
}

@media (max-width: 820px) {
  body { padding-bottom: 82px; }
  .announcement { justify-content: flex-start; padding-left: 5vw; }
  .announcement-location { display: none; }
  .site-header {
    width: calc(100% - 4vw);
    height: 68px;
    margin-top: 8px;
    padding: 0 5vw;
    grid-template-columns: 1fr auto;
    border-radius: 18px;
  }
  .header-book { display: none; }
  .menu-toggle {
    width: 38px;
    height: 38px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    justify-self: end;
    background: transparent;
  }
  .menu-toggle span {
    width: 22px;
    height: 1px;
    background: var(--ink);
  }
  .nav-links {
    display: none;
    padding: 32px 6vw 40px;
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(0,0,0,0.08);
    border-radius: 0 0 18px 18px;
  }
  .nav-links-open { display: flex; }
  .nav-links a { font-size: 12px; }
  .nav-social { display: block; color: var(--gold); }
  .hero {
    width: calc(100% - 4vw);
    margin-top: 8px;
    height: calc(100svh - 100px);
    min-height: 650px;
  }
  .hero-image { object-position: 62% center; }
  .hero-shade {
    background: linear-gradient(0deg, rgba(8,8,7,0.84) 0%, rgba(8,8,7,0.33) 58%, rgba(8,8,7,0.08) 100%);
  }
  .hero-content {
    width: auto;
    left: 7vw;
    right: 7vw;
    top: auto;
    bottom: 128px;
    transform: none;
  }
  .hero h1 { font-size: clamp(57px, 14vw, 84px); }
  .hero-copy { max-width: 410px; margin: 22px 0 26px; font-size: 17px; }
  .hero-proof { left: 7vw; right: 7vw; bottom: 35px; gap: 0; justify-content: space-between; }
  .hero-proof div { padding-right: 4vw; border: 0; }
  .hero-proof strong { font-size: 21px; }
  .hero-proof span { max-width: 100px; }
  .hero-caption { display: none; }
  .section-pad { padding: 90px 6vw; }
  .about { grid-template-columns: 1fr; gap: 25px; }
  .section-index { display: none; }
  .about-copy { padding-top: 0; max-width: 620px; }
  .signature { right: 7vw; bottom: 15px; }
  .section-heading-row { align-items: flex-start; flex-direction: column; }
  .service-grid { grid-template-columns: 1fr; gap: 45px; }
  .service-card { grid-template-columns: 1fr; }
  .service-image-wrap { height: min(550px, 75vw); }
  .service-card-copy { padding: 30px 25px; }
  .deliverables { grid-template-columns: 1fr; }
  .deliverables-image { min-height: 650px; }
  .deliverables-image { border-radius: var(--radius-lg); }
  .package-grid { grid-auto-columns: min(78vw, 480px); gap: 16px; }
  .package-featured { transform: none; }
  .package-description { min-height: auto; }
  .package-card ul { min-height: auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 290px; }
  .gallery-item-0,
  .gallery-item-1,
  .gallery-item-2,
  .gallery-item-3,
  .gallery-item-4,
  .gallery-item-5 { grid-column: span 1; grid-row: span 1; }
  .gallery-item-0,
  .gallery-item-5 { grid-row: span 2; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid article:nth-child(2) { border-right: 0; }
  .process-grid article:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.14); }
  .booking { grid-template-columns: 1fr; gap: 35px; }
  .booking-intro { padding-top: 0; }
  .faq { grid-template-columns: 1fr; gap: 50px; }
  .photographer-profile {
    width: calc(100% - 4vw);
    grid-template-columns: 1fr;
    gap: 0;
  }
  .photographer-photo { min-height: min(112vw, 620px); }
  .photographer-profile-copy { padding: 52px 5vw 48px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-top .button { justify-self: start; }
  .footer-bottom { grid-template-columns: 1fr auto; row-gap: 20px; }
  .footer-bottom div { grid-row: 2; grid-column: 1 / -1; }
  .mobile-book {
    height: 64px;
    padding: 0 23px;
    position: fixed;
    left: 3vw;
    right: 3vw;
    bottom: 10px;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #c6ad79, #a78853);
    border-radius: var(--radius-pill);
    box-shadow: 0 14px 35px rgba(37,29,18,0.28);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .floating-whatsapp {
    right: 4vw;
    bottom: 88px;
  }
}

@media (max-width: 540px) {
  .site-logo { width: 150px; }
  .hero { min-height: 670px; }
  .hero-content { bottom: 145px; }
  .eyebrow { font-size: 8px; letter-spacing: 0.2em; }
  .hero h1 { font-size: clamp(55px, 16vw, 72px); }
  .hero-copy { max-width: 310px; font-size: 16px; }
  .hero-actions { gap: 20px; }
  .hero-actions .text-link { font-size: 8px; }
  .hero-proof div:nth-child(3) { display: none; }
  .hero-proof { justify-content: flex-start; gap: 35px; }
  .about-heading h2,
  .section-heading-row h2,
  .center-heading h2,
  .deliverables h2,
  .faq h2 { font-size: 52px; }
  .about-copy p { font-size: 17px; }
  .mode-switch { width: 100%; }
  .mode-switch button { flex: 1; padding: 14px 10px; }
  .subcategory-switch,
  .subcategory-switch.active {
    margin-top: -12px;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .subcategory-switch > div {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 2px 2px 8px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  .subcategory-switch > div::-webkit-scrollbar { display: none; }
  .subcategory-switch button { flex: 0 0 auto; scroll-snap-align: start; }
  .package-switch-row { margin-top: -18px; align-items: center; }
  .package-mode-switch { min-width: 0; }
  .package-carousel-controls { display: none; }
  .package-grid { margin-right: -6vw; padding-right: 6vw; grid-auto-columns: 86vw; }
  .package-swipe-hint {
    margin: 6px 0 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    color: #8c867d;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .package-swipe-hint span { color: var(--gold); font-size: 15px; }
  .service-image-wrap { height: 115vw; max-height: 560px; }
  .service-card-copy { grid-template-columns: 28px 1fr 38px; }
  .deliverables-image { min-height: 125vw; }
  .deliverables-copy { padding: 75px 6vw 65px; }
  .package-card { padding: 40px 25px 28px; }
  .work-heading { margin-bottom: 35px; }
  .gallery-filter { justify-content: flex-start; gap: 4px; }
  .gallery-filter button { margin: 0 10px 0 0; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 105vw; gap: 10px; }
  .gallery-item-0,
  .gallery-item-1,
  .gallery-item-2,
  .gallery-item-3,
  .gallery-item-4,
  .gallery-item-5 { grid-row: span 1; }
  .gallery-item-0 { height: 80vw; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article,
  .process-grid article:not(:first-child) { min-height: 210px; padding: 28px 0; border-right: 0; border-top: 1px solid rgba(255,255,255,0.14); }
  .process h3 { margin-top: 35px; }
  .booking { padding: 85px 5vw; }
  .booking h2 { font-size: 62px; }
  .booking-form { padding: 35px 23px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .faq-item > button { grid-template-columns: 34px 1fr 20px; }
  .faq-item button strong { font-size: 18px; }
  .faq-open .faq-answer p { padding: 0 20px 25px 34px; }
  .photographer-profile { padding: 10px; }
  .photographer-photo { min-height: 112vw; border-radius: 22px; }
  .photographer-profile-copy { padding: 44px 4vw 40px; }
  .photographer-profile-copy h2 { font-size: 42px; }
  .photographer-bio { font-size: 15px; }
  .floating-whatsapp {
    width: 56px;
    min-height: 56px;
    padding: 7px;
  }
  .floating-whatsapp-symbol { width: 42px; height: 42px; }
  .floating-whatsapp-label { display: none; }
  footer { padding-top: 65px; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-bottom > a { justify-self: start; }
  .footer-bottom div { grid-column: 1; grid-row: 3; }
}

@media (max-width: 900px) {
  .album-header {
    min-height: 70px;
    grid-template-columns: 1fr auto;
    padding: 0 5vw;
  }
  .album-header nav { display: none; }
  .album-header-contact { font-size: 8px; }
  .album-breadcrumb { margin-top: 28px; overflow: hidden; white-space: nowrap; }
  .album-hero { height: 74svh; min-height: 560px; }
  .album-hero-copy { left: 7vw; bottom: 10vw; }
  .album-hero-copy h1 { font-size: clamp(62px, 15vw, 106px); }
  .album-intro { padding: 85px 0 80px; grid-template-columns: 1fr; gap: 20px; }
  .album-intro > div:last-child > p { margin-top: 15px; }
  .album-story-grid { grid-template-columns: repeat(2,1fr); }
  .album-photo,
  .album-photo-0,
  .album-photo-1,
  .album-photo-2,
  .album-photo-3,
  .album-photo-4,
  .album-photo-5 { grid-column: span 1; min-height: 62vw; align-self: stretch; }
  .album-photo-0,
  .album-photo-3 { grid-column: 1 / -1; min-height: 92vw; }
  .album-related { padding: 95px 4vw; }
  .album-related-grid { grid-template-columns: 1fr 1fr; }
  .album-related-grid a:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .album-footer { grid-template-columns: 1fr 1fr; }
  .album-footer a:nth-child(2) { justify-self: end; }
  .album-footer a:last-child { justify-self: start; }
}

@media (max-width: 540px) {
  .album-header .site-logo { width: 140px; }
  .album-header-contact span { display: none; }
  .album-breadcrumb { width: 90vw; font-size: 8px; }
  .album-hero { width: calc(100% - 4vw); min-height: 610px; border-radius: 25px; }
  .album-hero > img { object-position: 54% center; }
  .album-hero-copy { bottom: 12vw; }
  .album-hero-copy p { font-size: 8px; }
  .album-hero-copy h1 { font-size: clamp(58px, 17vw, 78px); }
  .album-intro { width: 88vw; padding: 72px 0 68px; }
  .album-intro h2 { font-size: 49px; }
  .album-intro > div:last-child > p { font-size: 18px; }
  .album-intro dl div { grid-template-columns: 95px 1fr; }
  .album-story-grid { width: calc(100% - 4vw); padding: 8px; grid-template-columns: 1fr; gap: 8px; border-radius: 25px; }
  .album-photo,
  .album-photo-0,
  .album-photo-1,
  .album-photo-2,
  .album-photo-3,
  .album-photo-4,
  .album-photo-5 { grid-column: 1; min-height: 126vw; border-radius: 19px; }
  .album-photo figcaption { left: 10px; right: 10px; bottom: 10px; }
  .album-related { padding: 85px 4vw; }
  .album-related-heading { align-items: flex-start; flex-direction: column; gap: 28px; }
  .album-related h2 { font-size: 54px; }
  .album-related-grid { grid-template-columns: 1fr; gap: 9px; }
  .album-related-grid a,
  .album-related-grid a:last-child:nth-child(odd) { min-height: 118vw; grid-column: 1; }
  .album-cta { width: calc(100% - 4vw); padding: 80px 5vw; border-radius: 25px; }
  .album-cta h2 { font-size: 48px; }
  .album-footer { padding: 30px 5vw 120px; grid-template-columns: 1fr; }
  .album-footer a:nth-child(2),
  .album-footer a:last-child { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Liquid Glass social proof, packages, request form and footer */
.packages.liquid-glass {
  width: calc(100% - clamp(18px, 3vw, 54px));
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: clamp(30px, 3vw, 52px);
  background:
    radial-gradient(circle at var(--glass-x) var(--glass-y), rgba(255,255,255,.94), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,.72), rgba(232,222,203,.42));
  box-shadow: 0 34px 90px rgba(35,28,17,.11), inset 0 1px 0 rgba(255,255,255,.96);
}
.package-card.liquid-glass { overflow:hidden; border-color:rgba(198,180,145,.48); background:radial-gradient(circle at var(--glass-x) var(--glass-y),rgba(255,255,255,.98),transparent 38%),linear-gradient(145deg,rgba(255,255,255,.86),rgba(242,236,224,.58)); box-shadow:0 22px 58px rgba(39,31,18,.12),inset 0 1px 0 rgba(255,255,255,.98); }
.package-card.package-featured.liquid-glass { border-color:rgba(220,188,119,.48); background:radial-gradient(circle at var(--glass-x) var(--glass-y),rgba(217,180,99,.24),transparent 34%),linear-gradient(150deg,rgba(39,40,42,.98),rgba(5,6,7,.99)); box-shadow:0 28px 68px rgba(6,6,6,.26),inset 0 1px 0 rgba(255,255,255,.14),inset 0 -1px 0 rgba(200,160,76,.22); }
.collaborations { width:calc(100% - clamp(18px,3vw,54px)); margin:clamp(24px,4vw,68px) auto; padding:clamp(42px,5vw,78px) 0; overflow:hidden; position:relative; border:1px solid rgba(157,140,109,.24); border-radius:clamp(30px,3vw,52px); background:radial-gradient(circle at 12% 10%,rgba(255,255,255,.96),transparent 30%),radial-gradient(circle at 88% 84%,rgba(187,157,98,.12),transparent 32%),linear-gradient(145deg,#e7e5e1 0%,#d8d5cf 48%,#c9c6c0 100%); box-shadow:0 32px 80px rgba(39,31,18,.13),inset 0 1px 0 rgba(255,255,255,.9); }
.collaborations-heading { width:min(1500px,88%); margin:0 auto clamp(32px,4vw,58px); display:flex; align-items:end; justify-content:space-between; gap:clamp(32px,6vw,110px); }
.collaborations-heading h2 { max-width:850px; margin:12px 0 0; color:#111214; font-size:clamp(46px,5vw,88px); font-weight:400; line-height:.91; letter-spacing:-.065em; }
.collaborations-heading h2 em { display:block; color:#9b7740; font-family:Georgia,serif; font-weight:400; }
.collaborations-heading>p { max-width:430px; margin:0 0 7px; color:#6d6962; font-size:15px; line-height:1.7; }
.collaborations-marquee { position:relative; overflow:hidden; -webkit-mask-image:linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent); mask-image:linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent); }
.collaborations-track { width:max-content; display:flex; animation:collaboration-marquee 82s linear infinite; will-change:transform; }
.collaborations-group { display:flex; align-items:center; gap:clamp(11px,1.15vw,20px); padding-right:clamp(11px,1.15vw,20px); }
.collaboration-logo { --logo-scale:1; width:clamp(154px,13vw,226px); height:clamp(102px,8.7vw,146px); flex:0 0 auto; display:grid; place-items:center; position:relative; overflow:hidden; border:1px solid rgba(62,57,49,.12); border-radius:clamp(19px,1.7vw,28px); background:#f8f7f3; box-shadow:0 14px 36px rgba(38,31,20,.12),inset 0 1px 0 rgba(255,255,255,.9); }
.collaboration-logo::after { content:""; position:absolute; inset:0; pointer-events:none; border-radius:inherit; background:linear-gradient(135deg,rgba(255,255,255,.3),transparent 40%,rgba(189,157,94,.08)); }
.collaboration-logo-light { background:#fbfaf7; }
.collaboration-logo-soft { background:#eee9df; }
.collaboration-logo-dark { border-color:rgba(255,255,255,.1); background:linear-gradient(145deg,#202124,#070809); box-shadow:0 16px 38px rgba(8,8,8,.22),inset 0 1px 0 rgba(255,255,255,.12); }
.collaboration-logo img { width:78%; height:72%; display:block; object-fit:contain; transform:scale(var(--logo-scale)); transform-origin:center; }
.collaboration-logo-dark img { width:82%; height:76%; }
.collaborations-marquee:hover .collaborations-track,.collaborations-marquee:focus-within .collaborations-track { animation-play-state:paused; }
@keyframes collaboration-marquee { to { transform:translateX(-50%); } }
.reviews { width:calc(100% - clamp(18px,3vw,54px)); margin:clamp(24px,4vw,68px) auto; overflow:hidden; color:#f8f4ea; border:1px solid rgba(255,255,255,.12); border-radius:clamp(30px,3vw,52px); background:radial-gradient(circle at 82% 8%,rgba(190,151,79,.22),transparent 30%),linear-gradient(145deg,#222326 0%,#08090a 56%,#030404 100%); box-shadow:0 38px 92px rgba(6,6,6,.2),inset 0 1px 0 rgba(255,255,255,.11); }
.reviews-heading { display:flex; align-items:end; justify-content:space-between; gap:32px; margin-bottom:clamp(34px,5vw,72px); }
.reviews-heading h2 { max-width:780px; margin:12px 0 0; font-size:clamp(50px,6.5vw,112px); font-weight:400; line-height:.86; letter-spacing:-.07em; }
.reviews-heading h2 em { display:block; color:var(--gold-light); font-family:Georgia,serif; font-weight:400; }
.reviews-heading>a,.review-source { color:inherit; font-size:10px; font-weight:700; letter-spacing:.16em; text-decoration:none; text-transform:uppercase; }
.reviews-heading>a { padding-bottom:10px; border-bottom:1px solid rgba(255,255,255,.42); white-space:nowrap; }
.reviews-heading>a span,.review-source span { color:var(--gold-light); }
.reviews-track { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; scroll-behavior:smooth; }
.reviews-track-empty { grid-template-columns:minmax(0,760px); justify-content:center; }
.review-card { min-height:430px; padding:clamp(28px,3vw,46px); display:flex; flex-direction:column; overflow:hidden; border:1px solid rgba(255,255,255,.18); border-radius:30px; background:radial-gradient(circle at var(--glass-x) var(--glass-y),rgba(255,255,255,.2),transparent 38%),linear-gradient(145deg,rgba(255,255,255,.12),rgba(255,255,255,.045)); box-shadow:0 20px 52px rgba(0,0,0,.24),inset 0 1px 0 rgba(255,255,255,.2); }
.review-card-top { display:flex; align-items:center; justify-content:space-between; }
.review-stars { color:#d8b76f; font-size:13px; letter-spacing:.2em; }
.review-stars i { color:rgba(255,255,255,.16); font-style:normal; }
.review-facebook { width:36px; height:36px; display:grid; place-items:center; border:1px solid rgba(255,255,255,.2); border-radius:50%; color:#fff; background:rgba(24,119,242,.72); font:700 20px/1 Arial,sans-serif; box-shadow:inset 0 1px 0 rgba(255,255,255,.3); }
.review-card h3 { margin:52px 0 20px; font-size:clamp(25px,2.3vw,38px); font-weight:400; letter-spacing:-.04em; }
.review-card blockquote,.review-card>p { margin:0; color:rgba(248,244,234,.73); font-size:16px; line-height:1.75; }
.review-author { display:flex; align-items:center; gap:13px; margin-top:auto; padding-top:35px; }
.review-author>span { width:42px; height:42px; display:grid; place-items:center; border-radius:50%; color:#151515; background:linear-gradient(135deg,#f2dfae,#b8904f); font-weight:700; }
.review-author div { display:grid; gap:4px; }.review-author strong { font-size:13px; letter-spacing:.05em; }.review-author small { color:rgba(248,244,234,.48); font-size:10px; }
.review-source { width:fit-content; margin-top:24px; padding-bottom:6px; border-bottom:1px solid rgba(255,255,255,.25); font-size:8px; }.review-card-placeholder { min-height:320px; }
.booking-form.liquid-glass { overflow:hidden; border:1px solid rgba(255,255,255,.7); background:radial-gradient(circle at var(--glass-x) var(--glass-y),rgba(255,255,255,.98),transparent 34%),linear-gradient(145deg,rgba(255,255,255,.88),rgba(229,218,197,.62)); box-shadow:0 30px 78px rgba(0,0,0,.28),inset 0 1px 0 rgba(255,255,255,.98),inset 0 -1px 0 rgba(185,150,80,.16); }
footer.liquid-glass { width:calc(100% - clamp(18px,2.5vw,44px)); margin:clamp(16px,2.5vw,42px) auto 12px; overflow:hidden; border:1px solid rgba(255,255,255,.13); border-radius:clamp(30px,3vw,50px); background:radial-gradient(circle at var(--glass-x) var(--glass-y),rgba(214,177,98,.18),transparent 30%),linear-gradient(145deg,rgba(34,35,38,.98),rgba(3,4,5,.99)); box-shadow:0 30px 78px rgba(0,0,0,.25),inset 0 1px 0 rgba(255,255,255,.12); }
.footer-socials { display:flex!important; align-items:center; justify-content:center; gap:10px!important; }
.footer-social-link { width:44px; height:44px; display:grid!important; place-items:center; padding:0!important; border:1px solid rgba(255,255,255,.18); border-radius:50%; color:#fff!important; background:radial-gradient(circle at var(--glass-x) var(--glass-y),rgba(255,255,255,.34),transparent 48%),linear-gradient(145deg,rgba(255,255,255,.13),rgba(255,255,255,.05)); box-shadow:0 12px 30px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.22); text-decoration:none; }
.footer-icon { display:grid; place-items:center; font:700 19px/1 Arial,sans-serif; }.footer-icon-email{font-size:18px}.footer-icon-facebook{font-size:22px;transform:translateY(1px)}.footer-icon-whatsapp img{width:23px;height:23px;object-fit:contain}
@media(hover:hover) and (pointer:fine){.package-card.liquid-glass:hover,.review-card.liquid-glass:hover,.footer-social-link.liquid-glass:hover{transform:translateY(-4px)}}
@media(max-width:900px){.collaborations-heading{align-items:flex-start;flex-direction:column;gap:20px}.collaborations-heading h2{font-size:clamp(45px,10vw,72px)}.collaborations-heading>p{max-width:620px}.collaborations-track{animation-duration:62s}.collaboration-logo{width:154px;height:102px}.reviews-heading{align-items:flex-start;flex-direction:column}.reviews-heading h2{font-size:clamp(48px,12vw,82px)}.reviews-track{grid-template-columns:none;grid-auto-flow:column;grid-auto-columns:min(82vw,440px);margin-right:-6vw;padding:4px 6vw 18px 0;overflow-x:auto;overscroll-behavior-inline:contain;scroll-snap-type:x mandatory;scrollbar-width:none}.reviews-track::-webkit-scrollbar{display:none}.review-card{min-height:420px;scroll-snap-align:center}.reviews-track-empty{display:block;margin-right:0;padding-right:0}.footer-socials{justify-content:flex-start}}
@media(max-width:540px){.collaborations,.packages.liquid-glass,.reviews,footer.liquid-glass{width:calc(100% - 16px);border-radius:28px}.collaborations{padding-block:48px}.collaborations-heading{width:88%;margin-bottom:30px}.collaborations-heading h2{font-size:43px}.collaborations-heading>p{font-size:13px}.collaborations-marquee{-webkit-mask-image:linear-gradient(90deg,transparent,#000 3%,#000 97%,transparent);mask-image:linear-gradient(90deg,transparent,#000 3%,#000 97%,transparent)}.collaboration-logo{width:132px;height:90px;border-radius:19px}.reviews{padding-inline:5vw}.review-card{min-height:390px;border-radius:24px}.review-card h3{margin-top:42px}.booking-form.liquid-glass{border-radius:26px}.footer-social-link{width:48px;height:48px}}

/* 20260714c — dual-device media, film dissolve, premium package trio and editorial albums */
.package-mode-grid:not(.active){display:none!important}
.responsive-media{display:block;width:100%;height:100%;overflow:hidden}.responsive-media>img,.responsive-media img{width:100%;height:100%;object-fit:cover;object-position:var(--desktop-x,50%) var(--desktop-y,50%);display:block}.hero-media{position:absolute;inset:0}.hero-slide{position:absolute;inset:-1%;opacity:0;filter:blur(10px);transform:scale(1.035);transition:opacity 1.55s cubic-bezier(.22,.7,.25,1),filter 1.55s ease,transform 7s ease;will-change:opacity,filter,transform}.hero-slide.active{opacity:1;filter:blur(0);transform:scale(1)}.hero-slide .hero-image{object-position:var(--desktop-x,50%) var(--desktop-y,50%);animation:none}.service-image-wrap>.responsive-media{position:absolute;inset:0}.gallery-item>.responsive-media{position:absolute;inset:0}.gallery-video{cursor:pointer}.video-play{width:66px;height:66px;display:grid;place-items:center;position:absolute;left:50%;top:50%;z-index:2;transform:translate(-50%,-50%);border:1px solid rgba(255,255,255,.7);border-radius:50%;background:rgba(13,14,15,.55);box-shadow:0 16px 40px rgba(0,0,0,.25);color:#fff;font-size:20px;backdrop-filter:blur(10px)}.video-dialog{width:min(1100px,94vw);padding:0;border:0;border-radius:28px;background:#08090a;box-shadow:0 40px 120px rgba(0,0,0,.55);overflow:visible}.video-dialog::backdrop{background:rgba(5,5,5,.82);backdrop-filter:blur(10px)}.video-dialog>button{width:44px;height:44px;position:absolute;right:-10px;top:-54px;border:1px solid rgba(255,255,255,.3);border-radius:50%;background:#111;color:#fff;font-size:26px}.video-dialog-frame{aspect-ratio:16/9}.video-dialog iframe{width:100%;height:100%;border:0;border-radius:28px}.package-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));grid-auto-flow:initial;gap:22px;overflow:visible;scroll-snap-type:none}.package-card{min-width:0;min-height:650px}.package-card.package-featured{transform:translateY(-22px) scale(1.025);z-index:2;background:linear-gradient(145deg,#222326 0%,#101113 58%,#050506 100%);box-shadow:0 35px 80px rgba(22,18,12,.24)}.package-card:not(.package-featured){background:linear-gradient(145deg,#fff 0%,#fbf8f2 100%);border-color:#ded5c8}.package-dots{display:none}.package-carousel-controls{display:none}.album-hero>.responsive-media{position:absolute;inset:0}.album-hero>.responsive-media img{object-position:var(--desktop-x,50%) var(--desktop-y,50%)}.album-story-grid{display:block;width:min(1480px,94vw);padding:10px;columns:3 320px;column-gap:10px;background:#f5f1e9;border-radius:34px}.album-photo,.album-photo-0,.album-photo-1,.album-photo-2,.album-photo-3,.album-photo-4,.album-photo-5{display:inline-block;width:100%;min-height:0!important;margin:0 0 10px;break-inside:avoid;border-radius:24px;overflow:hidden;background:#e8e1d5}.album-photo img{width:100%;height:auto;min-height:0;object-fit:contain;display:block;position:static}.album-photo figcaption{opacity:0;transition:opacity .3s ease}.album-photo:hover figcaption{opacity:1}.album-facebook{display:flex;justify-content:center;padding:38px 5vw 0}.album-facebook .button{min-height:58px}.album-related-grid picture{height:100%}

@media(max-width:820px){.responsive-media>img,.responsive-media img{object-position:var(--mobile-x,50%) var(--mobile-y,50%)}.hero-slide .hero-image{object-position:var(--mobile-x,50%) var(--mobile-y,50%)}.album-hero>.responsive-media img{object-position:var(--mobile-x,50%) var(--mobile-y,50%)}.package-grid{display:grid;grid-template-columns:none;grid-auto-flow:column;grid-auto-columns:min(82vw,440px);gap:15px;overflow-x:auto;padding:28px 6vw 36px 2px;margin-right:-6vw;scroll-snap-type:x mandatory;overscroll-behavior-inline:contain;scrollbar-width:none}.package-grid::-webkit-scrollbar{display:none}.package-card{min-height:620px;scroll-snap-align:center}.package-card.package-featured{transform:none}.package-dots{display:flex;justify-content:center;gap:8px;margin:3px 0 0}.package-dots button{width:7px;height:7px;padding:0;border-radius:50%;background:#d5ccbc;transition:width .25s ease,background .25s ease}.package-dots button.active{width:24px;border-radius:20px;background:var(--gold)}.album-story-grid{columns:2 150px;column-gap:6px;padding:6px;border-radius:22px}.album-photo,.album-photo-0,.album-photo-1,.album-photo-2,.album-photo-3,.album-photo-4,.album-photo-5{margin-bottom:6px;border-radius:16px}.album-photo figcaption{display:none}}

@media(max-width:540px){html,body{max-width:100%;overflow-x:hidden}.hero{height:auto;min-height:880px;padding-bottom:128px}.hero-content{left:7vw;right:7vw;bottom:205px}.hero h1{font-size:clamp(49px,14vw,68px);overflow-wrap:anywhere}.hero-copy{max-width:100%;font-size:15px}.hero-actions{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:10px;width:100%}.hero-primary{min-width:0;width:100%;padding:0 18px}.hero-explore{max-width:125px;padding:12px 13px;line-height:1.35;gap:10px}.hero-proof{bottom:108px}.hero-proof div{min-width:0}.mobile-book{bottom:max(10px,env(safe-area-inset-bottom))}.floating-whatsapp{bottom:96px}.package-grid{grid-auto-columns:86vw}.album-hero{min-height:142vw}.album-story-grid{width:calc(100% - 3vw);columns:2;column-gap:5px;padding:5px}.album-photo,.album-photo-0,.album-photo-1,.album-photo-2,.album-photo-3,.album-photo-4,.album-photo-5{margin-bottom:5px;border-radius:13px}.album-footer{padding-bottom:140px}.video-play{width:54px;height:54px}}

@media(prefers-reduced-motion:reduce){.hero-slide{transition:none;transform:none}.album-photo figcaption{transition:none}}

/* 2026-07-15 — premium Liquid Glass and album reliability pass */
.packages.liquid-glass {
  position: relative;
  isolation: isolate;
  width: calc(100% - clamp(18px, 2.5vw, 44px));
  margin-inline: auto;
  border: 1px solid rgba(199, 173, 118, .28);
  border-radius: clamp(30px, 3.6vw, 58px);
  background:
    radial-gradient(75% 55% at var(--glass-x, 18%) var(--glass-y, 0%), rgba(255,255,255,.94), transparent 58%),
    linear-gradient(145deg, rgba(255,255,255,.72), rgba(238,231,216,.44));
  box-shadow: 0 34px 90px rgba(55,43,22,.11), inset 0 1px 0 rgba(255,255,255,.96);
  backdrop-filter: blur(28px) saturate(1.28);
  -webkit-backdrop-filter: blur(28px) saturate(1.28);
}
.packages.liquid-glass::before,
.booking-form.liquid-glass::before,
footer.liquid-glass::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(255,255,255,.32), transparent 24%, transparent 76%, rgba(198,157,75,.09));
}
.packages.liquid-glass > *,
.booking-form.liquid-glass > *,
footer.liquid-glass > * { position: relative; z-index: 1; }

.package-card.liquid-glass {
  border: 1px solid rgba(188, 159, 105, .34);
  background:
    radial-gradient(82% 58% at var(--glass-x, 12%) var(--glass-y, 0%), rgba(255,255,255,.98), transparent 62%),
    linear-gradient(148deg, rgba(255,255,255,.9), rgba(244,238,227,.67));
  box-shadow: 0 24px 66px rgba(48,37,19,.13), inset 0 1px 0 rgba(255,255,255,1), inset 0 -1px 0 rgba(177,140,70,.1);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
}
.package-card.package-featured.liquid-glass {
  border-color: rgba(226, 193, 121, .48);
  background:
    radial-gradient(85% 62% at var(--glass-x, 16%) var(--glass-y, 0%), rgba(204,164,81,.24), transparent 54%),
    linear-gradient(150deg, rgba(39,40,43,.99), rgba(13,14,16,.99) 55%, rgba(3,4,5,1));
  box-shadow: 0 36px 90px rgba(9,9,9,.34), inset 0 1px 0 rgba(255,255,255,.15), inset 0 -1px 0 rgba(204,164,81,.25);
}
.package-card.package-featured .popular {
  background: linear-gradient(135deg, #e0c37f, #aa8241);
  box-shadow: 0 10px 26px rgba(190,150,73,.24), inset 0 1px 0 rgba(255,255,255,.45);
}

.premium-booking {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: clamp(30px, 3vw, 48px);
  box-shadow: 0 36px 100px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.1);
}
.booking-form.liquid-glass {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.74);
  background:
    radial-gradient(78% 60% at var(--glass-x, 10%) var(--glass-y, 0%), rgba(255,255,255,.98), transparent 62%),
    linear-gradient(145deg, rgba(255,255,255,.82), rgba(226,214,191,.56));
  box-shadow: 0 34px 86px rgba(0,0,0,.3), inset 0 1px 0 #fff, inset 0 -1px 0 rgba(184,143,68,.18);
  backdrop-filter: blur(30px) saturate(1.3);
  -webkit-backdrop-filter: blur(30px) saturate(1.3);
}
.booking-form.liquid-glass input,
.booking-form.liquid-glass select,
.booking-form.liquid-glass textarea {
  border-color: rgba(139,112,64,.28);
  background: linear-gradient(145deg, rgba(255,255,255,.78), rgba(255,255,255,.48));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.96), 0 9px 24px rgba(56,42,18,.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.booking-form.liquid-glass input:focus,
.booking-form.liquid-glass select:focus,
.booking-form.liquid-glass textarea:focus {
  border-color: rgba(179,136,57,.72);
  box-shadow: 0 0 0 4px rgba(196,154,73,.13), inset 0 1px 0 #fff;
}
.booking-form.liquid-glass .form-submit {
  color: #fff;
  border: 1px solid rgba(210,255,226,.42);
  background:
    radial-gradient(circle at 18% 0%, rgba(255,255,255,.3), transparent 35%),
    linear-gradient(115deg, #35d77c 0%, #15aa5c 48%, #08763d 100%);
  box-shadow: 0 18px 42px rgba(5,111,52,.3), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(0,74,31,.28);
  text-shadow: 0 1px 1px rgba(0,60,26,.3);
}
.booking-form.liquid-glass .form-note {
  margin-top: 16px;
  padding: 10px 14px;
  color: rgba(20,24,21,.76);
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 999px;
  background: rgba(255,255,255,.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: .01em;
}

/* Dedicated cache-busted booking CTA: do not inherit the older gold button skin. */
.booking-form .booking-whatsapp-submit,
.booking-form.liquid-glass .booking-whatsapp-submit {
  color: #fff !important;
  border: 1px solid rgba(210,255,226,.5) !important;
  background:
    radial-gradient(circle at 18% 0%, rgba(255,255,255,.34), transparent 35%),
    linear-gradient(115deg, #35d77c 0%, #15aa5c 48%, #08763d 100%) !important;
  box-shadow: 0 18px 42px rgba(5,111,52,.34), inset 0 1px 0 rgba(255,255,255,.55), inset 0 -1px 0 rgba(0,74,31,.3) !important;
  text-shadow: 0 1px 1px rgba(0,60,26,.32);
}

.booking-form .form-note,
.booking-form.liquid-glass .form-note {
  color: #252823 !important;
  background: rgba(255,255,255,.56) !important;
  border-color: rgba(255,255,255,.74) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82), 0 8px 22px rgba(37,31,21,.08) !important;
  opacity: 1 !important;
}

footer.liquid-glass {
  position: relative;
  isolation: isolate;
  width: calc(100% - clamp(18px,2.5vw,44px));
  margin: clamp(16px,2.5vw,42px) auto 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: clamp(30px,3vw,50px);
  background:
    radial-gradient(74% 68% at var(--glass-x, 14%) var(--glass-y, 0%), rgba(211,171,88,.19), transparent 58%),
    linear-gradient(145deg, rgba(35,36,39,.99), rgba(10,11,13,.99) 52%, rgba(2,3,4,1));
  box-shadow: 0 34px 88px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.13), inset 0 -1px 0 rgba(194,150,67,.14);
  backdrop-filter: blur(28px) saturate(1.18);
  -webkit-backdrop-filter: blur(28px) saturate(1.18);
}
.footer-socials {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px !important;
}
.footer-social-link.liquid-glass {
  position: relative;
  width: 50px;
  height: 50px;
  display: grid !important;
  place-items: center;
  flex: 0 0 50px;
  padding: 0 !important;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  color: #fff !important;
  background:
    radial-gradient(circle at var(--glass-x, 28%) var(--glass-y, 15%), rgba(255,255,255,.42), transparent 48%),
    linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.045));
  box-shadow: 0 14px 34px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.25);
}
.footer-social-link .footer-icon { width: 24px; height: 24px; display: grid; place-items: center; }
.footer-icon-whatsapp img { width: 25px; height: 25px; object-fit: contain; }
.footer-icon-social-image img { width: 26px; height: 26px; object-fit: contain; }
.footer-icon-email {
  position: relative;
  width: 23px !important;
  height: 17px !important;
  border: 1.8px solid currentColor;
  border-radius: 4px;
}
.footer-icon-email::before,
.footer-icon-email::after {
  content: "";
  position: absolute;
  top: 3px;
  width: 12px;
  height: 1.7px;
  background: currentColor;
}
.footer-icon-email::before { left: 1px; transform: rotate(35deg); transform-origin: left center; }
.footer-icon-email::after { right: 1px; transform: rotate(-35deg); transform-origin: right center; }

.album-story-grid { min-height: 120px; }
.album-story-grid .album-photo { opacity: 1; visibility: visible; }
.album-story-grid .album-photo img { max-width: 100%; opacity: 1; visibility: visible; }

@media (hover:hover) and (pointer:fine) {
  .footer-social-link.liquid-glass:hover { transform: translateY(-4px) scale(1.04); border-color: rgba(224,193,124,.72); }
}
@media (max-width: 820px) {
  .packages.liquid-glass { width: calc(100% - 16px); padding-inline: 5vw; }
  .package-card.package-featured.liquid-glass { transform: none; }
  .premium-booking { border-radius: 28px; }
  .booking-form.liquid-glass { border-radius: 26px; }
  .footer-socials { justify-content: flex-start; }
}
@media (max-width: 540px) {
  .packages.liquid-glass, footer.liquid-glass { width: calc(100% - 12px); border-radius: 27px; }
  .footer-social-link.liquid-glass { width: 52px; height: 52px; flex-basis: 52px; }
}

/* 20260714d — immersive full-bleed hero with warm-glass navigation */
.hero-stage{
  width:100%;
  position:relative;
  isolation:isolate;
}
.hero-stage .site-header{
  width:auto;
  height:80px;
  margin:0;
  position:absolute;
  left:2.25vw;
  right:2.25vw;
  top:clamp(14px,1.35vw,22px);
  z-index:40;
  background:linear-gradient(135deg,rgba(250,248,243,.9),rgba(247,243,235,.72));
  border:1px solid rgba(255,255,255,.56);
  box-shadow:0 18px 55px rgba(8,8,7,.16),inset 0 1px 0 rgba(255,255,255,.7);
  -webkit-backdrop-filter:blur(20px) saturate(125%);
  backdrop-filter:blur(20px) saturate(125%);
}
.hero-stage .hero{
  width:calc(100% - 2vw);
  height:min(850px,calc(100svh - 32px));
  min-height:700px;
  margin:0 auto;
  border-radius:0 0 var(--radius-lg) var(--radius-lg);
  box-shadow:0 32px 85px rgba(17,15,11,.16);
}
.hero-stage .hero-shade{
  background:
    linear-gradient(180deg,rgba(9,9,8,.22) 0%,transparent 23%),
    linear-gradient(90deg,rgba(10,10,9,.76) 0%,rgba(10,10,9,.49) 38%,rgba(10,10,9,.06) 73%),
    linear-gradient(0deg,rgba(10,10,9,.46),transparent 46%);
}

@media(max-width:820px){
  .hero-stage .site-header{
    width:auto;
    height:68px;
    left:3vw;
    right:3vw;
    top:10px;
    margin:0;
    padding:0 5vw;
    border-radius:20px;
    background:linear-gradient(135deg,rgba(250,248,243,.92),rgba(247,243,235,.74));
    box-shadow:0 15px 42px rgba(8,8,7,.18),inset 0 1px 0 rgba(255,255,255,.78);
  }
  .hero-stage .hero{
    width:100%;
    height:calc(100svh - 32px);
    min-height:760px;
    margin:0;
    border-radius:0 0 28px 28px;
  }
  .hero-stage .hero-shade{
    background:
      linear-gradient(180deg,rgba(8,8,7,.26) 0%,transparent 24%),
      linear-gradient(0deg,rgba(8,8,7,.86) 0%,rgba(8,8,7,.34) 60%,rgba(8,8,7,.12) 100%);
  }
}

@media(max-width:540px){
  .hero-stage .site-header{left:3vw;right:3vw;top:9px}
  .hero-stage .hero{
    height:auto;
    min-height:max(900px,calc(100svh - 32px));
    padding-bottom:128px;
  }
}


/* 20260714e — KC Golden Liquid Glass */
.liquid-glass{
  --glass-x:50%;
  --glass-y:0%;
  -webkit-backdrop-filter:blur(18px) saturate(138%);
  backdrop-filter:blur(18px) saturate(138%);
  transition:transform .28s cubic-bezier(.22,.75,.25,1),border-color .28s ease,box-shadow .28s ease,background-color .28s ease;
  will-change:transform;
}

.hero-stage .site-header.liquid-glass{
  background:
    radial-gradient(circle at var(--glass-x) var(--glass-y),rgba(255,255,255,.92) 0%,rgba(255,255,255,.42) 13%,rgba(255,255,255,0) 36%),
    linear-gradient(135deg,rgba(253,251,246,.78),rgba(234,224,204,.48));
  border-color:rgba(255,255,255,.7);
  box-shadow:
    0 20px 58px rgba(8,8,7,.18),
    inset 0 1px 0 rgba(255,255,255,.92),
    inset 0 -1px 0 rgba(174,143,82,.16);
}

.hero-primary.liquid-glass,
.mobile-book.liquid-glass{
  background:
    radial-gradient(circle at var(--glass-x) var(--glass-y),rgba(255,255,255,.66) 0%,rgba(255,255,255,.16) 22%,rgba(255,255,255,0) 43%),
    linear-gradient(135deg,rgba(223,198,139,.96),rgba(168,132,68,.94));
  border:1px solid rgba(255,244,211,.6);
  box-shadow:
    0 16px 42px rgba(60,43,16,.28),
    inset 0 1px 0 rgba(255,255,255,.74),
    inset 0 -1px 0 rgba(94,65,23,.23);
}

.hero-explore.liquid-glass{
  background:
    radial-gradient(circle at var(--glass-x) var(--glass-y),rgba(255,255,255,.25),rgba(255,255,255,0) 38%),
    linear-gradient(145deg,rgba(22,22,20,.68),rgba(5,5,5,.48));
  border:1px solid rgba(255,255,255,.34);
  box-shadow:0 14px 34px rgba(0,0,0,.24),inset 0 1px 0 rgba(255,255,255,.22);
}

.mode-switch.liquid-glass{
  padding:4px;
  gap:4px;
  overflow:hidden;
  border:1px solid rgba(182,161,119,.28);
  border-radius:var(--radius-pill);
  background:
    radial-gradient(circle at var(--glass-x) var(--glass-y),rgba(255,255,255,.94),rgba(255,255,255,0) 44%),
    linear-gradient(135deg,rgba(255,255,255,.72),rgba(238,231,217,.48));
  box-shadow:0 14px 34px rgba(43,35,22,.09),inset 0 1px 0 rgba(255,255,255,.9);
}

.mode-switch.liquid-glass button{
  border:0;
  border-radius:var(--radius-pill);
}

.mode-switch.liquid-glass button.active{
  color:#fff2ce;
  background:
    radial-gradient(circle at 50% 0%,rgba(216,184,113,.34),rgba(216,184,113,0) 46%),
    linear-gradient(145deg,#242527,#08090a);
  box-shadow:0 11px 25px rgba(15,15,14,.24),inset 0 1px 0 rgba(255,255,255,.13);
}

.subcategory-switch button.liquid-glass,
.gallery-filter button.liquid-glass{
  border-color:rgba(173,150,107,.3);
  background:
    radial-gradient(circle at var(--glass-x) var(--glass-y),rgba(255,255,255,.98),rgba(255,255,255,0) 48%),
    linear-gradient(145deg,rgba(255,255,255,.72),rgba(238,231,217,.46));
  box-shadow:0 9px 24px rgba(45,37,23,.07),inset 0 1px 0 rgba(255,255,255,.86);
}

.subcategory-switch button.liquid-glass.active,
.gallery-filter button.liquid-glass.active{
  color:var(--gold-light);
  border-color:rgba(202,170,102,.38);
  background:
    radial-gradient(circle at var(--glass-x) var(--glass-y),rgba(203,168,94,.32),rgba(203,168,94,0) 42%),
    linear-gradient(145deg,rgba(35,36,38,.97),rgba(6,7,8,.98));
  box-shadow:0 13px 30px rgba(16,16,15,.2),inset 0 1px 0 rgba(255,255,255,.14);
}

.floating-whatsapp.liquid-glass{
  background:
    radial-gradient(circle at var(--glass-x) var(--glass-y),rgba(255,255,255,.5),rgba(255,255,255,0) 38%),
    linear-gradient(145deg,rgba(24,204,101,.9),rgba(4,137,61,.88));
  border:1px solid rgba(224,255,235,.74);
  box-shadow:0 16px 42px rgba(2,122,51,.28),inset 0 1px 0 rgba(255,255,255,.55);
}

.liquid-glass:focus-visible{
  outline:2px solid rgba(225,196,132,.95);
  outline-offset:3px;
}

@media(hover:hover) and (pointer:fine){
  .hero-primary.liquid-glass:hover,
  .hero-explore.liquid-glass:hover,
  .subcategory-switch button.liquid-glass:hover,
  .gallery-filter button.liquid-glass:hover,
  .floating-whatsapp.liquid-glass:hover{transform:translateY(-2px)}
  .hero-stage .site-header.liquid-glass:hover{border-color:rgba(255,240,204,.9);box-shadow:0 24px 68px rgba(8,8,7,.2),inset 0 1px 0 #fff}
}

@media(max-width:820px){
  .hero-stage .site-header.liquid-glass{
    -webkit-backdrop-filter:blur(15px) saturate(132%);
    backdrop-filter:blur(15px) saturate(132%);
    background:
      radial-gradient(circle at var(--glass-x) var(--glass-y),rgba(255,255,255,.94),rgba(255,255,255,0) 42%),
      linear-gradient(135deg,rgba(253,251,246,.82),rgba(229,218,197,.55));
  }
  .mode-switch.liquid-glass{width:100%}
}

@media(prefers-reduced-motion:reduce){
  .liquid-glass{transition:none!important;will-change:auto}
  .collaborations-marquee{overflow-x:auto;-webkit-mask-image:none;mask-image:none;scrollbar-width:none}
  .collaborations-marquee::-webkit-scrollbar{display:none}
  .collaborations-track{animation:none!important;transform:none!important}
  .collaborations-group[aria-hidden="true"]{display:none}
}

/* 20260715i - centered client marks on premium black liquid glass */
.collaborations {
  isolation:isolate;
  color:#f9f6ef;
  border-color:rgba(231,207,157,.22);
  background:
    radial-gradient(circle at 14% -8%,rgba(255,255,255,.22),transparent 28%),
    radial-gradient(circle at 86% 112%,rgba(189,148,70,.22),transparent 34%),
    linear-gradient(138deg,#2b2c2f 0%,#121315 42%,#030405 100%);
  box-shadow:
    0 38px 96px rgba(3,4,5,.34),
    inset 0 1px 0 rgba(255,255,255,.20),
    inset 0 -1px 0 rgba(195,155,79,.15);
}
.collaborations::before {
  content:"";
  position:absolute;
  inset:1px;
  z-index:-1;
  pointer-events:none;
  border-radius:inherit;
  background:linear-gradient(118deg,rgba(255,255,255,.13),transparent 22%,transparent 72%,rgba(197,158,84,.08));
}
.collaborations-heading {
  align-items:center;
  justify-content:center;
  flex-direction:column;
  max-width:980px;
  text-align:center;
}
.collaborations-heading h2 { color:#fbf8f1; }
.collaborations-heading h2 em { color:#d1af6a; }
.collaborations-heading>p { max-width:650px; margin:0 auto; color:rgba(245,239,227,.68); }
.collaborations-marquee { padding-block:8px; }
.collaboration-logo,
.collaboration-logo-light,
.collaboration-logo-soft,
.collaboration-logo-dark,
.collaboration-logo-glass {
  place-items:center;
  padding:clamp(12px,1.1vw,18px);
  border-color:rgba(255,255,255,.16);
  background:
    radial-gradient(circle at 18% 0%,rgba(255,255,255,.22),transparent 36%),
    radial-gradient(circle at 88% 100%,rgba(195,155,79,.18),transparent 42%),
    linear-gradient(145deg,rgba(43,45,49,.94),rgba(6,7,8,.98));
  box-shadow:
    0 18px 46px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.20),
    inset 0 -1px 0 rgba(205,168,94,.13);
  backdrop-filter:blur(20px) saturate(130%);
  -webkit-backdrop-filter:blur(20px) saturate(130%);
}
.collaboration-logo::after {
  background:linear-gradient(132deg,rgba(255,255,255,.18),transparent 34%,transparent 66%,rgba(202,164,91,.10));
}
.collaboration-logo img,
.collaboration-logo-dark img {
  width:82%;
  height:78%;
  max-width:100%;
  max-height:100%;
  margin:auto;
  object-fit:contain;
  object-position:center center;
  transform:scale(var(--logo-scale));
  transform-origin:center center;
}
@media(hover:hover) and (pointer:fine){
  .collaboration-logo { transition:transform .35s ease,border-color .35s ease,box-shadow .35s ease; }
  .collaboration-logo:hover { transform:translateY(-5px); border-color:rgba(216,179,106,.44); box-shadow:0 26px 56px rgba(0,0,0,.42),inset 0 1px 0 rgba(255,255,255,.24); }
}
@media(max-width:900px){
  .collaborations-heading { align-items:center; gap:18px; }
  .collaborations-heading>p { text-align:center; }
}

/* Uniform client canvases supplied at 810 x 308 */
.collaborations .collaboration-logo {
  width:clamp(210px,18vw,300px);
  height:auto;
  aspect-ratio:810 / 308;
}
.collaborations .collaboration-logo img {
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
}
.collaborations .collaboration-logo-premium {
  border-color:rgba(226,191,118,.72);
  background:radial-gradient(circle at 24% 0%,rgba(255,240,197,.18),transparent 40%),linear-gradient(145deg,rgba(48,44,35,.96),rgba(10,11,12,.98));
  box-shadow:0 20px 50px rgba(0,0,0,.42),0 0 26px rgba(205,166,87,.14),inset 0 1px 0 rgba(255,244,211,.28),inset 0 -1px 0 rgba(177,132,51,.24);
}
@media(max-width:540px){
  .collaborations .collaboration-logo { width:190px; }
}


