@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0&family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap");

:root {
  --background: #fafaeb;
  --surface: #fafaeb;
  --surface-low: #f4f5e6;
  --surface-mid: #efefe0;
  --surface-high: #e9e9db;
  --surface-plain: #ffffff;
  --panel-surface: #efefe0;
  --panel-surface-strong: #e9e9db;
  --panel-border: rgba(126, 118, 108, 0.24);
  --surface-variant: #e3e3d5;
  --primary: #685d4a;
  --primary-soft: #f7e7ce;
  --secondary: #4d6453;
  --secondary-soft: #cde6d1;
  --tertiary: #745853;
  --tertiary-soft: #ffe3de;
  --ink: #1b1c14;
  --muted: #4b463d;
  --outline: #7d766c;
  --outline-soft: #cec5ba;
  --shadow: 0 24px 70px rgba(31, 31, 24, 0.13);
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--background);
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 21px;
  line-height: 1;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 82px;
  padding: 20px 60px;
  background: rgba(250, 250, 235, 0.9);
  border-bottom: 1px solid rgba(206, 197, 186, 0.5);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  color: var(--secondary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 500;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--secondary);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-cta,
.button.primary {
  color: #fff;
  background: var(--secondary);
  border-color: var(--secondary);
}

.button.primary:hover,
.nav-cta:hover {
  color: var(--secondary);
  background: var(--secondary-soft);
  border-color: var(--secondary-soft);
  transform: translateY(-2px);
}

.site-nav .nav-cta[aria-current="page"] {
  color: #fff;
  background: var(--secondary);
  border-color: var(--secondary);
}

.site-nav .nav-cta[aria-current="page"]:hover {
  color: var(--secondary);
  background: var(--secondary-soft);
  border-color: var(--secondary-soft);
}

.button.quiet,
.button.secondary {
  color: var(--secondary);
  background: transparent;
  border-color: var(--secondary);
}

.button.quiet:hover,
.button.secondary:hover {
  color: #fff;
  background: var(--secondary);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--outline-soft);
  border-radius: 4px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.luxury-main {
  padding: 58px 0 80px;
}

.opulence-hero,
.lookbook-masonry,
.bespoke-services,
.journey-section {
  width: min(calc(100% - 120px), var(--container));
  margin: 0 auto 88px;
}

