﻿@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: "20260714a";
  --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: var(--paper);
  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;
  }
}