.opulence-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.card-kicker,
.detail-number {
  display: block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy-center {
  max-width: 860px;
  margin: 0 auto 42px;
}

.hero-copy-center h1 {
  margin: 0 0 20px;
  color: var(--secondary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4.75rem;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy-center p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-portrait {
  position: relative;
  width: min(100%, 980px);
  height: 620px;
  overflow: hidden;
  background: var(--surface-variant);
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease;
}

.hero-portrait:hover img {
  transform: scale(1.04);
}

.portrait-frame {
  position: absolute;
  inset: 16px;
  border: 16px solid rgba(250, 250, 235, 0.5);
  pointer-events: none;
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-title-row h2,
.service-intro h2,
.journey-section h2,
.page-hero h1,
.booking-hero h1,
.about-split h1 {
  margin: 0;
  color: var(--secondary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.35rem;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
}

.section-title-row a,
.text-link {
  color: var(--secondary);
  border-bottom: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.masonry-gallery {
  columns: 3 260px;
  column-gap: 24px;
}

.lookbook-card {
  position: relative;
  break-inside: avoid;
  margin: 0 0 24px;
  padding: 8px;
  overflow: hidden;
  background: var(--panel-surface);
  border: 1px solid var(--panel-border);
  box-shadow: inset 0 1px 0 rgba(250, 250, 235, 0.72);
}

.lookbook-card img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.lookbook-card:nth-child(2) img {
  min-height: 520px;
}

.lookbook-card:nth-child(3) img {
  min-height: 300px;
}

.lookbook-card figcaption {
  position: absolute;
  inset: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  background: rgba(250, 250, 235, 0.92);
  border: 1px solid var(--primary-soft);
  opacity: 0;
  transition: opacity 240ms ease;
}

.lookbook-card:hover figcaption {
  opacity: 1;
}

.lookbook-card strong {
  color: var(--secondary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 500;
}

.lookbook-card span {
  display: block;
  margin: 6px 0 22px;
  color: var(--muted);
  font-size: 0.8rem;
}

.lookbook-card a {
  padding: 8px 18px;
  color: var(--secondary);
  border: 1px solid var(--secondary);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
}

.bespoke-services {
  width: 100%;
  max-width: none;
  padding: 88px 60px;
  background: var(--surface-low);
}

.service-intro {
  width: min(100%, 760px);
  margin: 0 auto 52px;
  text-align: center;
}

.service-intro p {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.planning-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  width: min(100%, var(--container));
  margin: 0 auto;
}

.planning-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin-bottom: 22px;
  transition: transform 680ms ease;
}

.planning-card:hover img {
  transform: scale(1.025);
}

.planning-card h3 {
  margin: 0 0 8px;
  color: var(--secondary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: 0;
}

.planning-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.planning-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease;
}

.planning-card a:hover {
  transform: translateX(4px);
}

.standard-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 58px;
  align-items: start;
  padding: 88px 60px;
  background: var(--surface);
}

.standard-section h2 {
  margin: 0;
  color: var(--secondary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1.08;
}

.standard-list {
  display: grid;
  gap: 18px;
}

.standard-list article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 8px 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(206, 197, 186, 0.72);
}

.standard-list span {
  grid-row: span 2;
  color: var(--primary);
  font-weight: 700;
}

.standard-list h3 {
  margin: 0;
  color: var(--secondary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 500;
}

.standard-list p {
  margin: 0;
  color: var(--muted);
}

.journey-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: 64px;
  align-items: center;
  padding: 64px;
  background: rgba(247, 231, 206, 0.4);
  border: 1px solid var(--primary-soft);
}

.journey-section p {
  max-width: 580px;
  color: var(--muted);
  font-size: 1.05rem;
}

.journey-details {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.journey-details p {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 0 14px;
  margin: 0;
}

.journey-details span {
  grid-row: span 2;
  color: var(--secondary);
}

.journey-details strong {
  display: block;
  color: var(--secondary);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.journey-card {
  padding: 34px;
  background: var(--panel-surface);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
}

.journey-card span {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.journey-card h3 {
  margin: 14px 0 10px;
  color: var(--secondary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.08;
}

.luxury-form,
.contact-panel,
.inquiry-form {
  padding: 30px;
  background: var(--panel-surface);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
}

.luxury-form,
.inquiry-form {
  display: grid;
  gap: 20px;
}

.form-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  padding: 10px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--outline-soft);
  border-radius: 0;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--secondary);
}

/* About and contact pages */
.about-page,
.contact-page {
  padding: 58px 0 84px;
}

.about-editorial,
.about-principles,
.contact-editorial,
.contact-directory {
  width: min(calc(100% - 120px), var(--container));
  margin: 0 auto 82px;
}

.about-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 58px;
  align-items: center;
}

.about-copy h1,
.contact-editorial h1 {
  margin: 0;
  color: var(--secondary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4.2rem;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

.about-copy p,
.contact-editorial p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
}

.about-editorial figure {
  position: relative;
  margin: 0;
  padding: 8px;
  background: var(--surface-plain);
  border: 1px solid rgba(206, 197, 186, 0.58);
}

.about-editorial img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.about-editorial figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 300px;
  padding: 8px 12px;
  color: var(--secondary);
  background: rgba(250, 250, 235, 0.92);
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.about-principles,
.contact-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.about-principles article,
.contact-directory article {
  padding: 30px;
  background: var(--panel-surface);
  border: 1px solid var(--panel-border);
}

.about-principles span,
.contact-directory > article > span {
  display: block;
  margin-bottom: 18px;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
}

.about-principles h2,
.contact-directory h2 {
  margin: 0 0 10px;
  color: var(--secondary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.08;
}

.about-principles p,
.contact-directory p {
  margin: 0;
  color: var(--muted);
}

.contact-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: end;
  padding: 64px;
  background: rgba(247, 231, 206, 0.42);
  border: 1px solid var(--primary-soft);
}

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

.contact-directory a {
  color: var(--secondary);
  font-weight: 600;
}

/* Services and wedding items pages */
.service-page,
.items-page {
  padding: 58px 0 84px;
}

.service-editorial,
.service-suite,
.service-flow,
.items-editorial,
.item-collection,
.item-inquiry {
  width: min(calc(100% - 120px), var(--container));
  margin: 0 auto 82px;
}

.service-editorial,
.items-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 58px;
  align-items: center;
}

.service-editorial > div,
.items-editorial > div {
  position: relative;
  z-index: 1;
}

.service-editorial > div::before,
.items-editorial > div::before {
  content: "";
  display: block;
  width: 92px;
  height: 1px;
  margin-bottom: 28px;
  background: var(--primary);
}

.service-editorial h1,
.items-editorial h1,
.service-flow h2,
.item-inquiry h2 {
  margin: 0;
  color: var(--secondary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4.2rem;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

.service-editorial p,
.items-editorial p,
.service-flow p,
.item-inquiry p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.05rem;
}

.service-editorial figure,
.items-editorial figure {
  position: relative;
  margin: 0;
  padding: 8px;
  background: var(--surface-plain);
  border: 1px solid rgba(206, 197, 186, 0.58);
  box-shadow: 0 22px 54px rgba(31, 31, 24, 0.09);
}

.service-editorial img,
.items-editorial img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.service-editorial figcaption,
.items-editorial figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 300px;
  padding: 8px 12px;
  color: var(--secondary);
  background: rgba(250, 250, 235, 0.92);
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service-suite {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-suite article {
  position: relative;
  min-height: 100%;
  padding: 8px;
  border: 1px solid var(--panel-border);
  background: var(--panel-surface);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-suite article:hover {
  box-shadow: 0 18px 44px rgba(31, 31, 24, 0.09);
  transform: translateY(-3px);
}

.service-suite article::after {
  content: "";
  position: absolute;
  inset: auto 24px 22px auto;
  width: 52px;
  height: 52px;
  border-right: 1px solid rgba(104, 93, 74, 0.42);
  border-bottom: 1px solid rgba(104, 93, 74, 0.42);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.service-suite article:hover::after {
  opacity: 1;
  transform: translate(4px, 4px);
}

.service-suite img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 560ms ease;
}

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

.service-suite article > div {
  padding: 22px 16px 18px;
}

.service-suite span,
.item-collection span {
  display: block;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service-suite h2,
.item-collection h2 {
  margin: 0 0 12px;
  color: var(--secondary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1.05;
}

.service-suite p,
.item-collection p {
  margin: 0;
  color: var(--muted);
}

.service-flow,
.item-inquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
  padding: 58px;
  background: rgba(247, 231, 206, 0.42);
  border: 1px solid var(--primary-soft);
}

.item-inquiry {
  align-items: end;
}

.item-inquiry .button {
  justify-self: end;
}

.service-flow ol {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-flow li {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(206, 197, 186, 0.72);
}

.service-flow strong {
  color: var(--secondary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.service-flow span {
  color: var(--muted);
}

.item-collection {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.item-collection article {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 8px;
  background: var(--panel-surface);
  border: 1px solid var(--panel-border);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.item-collection article:hover {
  box-shadow: 0 18px 44px rgba(31, 31, 24, 0.09);
  transform: translateY(-3px);
}

.item-collection img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 560ms ease;
}

.item-collection article:hover img {
  transform: scale(1.035);
}

.item-collection div {
  padding: 18px 18px 18px 0;
}

/* Shared supporting pages */
.section,
.page-hero,
.contact-layout,
.booking-hero,
.split,
.moodboard-section,
.local-band {
  padding: 88px 60px;
}

.section-grid,
.split,
.booking-hero,
.contact-layout,
.moodboard-section,
.local-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.page-hero {
  background: linear-gradient(105deg, rgba(77, 100, 83, 0.88), rgba(104, 93, 74, 0.62)), url("https://images.unsplash.com/photo-1465495976277-4387d4b0e4a6?auto=format&fit=crop&w=1500&q=80") center/cover;
  color: #fff;
}

.page-hero h1 {
  color: #fff;
  max-width: 900px;
}

.page-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.8);
}

.section h2,
.cta-band h2,
.feature-list h2,
.contact-panel h2,
.mood-copy h2,
.local-band h2 {
  margin: 0 0 14px;
  color: var(--secondary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.feature-list article,
.service-card,
.item-card {
  background: var(--panel-surface);
  border: 1px solid var(--panel-border);
}

.feature-list article {
  min-height: 250px;
  padding: 30px;
}

.card-grid {
  display: grid;
  gap: 22px;
}

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

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

.service-card,
.item-card {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.service-card img,
.item-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card div,
.item-card {
  padding: 22px;
}

.service-card h3,
.item-card h2 {
  margin: 0 0 8px;
  color: var(--secondary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.service-card p,
.item-card p,
.contact-panel p,
.section-grid p,
.mood-copy p,
.booking-hero p,
.split p {
  color: var(--muted);
}

.gallery-main {
  padding: 58px 0 84px;
}

.gallery-hero,
.gallery-categories,
.lookbook-edit,
.gallery-editor-note {
  width: min(calc(100% - 120px), var(--container));
  margin: 0 auto;
}

.gallery-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: center;
  margin-bottom: 34px;
}

.gallery-hero h1,
.gallery-editor-note h2 {
  margin: 0;
  color: var(--secondary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4.2rem;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

.gallery-hero p,
.gallery-editor-note p {
  max-width: 610px;
  color: var(--muted);
  font-size: 1.05rem;
}

.gallery-hero figure {
  position: relative;
  margin: 0;
  padding: 8px;
  background: #fff;
  border: 1px solid rgba(206, 197, 186, 0.58);
}

.gallery-hero img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.gallery-hero figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  padding: 8px 12px;
  color: var(--secondary);
  background: rgba(250, 250, 235, 0.9);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.gallery-categories {
  display: flex;
  justify-content: center;
  gap: 22px;
  overflow-x: auto;
  margin-bottom: 36px;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(206, 197, 186, 0.48);
}

.gallery-categories a {
  flex: 0 0 auto;
  padding: 8px 0;
  color: var(--secondary);
  background: transparent;
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.gallery-categories a:hover {
  color: var(--primary);
  border-color: currentColor;
}

.lookbook-edit {
  display: grid;
  gap: 30px;
}

.edit-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.62fr);
  gap: 0;
  min-height: 560px;
  background: var(--panel-surface);
  border: 1px solid var(--panel-border);
}

.edit-image {
  position: relative;
  min-height: 560px;
  padding: 10px;
}

.edit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.edit-image button {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--secondary);
  background: rgba(250, 250, 235, 0.92);
  border: 1px solid rgba(206, 197, 186, 0.7);
  border-radius: 50%;
  cursor: pointer;
}

.edit-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  background: var(--surface-low);
}

.edit-copy span {
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.edit-copy h2 {
  margin: 0 0 18px;
  color: var(--secondary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.05;
}

.edit-copy p {
  margin: 0;
  color: var(--muted);
}

.lookbook-edit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.edit-card {
  margin: 0;
  padding: 8px;
  background: var(--panel-surface);
  border: 1px solid var(--panel-border);
}

.edit-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.edit-card figcaption {
  padding: 18px 6px 6px;
}

.edit-card strong {
  display: block;
  color: var(--secondary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.08;
}

.edit-card span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.86rem;
}

.gallery-editor-note {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.72fr);
  gap: 54px;
  align-items: center;
  margin-top: 82px;
  padding: 54px;
  background: #f9f2de;
  border: 1px solid var(--panel-border);
}

.gallery-editor-note h2 {
  max-width: 720px;
  font-size: 3.05rem;
  line-height: 1.08;
}

.gallery-editor-note p {
  margin: 18px 0 28px;
}

.gallery-editor-note ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(126, 118, 108, 0.28);
}

.gallery-editor-note li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 4px 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(126, 118, 108, 0.28);
}

.gallery-editor-note li span {
  grid-row: span 2;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
}

.gallery-editor-note li strong {
  color: var(--secondary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1;
}

.gallery-editor-note li p {
  margin: 0;
  font-size: 0.92rem;
}

.detail-strip,
.process-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.detail-strip article,
.process-line article {
  min-height: 220px;
  padding: 30px;
  border-right: 1px solid rgba(206, 197, 186, 0.58);
}

.detail-strip {
  color: #fff;
  background: var(--secondary);
}

.detail-strip h2,
.process-line span {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 500;
}

.detail-strip p,
.process-line p {
  margin: 0;
}

.process-line.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.moodboard {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 14px;
}

.moodboard figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.moodboard img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.mood-tall {
  grid-row: span 2;
}

.mood-tall img {
  height: 534px;
}

.moodboard figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  color: var(--secondary);
  background: rgba(250, 250, 235, 0.9);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
}

.local-band {
  color: #fff;
  background: linear-gradient(90deg, rgba(77, 100, 83, 0.92), rgba(77, 100, 83, 0.68)), url("https://images.unsplash.com/photo-1523438885200-e635ba2c371e?auto=format&fit=crop&w=1400&q=80") center/cover;
}

.local-band h2,
.local-band .eyebrow {
  color: #fff;
}

.local-ticket {
  justify-self: end;
  width: min(100%, 370px);
  padding: 30px;
  color: var(--ink);
  background: rgba(250, 250, 235, 0.94);
  border-radius: 4px;
}

.local-ticket span {
  display: block;
  color: var(--secondary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
}

.local-ticket strong,
.local-ticket a {
  display: block;
  margin-top: 10px;
}

.split img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 4px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 58px 60px;
  background: var(--surface-low);
}

.site-footer {
  color: var(--muted);
  background: var(--surface-high);
  border-top: 1px solid rgba(206, 197, 186, 0.58);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(130px, 0.38fr) minmax(130px, 0.38fr);
  gap: 28px;
  padding: 38px 60px 26px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 1.9rem;
  line-height: 1;
}

.footer-about p {
  max-width: 400px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-about span,
.footer-column p {
  display: block;
  margin: 16px 0 8px;
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 7px;
}

.footer-column p {
  margin-top: 6px;
}

.footer-column a,
.footer-bottom span {
  color: var(--muted);
  text-decoration: none;
}

.footer-column a {
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover {
  color: var(--secondary);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 60px;
  border-top: 1px solid rgba(126, 118, 108, 0.22);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-bottom span {
  color: var(--outline);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-content: start;
}

.footer-links a {
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .site-header,
  .section,
  .page-hero,
  .contact-layout,
  .booking-hero,
  .split,
  .moodboard-section,
  .local-band,
  .bespoke-services,
  .standard-section,
  .journey-section,
  .cta-band,
  .site-footer {
    padding-right: 34px;
    padding-left: 34px;
  }

  .opulence-hero,
  .lookbook-masonry,
  .journey-section,
  .gallery-hero,
  .gallery-categories,
  .lookbook-edit,
  .gallery-editor-note,
  .about-editorial,
  .about-principles,
  .contact-editorial,
  .contact-directory,
  .service-editorial,
  .service-suite,
  .service-flow,
  .items-editorial,
  .item-collection,
  .item-inquiry {
    width: min(calc(100% - 68px), var(--container));
  }

  .site-footer {
    padding-right: 0;
    padding-left: 0;
  }

  .footer-main,
  .footer-bottom {
    padding-right: 34px;
    padding-left: 34px;
  }
}

@media (max-width: 900px) {
  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 45;
    background: rgba(27, 28, 20, 0.34);
    backdrop-filter: blur(2px);
  }

  .site-header {
    z-index: 80;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 95;
    background: rgba(250, 250, 235, 0.72);
    transition: background 180ms ease, border-color 180ms ease;
  }

  .nav-toggle[aria-expanded="true"] {
    background: #f9f2de;
    border-color: rgba(104, 93, 74, 0.38);
  }

  .site-nav {
    position: fixed;
    top: 94px;
    right: 20px;
    left: auto;
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: min(360px, calc(100vw - 40px));
    max-height: calc(100dvh - 116px);
    overflow-y: auto;
    padding: 18px;
    background: #f9f2de;
    border: 1px solid rgba(126, 118, 108, 0.28);
    border-radius: 8px;
    box-shadow: 0 28px 80px rgba(31, 31, 24, 0.24);
    opacity: 0;
    visibility: hidden;
    transform: translateX(24px) scale(0.98);
    transform-origin: top right;
    transition: opacity 180ms ease, visibility 180ms ease, transform 220ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
  }

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 11px 12px;
    border-bottom: 1px solid rgba(126, 118, 108, 0.16);
    color: var(--muted);
    font-size: 0.78rem;
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    color: var(--secondary);
  }

  .site-nav .nav-cta {
    margin-top: 10px;
    min-height: 52px;
    border-bottom: 0;
    border-radius: 4px;
    color: #fff;
  }

  .site-nav .nav-cta:hover,
  .site-nav .nav-cta[aria-current="page"]:hover {
    color: var(--secondary);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-copy-center h1 {
    font-size: 3.45rem;
  }

  .hero-portrait {
    height: 520px;
  }

  .section-title-row,
  .cta-band {
    align-items: start;
    flex-direction: column;
  }

  .planning-cards,
  .standard-section,
  .journey-section,
  .gallery-hero,
  .gallery-editor-note,
  .edit-feature,
  .about-editorial,
  .contact-editorial,
  .service-editorial,
  .service-flow,
  .items-editorial,
  .item-inquiry,
  .section-grid,
  .split,
  .booking-hero,
  .contact-layout,
  .feature-list,
  .moodboard-section,
  .local-band {
    grid-template-columns: 1fr;
  }

  .card-grid.three,
  .card-grid.four,
  .detail-strip,
  .process-line,
  .process-line.compact,
  .service-suite,
  .item-collection {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .item-collection div {
    padding: 0 18px 18px;
  }

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

  .about-principles,
  .contact-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .edit-image {
    min-height: 460px;
  }

  .gallery-hero img {
    height: 460px;
  }

  .about-editorial img {
    height: 460px;
  }

  .service-editorial img,
  .items-editorial img {
    height: 460px;
  }

  .item-inquiry .button {
    justify-self: start;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(160px, 0.6fr));
  }
}

@media (max-width: 620px) {
  .site-header,
  .section,
  .page-hero,
  .contact-layout,
  .booking-hero,
  .split,
  .moodboard-section,
  .local-band,
  .bespoke-services,
  .standard-section,
  .journey-section,
  .cta-band,
  .site-footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .luxury-main {
    padding-top: 36px;
  }

  .opulence-hero,
  .lookbook-masonry,
  .journey-section,
  .gallery-hero,
  .gallery-categories,
  .lookbook-edit,
  .gallery-editor-note,
  .about-editorial,
  .about-principles,
  .contact-editorial,
  .contact-directory,
  .service-editorial,
  .service-suite,
  .service-flow,
  .items-editorial,
  .item-collection,
  .item-inquiry {
    width: min(calc(100% - 40px), var(--container));
    margin-bottom: 64px;
  }

  .hero-copy-center h1 {
    font-size: 2.75rem;
  }

  .section-title-row h2,
  .service-intro h2,
  .standard-section h2,
  .journey-section h2,
  .gallery-hero h1,
  .gallery-editor-note h2,
  .edit-copy h2,
  .about-copy h1,
  .contact-editorial h1,
  .service-editorial h1,
  .items-editorial h1,
  .service-flow h2,
  .item-inquiry h2,
  .page-hero h1,
  .booking-hero h1,
  .about-split h1,
  .section h2,
  .cta-band h2,
  .feature-list h2,
  .contact-panel h2,
  .mood-copy h2,
  .local-band h2 {
    font-size: 2.35rem;
  }

  .hero-portrait {
    height: 390px;
  }

  .portrait-frame {
    inset: 10px;
    border-width: 10px;
  }

  .form-pair,
  .card-grid.three,
  .card-grid.four,
  .detail-strip,
  .process-line,
  .process-line.compact,
  .lookbook-edit-grid,
  .about-principles,
  .contact-directory,
  .service-suite,
  .item-collection,
  .moodboard {
    grid-template-columns: 1fr;
  }

  .gallery-categories {
    justify-content: flex-start;
    gap: 20px;
  }

  .edit-feature {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .edit-image {
    min-height: 340px;
  }

  .edit-copy {
    padding: 28px;
  }

  .standard-list article {
    grid-template-columns: 1fr;
  }

  .contact-editorial {
    padding: 28px;
  }

  .gallery-editor-note {
    padding: 28px;
  }

  .gallery-editor-note li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 4px 14px;
  }

  .service-flow,
  .item-inquiry {
    padding: 28px;
  }

  .service-flow li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .service-suite article {
    min-height: 0;
  }

  .service-suite img {
    height: 300px;
  }

  .about-editorial img {
    height: 340px;
  }

  .service-editorial img,
  .items-editorial img {
    height: 340px;
  }

  .gallery-main {
    padding-top: 36px;
  }

  .gallery-hero img {
    height: 360px;
  }

  .moodboard img,
  .mood-tall img {
    height: 320px;
  }

  .site-footer {
    padding-right: 0;
    padding-left: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 30px 20px 22px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    padding: 14px 20px 18px;
  }

  .footer-brand {
    font-size: 1.75rem;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
