:root {
  --ink: #161113;
  --night: #201417;
  --wine: #4a1f29;
  --rose: #b77d7b;
  --gold: #d8b174;
  --champagne: #f4e6d1;
  --pearl: #fbf6ee;
  --muted: #8e7d75;
  --line: rgba(244, 230, 209, 0.16);
  --shadow: 0 26px 70px rgba(18, 9, 11, 0.32);
  font-family: Inter, Arial, sans-serif;
  color: var(--pearl);
  background: var(--night);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(183, 125, 123, 0.16), transparent 28rem),
    linear-gradient(130deg, #1b1013 0%, #2c171d 45%, #130d0f 100%);
}

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

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

p {
  line-height: 1.7;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 82px;
  padding: 14px clamp(20px, 4vw, 58px);
  border-bottom: 1px solid rgba(244, 230, 209, 0.1);
  background: rgba(22, 13, 16, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(216, 177, 116, 0.8);
  transform: rotate(45deg);
  background: linear-gradient(145deg, rgba(216, 177, 116, 0.24), rgba(183, 125, 123, 0.05));
  box-shadow: inset 0 0 0 7px rgba(32, 20, 23, 0.72);
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-text small {
  color: rgba(244, 230, 209, 0.68);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 34px);
  color: rgba(244, 230, 209, 0.82);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--gold);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(216, 177, 116, 0.78);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.header-cta,
.button.primary {
  color: #241216;
  background: linear-gradient(135deg, var(--gold), #f1d6a5);
}

.button.ghost {
  color: var(--champagne);
  background: rgba(244, 230, 209, 0.04);
}

.hero {
  position: relative;
  display: grid;
  min-height: 96vh;
  overflow: hidden;
  padding: 150px clamp(20px, 6vw, 86px) 90px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center top;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(20, 11, 13, 0.94) 0%, rgba(20, 11, 13, 0.76) 38%, rgba(20, 11, 13, 0.28) 72%),
    linear-gradient(0deg, rgba(20, 11, 13, 0.9) 0%, transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 700px;
  font-size: clamp(58px, 9vw, 118px);
  line-height: 0.92;
}

h2 {
  color: var(--champagne);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1;
}

h3 {
  color: var(--champagne);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1.08;
}

.hero-copy {
  max-width: 640px;
  margin: 26px 0 0;
  color: rgba(244, 230, 209, 0.84);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-panel {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 5vw, 70px);
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(244, 230, 209, 0.16);
  border-radius: 8px;
  background: rgba(26, 15, 18, 0.78);
  box-shadow: var(--shadow);
}

.hero-panel span {
  padding: 18px 22px;
  color: rgba(244, 230, 209, 0.82);
  background: rgba(244, 230, 209, 0.04);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.section,
.gallery-section,
.contact-section {
  padding: clamp(72px, 10vw, 130px) clamp(20px, 6vw, 86px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1fr);
  gap: clamp(34px, 7vw, 90px);
  border-top: 1px solid var(--line);
  background: var(--pearl);
  color: var(--ink);
}

.intro h2,
.intro h3 {
  color: var(--ink);
}

.intro-text {
  max-width: 720px;
  color: #4c3c38;
  font-size: 18px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 38px;
}

.section-heading p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(244, 230, 209, 0.74);
}

.section-heading.compact {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.gallery-section {
  background: #130d0f;
}

.portfolio-section {
  background: #0b1019;
}

.portfolio-section .section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(246, 247, 249, 0.72);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.portfolio-card {
  position: relative;
  display: grid;
  min-height: 560px;
  overflow: hidden;
  background: #111925;
}

.portfolio-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.03);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 28% 0 0;
  background: linear-gradient(transparent, rgba(5, 7, 11, 0.95));
}

.portfolio-card:hover img {
  filter: saturate(0.96) contrast(1.08);
  transform: scale(1.035);
}

.portfolio-card div {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: 30px;
}

.portfolio-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portfolio-card h3 {
  font-size: clamp(32px, 3.2vw, 48px);
}

.portfolio-card p {
  margin: 14px 0 0;
  color: rgba(246, 247, 249, 0.78);
  font-size: 15px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: #2b1a1f;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

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

.gallery-item:hover img {
  filter: saturate(1.1) contrast(1.06);
  transform: scale(1.035);
}

.gallery-item figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(244, 230, 209, 0.22);
  border-radius: 999px;
  background: rgba(19, 13, 15, 0.7);
  color: rgba(244, 230, 209, 0.88);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 94px);
  align-items: center;
}

.split-media {
  display: grid;
  grid-template-columns: 0.72fr 0.58fr;
  align-items: end;
  gap: 14px;
}

.split-media img {
  width: 100%;
  min-height: 470px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.split-media img + img {
  min-height: 350px;
  margin-bottom: 46px;
}

.split-copy p {
  color: rgba(244, 230, 209, 0.74);
}

.service-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.service-list article {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.service-list p {
  margin-bottom: 0;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 1px;
  background: rgba(216, 177, 116, 0.28);
}

.trust-band div {
  display: grid;
  gap: 8px;
  padding: 32px clamp(20px, 4vw, 54px);
  background: #211316;
}

.trust-band strong {
  color: var(--gold);
  font-size: 15px;
  text-transform: uppercase;
}

.trust-band span {
  color: rgba(244, 230, 209, 0.76);
}

.packages {
  background: var(--pearl);
  color: var(--ink);
}

.packages h2,
.packages h3 {
  color: var(--ink);
}

.packages .eyebrow {
  color: var(--wine);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.package-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 480px;
  padding: 34px;
  border: 1px solid rgba(74, 31, 41, 0.16);
  border-radius: 8px;
  background: #fffaf2;
  box-shadow: 0 18px 50px rgba(52, 30, 22, 0.08);
}

.package-card.featured {
  background: linear-gradient(145deg, #351a22, #171012);
  color: var(--champagne);
  transform: translateY(-18px);
}

.package-card.featured h3 {
  color: var(--champagne);
}

.package-kicker {
  margin: 0;
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
  color: var(--gold);
}

.package-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  padding-top: 12px;
  border-top: 1px solid rgba(74, 31, 41, 0.14);
  color: #55423c;
}

.package-card.featured li {
  border-color: rgba(244, 230, 209, 0.16);
  color: rgba(244, 230, 209, 0.78);
}

.package-card a {
  align-self: end;
  justify-self: start;
  margin-top: 18px;
  color: var(--wine);
  font-weight: 900;
  text-transform: uppercase;
}

.package-card.featured a {
  color: var(--gold);
}

.process {
  background: #1a1013;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 46px 0 0;
  padding: 1px;
  background: rgba(244, 230, 209, 0.18);
  list-style: none;
}

.steps li {
  min-height: 260px;
  padding: 30px;
  background: #231419;
}

.steps span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
}

.steps strong {
  display: block;
  color: var(--champagne);
  font-size: 18px;
}

.steps p {
  color: rgba(244, 230, 209, 0.72);
}

.berlin {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: clamp(30px, 8vw, 110px);
  align-items: start;
  background: linear-gradient(135deg, #fff8ec, #ead4bd);
  color: var(--ink);
}

.berlin h2 {
  color: var(--ink);
}

.berlin p:not(.eyebrow) {
  margin: 0;
  color: #4e3e38;
  font-size: 20px;
}

.berlin .eyebrow {
  color: var(--wine);
}

.legal-note {
  background: #130d0f;
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 38px;
}

.note-grid article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(244, 230, 209, 0.04);
}

.note-grid p {
  color: rgba(244, 230, 209, 0.72);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 8vw, 100px);
  background:
    linear-gradient(90deg, rgba(26, 14, 17, 0.92), rgba(26, 14, 17, 0.62)),
    url("assets/images/studio-2.jpg") center / cover;
}

.contact-copy p {
  color: rgba(244, 230, 209, 0.76);
}

address {
  margin-top: 30px;
  color: rgba(244, 230, 209, 0.78);
  font-style: normal;
  line-height: 1.8;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(244, 230, 209, 0.18);
  border-radius: 8px;
  background: rgba(19, 12, 14, 0.84);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(244, 230, 209, 0.76);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(244, 230, 209, 0.2);
  border-radius: 8px;
  background: rgba(244, 230, 209, 0.08);
  color: var(--champagne);
  font: inherit;
  padding: 14px;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(20px, 6vw, 86px);
  border-top: 1px solid var(--line);
  background: #100b0c;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(244, 230, 209, 0.68);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }

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

  .package-grid,
  .steps,
  .note-grid {
    grid-template-columns: 1fr 1fr;
  }

  .package-card.featured {
    transform: none;
  }
}

@media (max-width: 780px) {
  .site-header {
    position: sticky;
    flex-wrap: wrap;
    min-height: auto;
  }

  .header-cta {
    width: 100%;
  }

  .hero {
    min-height: 92vh;
    padding-top: 86px;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(20, 11, 13, 0.92) 0%, rgba(20, 11, 13, 0.68) 100%);
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .intro,
  .split,
  .berlin,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .gallery-grid,
  .package-grid,
  .steps,
  .note-grid,
  .trust-band {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 280px;
  }

  .gallery-item.large,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .split-media {
    grid-template-columns: 1fr;
  }

  .split-media img,
  .split-media img + img {
    min-height: 320px;
    margin: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Quality pass: calmer premium layout, less upscaling */
.site-header {
  min-height: 76px;
}

.brand-logo {
  width: clamp(220px, 20vw, 315px);
}

.hero {
  grid-template-columns: minmax(340px, 1fr) minmax(300px, 420px);
  min-height: 92vh;
  padding-bottom: 72px;
}

.hero::before {
  opacity: 0.45;
}

.hero-image {
  width: min(420px, 100%);
  height: auto;
  min-height: 0;
  max-height: 68vh;
  object-fit: contain;
  background: #080b11;
  transform: none;
}

h1 {
  max-width: 820px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(62px, 8.5vw, 118px);
  font-weight: 600;
  line-height: 0.92;
  text-transform: none;
}

h2 {
  font-size: clamp(42px, 5.6vw, 78px);
}

.hero-copy {
  max-width: 590px;
}

.portfolio-section,
.gallery-section {
  padding-top: clamp(78px, 10vw, 128px);
}

.portfolio-section .section-heading,
.gallery-section .section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(26px, 6vw, 84px);
  max-width: none;
  align-items: end;
}

.portfolio-section .section-heading h2,
.gallery-section .section-heading h2 {
  max-width: 720px;
}

.portfolio-section .section-heading p:not(.eyebrow),
.gallery-section .section-heading p:not(.eyebrow) {
  margin: 0;
  max-width: 620px;
}

.portfolio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.portfolio-card,
.portfolio-card:nth-child(1),
.portfolio-card:nth-child(6),
.portfolio-card:nth-child(2),
.portfolio-card:nth-child(3),
.portfolio-card:nth-child(4),
.portfolio-card:nth-child(5) {
  grid-column: span 1;
}

.portfolio-card {
  min-height: 440px;
  border-color: rgba(255, 255, 255, 0.1);
}

.portfolio-card img {
  filter: saturate(0.72) contrast(1.06) brightness(0.92);
}

.portfolio-card:hover img {
  filter: saturate(0.92) contrast(1.08) brightness(0.98);
}

.portfolio-card::after {
  background:
    linear-gradient(180deg, rgba(5, 7, 11, 0.05) 0%, rgba(5, 7, 11, 0.18) 36%, rgba(5, 7, 11, 0.9) 100%);
}

.portfolio-card span {
  top: 24px;
  right: 26px;
  color: rgba(215, 183, 101, 0.55);
  font-size: 13px;
  letter-spacing: 0.2em;
  line-height: 1;
}

.portfolio-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 600;
  line-height: 1;
  text-transform: none;
}

.portfolio-card p {
  max-width: 340px;
  font-size: 14px;
}

.gallery-grid.refined {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-grid.refined .gallery-item,
.gallery-grid.refined .gallery-item:nth-child(1),
.gallery-grid.refined .gallery-item:nth-child(6),
.gallery-grid.refined .gallery-item:nth-child(9) {
  grid-column: span 1;
  grid-row: span 1;
  aspect-ratio: 2 / 3;
}

.gallery-grid.refined .gallery-item:nth-child(3),
.gallery-grid.refined .gallery-item:nth-child(8) {
  transform: none;
}

.gallery-grid.refined .gallery-item img {
  filter: saturate(0.76) contrast(1.04) brightness(0.94);
}

.gallery-grid.refined .gallery-item:hover img {
  filter: saturate(0.92) contrast(1.07) brightness(0.98);
}

.gallery-item figcaption {
  background: rgba(6, 9, 14, 0.82);
}

.packages {
  background: #f6f7f9;
}

@media (max-width: 1100px) {
  .portfolio-grid,
  .gallery-grid.refined {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .portfolio-section .section-heading,
  .gallery-section .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-image {
    width: min(340px, 82vw);
    max-height: none;
  }

  .portfolio-grid,
  .gallery-grid.refined {
    grid-template-columns: 1fr;
  }

  .portfolio-card {
    min-height: 470px;
  }
}

/* Absolute final pass: header, larger hero image, gold accents */
.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 86px;
  padding: 0 clamp(22px, 5vw, 70px);
  border-bottom: 1px solid rgba(215, 183, 101, 0.18);
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.97), rgba(5, 7, 11, 0.84));
}

.site-header::after {
  content: "";
  position: absolute;
  left: clamp(22px, 5vw, 70px);
  right: clamp(22px, 5vw, 70px);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 183, 101, 0.78), transparent);
}

.brand-logo {
  display: none;
}

.brand-diamond {
  display: grid;
  place-items: center;
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid rgba(215, 183, 101, 0.9);
  color: var(--gold);
  font-size: 0;
  transform: rotate(45deg);
  background: linear-gradient(145deg, rgba(215, 183, 101, 0.16), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 0 0 7px #05070b;
}

.brand-diamond::before {
  content: "EFB";
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  transform: rotate(-45deg);
}

.brand-diamond::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(215, 183, 101, 0.35);
}

.brand-copy {
  display: grid;
  gap: 4px;
  line-height: 1;
}

.brand-copy strong {
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 600;
}

.brand-copy small {
  color: rgba(215, 183, 101, 0.78);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.header-cta,
.button.primary {
  border-color: rgba(215, 183, 101, 0.9);
  background: linear-gradient(135deg, #d7b765, #8f6f2e);
  color: #080b11;
}

.eyebrow,
.package-kicker,
.packages .eyebrow,
.berlin .eyebrow,
.portfolio-card span,
.steps span,
.price {
  color: var(--gold);
}

.hero {
  grid-template-columns: minmax(460px, 1fr) minmax(360px, 0.72fr);
  gap: clamp(42px, 7vw, 110px);
  min-height: 94vh;
  padding-top: 128px;
  background:
    linear-gradient(115deg, rgba(5, 7, 11, 0.88) 0%, rgba(5, 7, 11, 0.56) 44%, rgba(5, 7, 11, 0.96) 100%),
    radial-gradient(circle at 28% 22%, rgba(215, 183, 101, 0.14), transparent 28rem),
    #05070b;
}

.hero-image {
  justify-self: stretch;
  width: min(660px, 52vw);
  max-width: 100%;
  max-height: 82vh;
  border-color: rgba(215, 183, 101, 0.24);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.48);
}

.hero-content::before {
  content: "";
  display: block;
  width: 86px;
  height: 1px;
  margin-bottom: 26px;
  background: var(--gold);
}

.section-heading .eyebrow::after,
.intro-copy .eyebrow::after {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  margin-top: 14px;
  background: rgba(215, 183, 101, 0.72);
}

.portfolio-card,
.gallery-grid.refined .gallery-item,
.package-card,
.note-grid article {
  border-color: rgba(215, 183, 101, 0.14);
}

.package-card.featured {
  border-color: rgba(215, 183, 101, 0.62);
  box-shadow: 0 26px 70px rgba(215, 183, 101, 0.12);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
    row-gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-image {
    width: min(660px, 100%);
    justify-self: start;
  }
}

@media (max-width: 780px) {
  .main-nav {
    display: none;
  }

  .brand-diamond {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 24px;
  }

  .hero {
    padding-top: 92px;
  }

  .hero-image {
    width: min(560px, 100%);
    max-height: none;
  }
}

/* Final button order */
.button,
.header-cta,
.package-card a,
.contact-form .button {
  white-space: nowrap;
  line-height: 1;
  text-align: center;
}

.button,
.header-cta {
  min-width: 0;
  min-height: 46px;
  padding: 0 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.hero-actions .button {
  flex: 0 1 auto;
}

.header-cta {
  justify-self: end;
  min-width: 112px;
  padding-inline: 18px;
}

.package-card {
  grid-template-rows: auto auto auto 1fr auto;
}

.package-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(215, 183, 101, 0.32);
}

.contact-form .button {
  width: 100%;
}

.hero-panel {
  max-width: calc(100% - 40px);
}

.hero-panel span {
  white-space: nowrap;
}

@media (max-width: 780px) {
  .site-header {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .header-cta {
    min-width: 98px;
    min-height: 40px;
    padding-inline: 14px;
    font-size: 11px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(360px, 100%);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-panel {
    max-width: 100%;
  }

  .hero-panel span {
    white-space: normal;
  }

  .brand-copy small {
    max-width: 180px;
    line-height: 1.25;
  }
}

@media (max-width: 430px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .header-cta {
    justify-self: stretch;
    width: 100%;
  }
}

/* Button and text polish */
.button,
.header-cta,
.package-card a,
.contact-form .button {
  white-space: nowrap;
  line-height: 1;
  text-align: center;
}

.button,
.header-cta {
  min-width: 0;
  min-height: 46px;
  padding: 0 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.hero-actions .button {
  flex: 0 1 auto;
}

.header-cta {
  justify-self: end;
  min-width: 112px;
  padding-inline: 18px;
}

.package-card {
  grid-template-rows: auto auto auto 1fr auto;
}

.package-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(215, 183, 101, 0.32);
  color: #2b1d0b;
}

.package-card.featured a {
  border-color: rgba(215, 183, 101, 0.54);
}

.contact-form .button {
  width: 100%;
}

.hero-panel {
  max-width: calc(100% - 40px);
}

.hero-panel span {
  white-space: nowrap;
}

.intro-text p,
.section-heading p:not(.eyebrow),
.portfolio-card p,
.steps p,
.note-grid p,
.contact-copy p {
  text-wrap: pretty;
}

@media (max-width: 1100px) {
  .header-cta {
    align-self: center;
  }

  .hero-actions {
    max-width: 100%;
  }
}

@media (max-width: 780px) {
  .site-header {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .header-cta {
    min-width: 98px;
    min-height: 40px;
    padding-inline: 14px;
    font-size: 11px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(360px, 100%);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-panel {
    max-width: 100%;
  }

  .hero-panel span {
    white-space: normal;
  }

  .brand-copy small {
    max-width: 180px;
    line-height: 1.25;
  }
}

@media (max-width: 430px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .header-cta {
    justify-self: stretch;
    width: 100%;
  }
}

/* Absolute final pass: header, larger hero image, gold accents */
.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 86px;
  padding: 0 clamp(22px, 5vw, 70px);
  border-bottom: 1px solid rgba(215, 183, 101, 0.18);
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.97), rgba(5, 7, 11, 0.84));
}

.site-header::after {
  content: "";
  position: absolute;
  left: clamp(22px, 5vw, 70px);
  right: clamp(22px, 5vw, 70px);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 183, 101, 0.78), transparent);
}

.brand-logo {
  display: none;
}

.brand-diamond {
  display: grid;
  place-items: center;
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid rgba(215, 183, 101, 0.9);
  color: var(--gold);
  font-size: 0;
  transform: rotate(45deg);
  background: linear-gradient(145deg, rgba(215, 183, 101, 0.16), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 0 0 7px #05070b;
}

.brand-diamond::before {
  content: "EFB";
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  transform: rotate(-45deg);
}

.brand-diamond::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(215, 183, 101, 0.35);
}

.brand-copy {
  display: grid;
  gap: 4px;
  line-height: 1;
}

.brand-copy strong {
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 600;
}

.brand-copy small {
  color: rgba(215, 183, 101, 0.78);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav a::after {
  background: var(--gold);
}

.header-cta,
.button.primary {
  border-color: rgba(215, 183, 101, 0.9);
  background: linear-gradient(135deg, #d7b765, #8f6f2e);
  color: #080b11;
}

.eyebrow,
.package-kicker,
.packages .eyebrow,
.berlin .eyebrow,
.portfolio-card span,
.steps span,
.price {
  color: var(--gold);
}

.hero {
  grid-template-columns: minmax(460px, 1fr) minmax(360px, 0.72fr);
  gap: clamp(42px, 7vw, 110px);
  min-height: 94vh;
  padding-top: 128px;
  background:
    linear-gradient(115deg, rgba(5, 7, 11, 0.88) 0%, rgba(5, 7, 11, 0.56) 44%, rgba(5, 7, 11, 0.96) 100%),
    radial-gradient(circle at 28% 22%, rgba(215, 183, 101, 0.14), transparent 28rem),
    #05070b;
}

.hero-image {
  justify-self: stretch;
  width: min(660px, 52vw);
  max-width: 100%;
  max-height: 82vh;
  border-color: rgba(215, 183, 101, 0.24);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.48);
}

.hero-content::before {
  content: "";
  display: block;
  width: 86px;
  height: 1px;
  margin-bottom: 26px;
  background: var(--gold);
}

.section-heading .eyebrow::after,
.intro-copy .eyebrow::after {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  margin-top: 14px;
  background: rgba(215, 183, 101, 0.72);
}

.portfolio-card,
.gallery-grid.refined .gallery-item,
.package-card,
.note-grid article {
  border-color: rgba(215, 183, 101, 0.14);
}

.package-card.featured {
  border-color: rgba(215, 183, 101, 0.62);
  box-shadow: 0 26px 70px rgba(215, 183, 101, 0.12);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
    row-gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-image {
    width: min(660px, 100%);
    justify-self: start;
  }
}

@media (max-width: 780px) {
  .main-nav {
    display: none;
  }

  .brand-diamond {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 24px;
  }

  .hero {
    padding-top: 92px;
  }

  .hero-image {
    width: min(560px, 100%);
    max-height: none;
  }
}

/* Header, hero and gold-system refinement */
.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 86px;
  padding: 0 clamp(22px, 5vw, 70px);
  border-bottom: 1px solid rgba(215, 183, 101, 0.18);
  background:
    linear-gradient(180deg, rgba(5, 7, 11, 0.96), rgba(5, 7, 11, 0.82));
}

.site-header::after {
  content: "";
  position: absolute;
  left: clamp(22px, 5vw, 70px);
  right: clamp(22px, 5vw, 70px);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 183, 101, 0.72), transparent);
}

.brand {
  gap: 14px;
}

.brand-logo {
  display: none;
}

.brand-diamond {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid rgba(215, 183, 101, 0.9);
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  transform: rotate(45deg);
  background: linear-gradient(145deg, rgba(215, 183, 101, 0.16), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 0 0 7px #05070b;
}

.brand-diamond::first-line {
  transform: rotate(-45deg);
}

.brand-diamond {
  text-indent: -1px;
}

.brand-diamond::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(215, 183, 101, 0.35);
}

.brand-diamond {
  line-height: 1;
}

.brand-diamond {
  font-size: 0;
}

.brand-diamond::before {
  content: "EFB";
  font-size: 10px;
  transform: rotate(-45deg);
}

.brand-copy {
  display: grid;
  gap: 4px;
  line-height: 1;
}

.brand-copy strong {
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.brand-copy small {
  color: rgba(215, 183, 101, 0.78);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav {
  gap: clamp(18px, 2.5vw, 38px);
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button.primary {
  border-color: rgba(215, 183, 101, 0.9);
  background: linear-gradient(135deg, #d7b765, #8f6f2e);
  color: #080b11;
}

.button.ghost {
  border-color: rgba(215, 183, 101, 0.42);
}

.eyebrow,
.package-kicker,
.packages .eyebrow,
.berlin .eyebrow {
  color: var(--gold);
}

.hero {
  grid-template-columns: minmax(420px, 0.95fr) minmax(360px, 0.72fr);
  gap: clamp(42px, 7vw, 110px);
  min-height: 94vh;
  padding-top: 128px;
  background:
    linear-gradient(115deg, rgba(5, 7, 11, 0.9) 0%, rgba(5, 7, 11, 0.62) 46%, rgba(5, 7, 11, 0.96) 100%),
    radial-gradient(circle at 28% 22%, rgba(215, 183, 101, 0.14), transparent 28rem),
    #05070b;
}

.hero-image {
  justify-self: stretch;
  width: min(620px, 50vw);
  max-width: 100%;
  max-height: 78vh;
  border-color: rgba(215, 183, 101, 0.22);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.48);
}

.hero-content {
  max-width: 690px;
}

.hero-content::before {
  content: "";
  display: block;
  width: 86px;
  height: 1px;
  margin-bottom: 26px;
  background: var(--gold);
}

.hero-panel {
  border-color: rgba(215, 183, 101, 0.22);
}

h1 em,
h2 em {
  color: var(--gold);
}

.section-heading .eyebrow::after,
.intro-copy .eyebrow::after {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  margin-top: 14px;
  background: rgba(215, 183, 101, 0.72);
}

.portfolio-card,
.gallery-grid.refined .gallery-item,
.package-card,
.note-grid article {
  border-color: rgba(215, 183, 101, 0.14);
}

.portfolio-card span,
.steps span,
.price {
  color: var(--gold);
}

.package-card.featured {
  border-color: rgba(215, 183, 101, 0.62);
  box-shadow: 0 26px 70px rgba(215, 183, 101, 0.12);
}

.trust-band {
  background: rgba(215, 183, 101, 0.28);
}

.site-footer {
  border-top-color: rgba(215, 183, 101, 0.2);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
    row-gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-image {
    width: min(620px, 100%);
    justify-self: start;
  }
}

@media (max-width: 780px) {
  .site-header {
    position: sticky;
  }

  .brand-diamond {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 24px;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    width: auto;
  }

  .hero {
    padding-top: 92px;
  }

  .hero-image {
    width: min(520px, 100%);
    max-height: none;
  }
}

@media (max-width: 520px) {
  .brand-text strong {
    font-size: 19px;
  }

  .brand-text small {
    font-size: 10px;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 38px;
  }

  .section,
  .gallery-section,
  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .package-card,
  .contact-form,
  .note-grid article {
    padding: 22px;
  }
}

/* Caprice-inspired refinement */
:root {
  --night: #0b1019;
  --slate: #151b26;
  --blue: #2f69c3;
  --blue-dark: #1f4f96;
  --gold: #d7b765;
  --champagne: #f3ead8;
  --pearl: #f6f7f9;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 30px 90px rgba(3, 5, 8, 0.42);
}

body {
  background:
    radial-gradient(circle at 12% 18%, rgba(47, 105, 195, 0.18), transparent 28rem),
    linear-gradient(130deg, #05070b 0%, #111824 48%, #07090e 100%);
}

.site-header {
  border-bottom-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(to bottom, rgba(4, 6, 10, 0.94), rgba(4, 6, 10, 0.78));
}

.brand-logo {
  width: clamp(238px, 24vw, 360px);
  height: auto;
}

.brand-mark,
.brand-text {
  display: none;
}

.main-nav {
  color: rgba(246, 247, 249, 0.78);
  letter-spacing: 0.12em;
}

.header-cta,
.button {
  border-radius: 2px;
  letter-spacing: 0.13em;
}

.header-cta,
.button.primary {
  border-color: var(--blue);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.04);
}

.eyebrow {
  color: var(--blue);
  letter-spacing: 0.2em;
}

.hero {
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 0.7fr);
  align-items: center;
  gap: clamp(30px, 6vw, 86px);
}

.hero-image {
  position: relative;
  inset: auto;
  z-index: 2;
  justify-self: end;
  width: min(520px, 100%);
  height: min(70vh, 720px);
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.98) 0%, rgba(10, 15, 23, 0.9) 52%, rgba(10, 15, 23, 0.62) 100%),
    linear-gradient(0deg, rgba(5, 7, 11, 0.94) 0%, transparent 48%);
}

h1 {
  font-size: clamp(54px, 7.5vw, 104px);
}

.hero-panel {
  border-radius: 0;
  background: rgba(7, 10, 15, 0.88);
}

.hero-panel span,
.trust-band div,
.steps li {
  background: #111925;
}

.gallery-section,
.legal-note {
  background: #080b11;
}

.gallery-grid.refined {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 14px;
}

.gallery-grid.refined .gallery-item {
  grid-column: auto;
  grid-row: auto;
  aspect-ratio: 2 / 3;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: #111925;
}

.gallery-grid.refined .gallery-item img {
  filter: saturate(0.78) contrast(1.02);
}

.gallery-grid.refined .gallery-item:hover img {
  filter: saturate(0.95) contrast(1.08);
}

.gallery-item figcaption {
  border-color: rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: rgba(6, 9, 14, 0.76);
}

.split-media img,
.package-card,
.note-grid article,
.contact-form {
  border-radius: 0;
}

.package-card.featured {
  background: linear-gradient(145deg, #111925, #05070b);
}

.package-kicker,
.packages .eyebrow,
.berlin .eyebrow {
  color: var(--blue);
}

.process {
  background: #0b1019;
}

.note-grid article {
  background: rgba(255, 255, 255, 0.04);
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(6, 9, 14, 0.94), rgba(6, 9, 14, 0.72)),
    url("assets/images/studio-2.jpg") center / cover;
}

.contact-form {
  background: rgba(7, 10, 15, 0.9);
}

input,
select,
textarea {
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.site-footer {
  background: #05070b;
}

.site-footer .brand-logo {
  width: min(340px, 100%);
}

@media (max-width: 1100px) {
  .gallery-grid.refined {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 780px) {
  .brand-logo {
    width: min(300px, 82vw);
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-image {
    justify-self: start;
    width: min(380px, 86vw);
    min-height: 460px;
    height: 58vh;
  }

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

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card {
    min-height: 520px;
  }
}

@media (max-width: 520px) {
  .gallery-grid.refined {
    grid-template-columns: 1fr;
  }
}

/* More modern editorial direction */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(47, 105, 195, 0.1), transparent 36%),
    #05070b;
}

.hero::before {
  content: "EFB / BERLIN";
  position: absolute;
  z-index: 1;
  right: clamp(18px, 5vw, 70px);
  top: 22%;
  color: rgba(255, 255, 255, 0.055);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(54px, 10vw, 150px);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 0.8;
  writing-mode: vertical-rl;
}

.hero-image {
  width: min(440px, 100%);
  height: min(74vh, 760px);
  min-height: 560px;
  object-position: center;
  transform: translateY(22px);
}

.hero-content {
  max-width: 720px;
}

h1 {
  max-width: 680px;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(62px, 10vw, 132px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.86;
  text-transform: uppercase;
}

h2 {
  max-width: 960px;
}

.intro {
  background: #f6f7f9;
}

.portfolio-section {
  padding-top: clamp(86px, 12vw, 160px);
  background:
    linear-gradient(180deg, #0b1019 0%, #05070b 100%);
}

.portfolio-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  border: 0;
  background: transparent;
}

.portfolio-card {
  min-height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: #111925;
}

.portfolio-card:nth-child(1),
.portfolio-card:nth-child(6) {
  grid-column: span 2;
}

.portfolio-card:nth-child(2),
.portfolio-card:nth-child(3),
.portfolio-card:nth-child(4),
.portfolio-card:nth-child(5) {
  grid-column: span 1;
}

.portfolio-card:nth-child(2) div,
.portfolio-card:nth-child(3) div,
.portfolio-card:nth-child(4) div,
.portfolio-card:nth-child(5) div {
  padding: 22px;
}

.portfolio-card img {
  filter: saturate(0.58) contrast(1.12) brightness(0.88);
}

.portfolio-card:hover img {
  filter: saturate(0.92) contrast(1.16) brightness(0.98);
}

.portfolio-card::after {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 11, 0.12) 0%, rgba(5, 7, 11, 0.2) 34%, rgba(5, 7, 11, 0.94) 100%),
    linear-gradient(90deg, rgba(47, 105, 195, 0.18), transparent 44%);
}

.portfolio-card span {
  position: absolute;
  top: 22px;
  right: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: clamp(42px, 6vw, 86px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.8;
}

.portfolio-card h3 {
  max-width: 260px;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(28px, 2.7vw, 46px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.portfolio-card p {
  max-width: 310px;
  color: rgba(246, 247, 249, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.gallery-section {
  padding-top: clamp(86px, 12vw, 150px);
}

.gallery-grid.refined {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 10px;
}

.gallery-grid.refined .gallery-item {
  aspect-ratio: 2 / 3;
}

.gallery-grid.refined .gallery-item:nth-child(1),
.gallery-grid.refined .gallery-item:nth-child(6),
.gallery-grid.refined .gallery-item:nth-child(9) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid.refined .gallery-item:nth-child(3),
.gallery-grid.refined .gallery-item:nth-child(8) {
  transform: translateY(42px);
}

.gallery-grid.refined .gallery-item img {
  filter: grayscale(0.18) saturate(0.72) contrast(1.1);
}

.gallery-grid.refined .gallery-item:hover img {
  filter: grayscale(0) saturate(0.95) contrast(1.14);
}

.gallery-item figcaption {
  left: 0;
  bottom: 0;
  padding: 10px 13px;
  border-left: 0;
  border-bottom: 0;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.trust-band {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1200px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .portfolio-card,
  .portfolio-card:nth-child(1),
  .portfolio-card:nth-child(6),
  .portfolio-card:nth-child(2),
  .portfolio-card:nth-child(3),
  .portfolio-card:nth-child(4),
  .portfolio-card:nth-child(5) {
    grid-column: span 1;
  }

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

@media (max-width: 780px) {
  .hero::before {
    display: none;
  }

  .hero-image {
    width: min(360px, 86vw);
    min-height: 500px;
    transform: none;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card {
    min-height: 560px;
  }

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

  .gallery-grid.refined .gallery-item:nth-child(1),
  .gallery-grid.refined .gallery-item:nth-child(6),
  .gallery-grid.refined .gallery-item:nth-child(9) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-grid.refined .gallery-item:nth-child(3),
  .gallery-grid.refined .gallery-item:nth-child(8) {
    transform: none;
  }
}

/* Final quality override: premium, calm, image-safe */
.site-header {
  min-height: 76px;
}

.brand-logo {
  width: clamp(220px, 20vw, 315px);
}

.hero {
  grid-template-columns: minmax(340px, 1fr) minmax(300px, 420px);
  min-height: 92vh;
  padding-bottom: 72px;
  background:
    linear-gradient(135deg, rgba(47, 105, 195, 0.08), transparent 38%),
    #05070b;
}

.hero::before {
  display: none;
}

.hero-image {
  width: min(420px, 100%);
  height: auto;
  min-height: 0;
  max-height: 68vh;
  object-fit: contain;
  object-position: center;
  background: #080b11;
  transform: none;
}

h1 {
  max-width: 820px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(62px, 8.5vw, 118px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: none;
}

h2 {
  font-size: clamp(42px, 5.6vw, 78px);
  max-width: 960px;
}

.hero-copy {
  max-width: 590px;
}

.portfolio-section,
.gallery-section {
  padding-top: clamp(78px, 10vw, 128px);
}

.portfolio-section .section-heading,
.gallery-section .section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(26px, 6vw, 84px);
  max-width: none;
  align-items: end;
}

.portfolio-section .section-heading p:not(.eyebrow),
.gallery-section .section-heading p:not(.eyebrow) {
  margin: 0;
  max-width: 620px;
}

.portfolio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  border: 0;
  background: transparent;
}

.portfolio-card,
.portfolio-card:nth-child(1),
.portfolio-card:nth-child(6),
.portfolio-card:nth-child(2),
.portfolio-card:nth-child(3),
.portfolio-card:nth-child(4),
.portfolio-card:nth-child(5) {
  grid-column: span 1;
}

.portfolio-card {
  min-height: 440px;
  border-color: rgba(255, 255, 255, 0.1);
  background: #111925;
}

.portfolio-card img {
  filter: saturate(0.72) contrast(1.06) brightness(0.92);
}

.portfolio-card:hover img {
  filter: saturate(0.92) contrast(1.08) brightness(0.98);
}

.portfolio-card::after {
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.05) 0%, rgba(5, 7, 11, 0.2) 38%, rgba(5, 7, 11, 0.9) 100%);
}

.portfolio-card span {
  position: absolute;
  top: 24px;
  right: 26px;
  margin: 0;
  color: rgba(215, 183, 101, 0.58);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1;
}

.portfolio-card h3 {
  max-width: 290px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.portfolio-card p {
  max-width: 340px;
  color: rgba(246, 247, 249, 0.74);
  font-size: 14px;
  line-height: 1.6;
}

.gallery-grid.refined {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: row;
  gap: 14px;
}

.gallery-grid.refined .gallery-item,
.gallery-grid.refined .gallery-item:nth-child(1),
.gallery-grid.refined .gallery-item:nth-child(6),
.gallery-grid.refined .gallery-item:nth-child(9) {
  grid-column: span 1;
  grid-row: span 1;
  aspect-ratio: 2 / 3;
}

.gallery-grid.refined .gallery-item:nth-child(3),
.gallery-grid.refined .gallery-item:nth-child(8) {
  transform: none;
}

.gallery-grid.refined .gallery-item img {
  filter: saturate(0.76) contrast(1.04) brightness(0.94);
}

.gallery-grid.refined .gallery-item:hover img {
  filter: saturate(0.92) contrast(1.07) brightness(0.98);
}

.gallery-item figcaption {
  left: 0;
  bottom: 0;
  padding: 10px 13px;
  background: rgba(6, 9, 14, 0.82);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.12em;
}

@media (max-width: 1100px) {
  .portfolio-grid,
  .gallery-grid.refined {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .portfolio-section .section-heading,
  .gallery-section .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-image {
    width: min(340px, 82vw);
    max-height: none;
    min-height: 0;
  }

  .portfolio-grid,
  .gallery-grid.refined {
    grid-template-columns: 1fr;
  }

  .portfolio-card {
    min-height: 470px;
  }
}
/* EOF final overrides */

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 86px;
  padding: 0 clamp(22px, 5vw, 70px);
  border-bottom: 1px solid rgba(215, 183, 101, 0.18);
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.97), rgba(5, 7, 11, 0.84));
}

.site-header::after {
  content: "";
  position: absolute;
  left: clamp(22px, 5vw, 70px);
  right: clamp(22px, 5vw, 70px);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 183, 101, 0.78), transparent);
}

.brand-logo {
  display: none;
}

.brand-diamond {
  display: grid;
  place-items: center;
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid rgba(215, 183, 101, 0.9);
  color: var(--gold);
  font-size: 0;
  transform: rotate(45deg);
  background: linear-gradient(145deg, rgba(215, 183, 101, 0.16), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 0 0 7px #05070b;
}

.brand-diamond::before {
  content: "EFB";
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  transform: rotate(-45deg);
}

.brand-diamond::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(215, 183, 101, 0.35);
}

.brand-copy {
  display: grid;
  gap: 4px;
  line-height: 1;
}

.brand-copy strong {
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 600;
}

.brand-copy small {
  color: rgba(215, 183, 101, 0.78);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.header-cta,
.button.primary {
  border-color: rgba(215, 183, 101, 0.9);
  background: linear-gradient(135deg, #d7b765, #8f6f2e);
  color: #080b11;
}

.eyebrow,
.package-kicker,
.packages .eyebrow,
.berlin .eyebrow,
.portfolio-card span,
.steps span,
.price {
  color: var(--gold);
}

.hero {
  grid-template-columns: minmax(460px, 1fr) minmax(360px, 0.72fr);
  gap: clamp(42px, 7vw, 110px);
  min-height: 94vh;
  padding-top: 128px;
  background:
    linear-gradient(115deg, rgba(5, 7, 11, 0.88) 0%, rgba(5, 7, 11, 0.56) 44%, rgba(5, 7, 11, 0.96) 100%),
    radial-gradient(circle at 28% 22%, rgba(215, 183, 101, 0.14), transparent 28rem),
    #05070b;
}

.hero-image {
  justify-self: stretch;
  width: min(660px, 52vw);
  max-width: 100%;
  max-height: 82vh;
  border-color: rgba(215, 183, 101, 0.24);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.48);
}

.hero-content::before {
  content: "";
  display: block;
  width: 86px;
  height: 1px;
  margin-bottom: 26px;
  background: var(--gold);
}

.section-heading .eyebrow::after,
.intro-copy .eyebrow::after {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  margin-top: 14px;
  background: rgba(215, 183, 101, 0.72);
}

.portfolio-card,
.gallery-grid.refined .gallery-item,
.package-card,
.note-grid article {
  border-color: rgba(215, 183, 101, 0.14);
}

.package-card.featured {
  border-color: rgba(215, 183, 101, 0.62);
  box-shadow: 0 26px 70px rgba(215, 183, 101, 0.12);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
    row-gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-image {
    width: min(660px, 100%);
    justify-self: start;
  }
}

@media (max-width: 780px) {
  .main-nav {
    display: none;
  }

  .brand-diamond {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 24px;
  }

  .hero {
    padding-top: 92px;
  }

  .hero-image {
    width: min(560px, 100%);
    max-height: none;
  }
}
/* Final button order - true EOF */
.button,
.header-cta,
.package-card a,
.contact-form .button {
  white-space: nowrap;
  line-height: 1;
  text-align: center;
}

.button,
.header-cta {
  min-width: 0;
  min-height: 46px;
  padding: 0 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.hero-actions .button {
  flex: 0 1 auto;
}

.header-cta {
  justify-self: end;
  min-width: 112px;
  padding-inline: 18px;
}

.package-card {
  grid-template-rows: auto auto auto 1fr auto;
}

.package-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(215, 183, 101, 0.32);
}

.contact-form .button {
  width: 100%;
}

.hero-panel {
  max-width: calc(100% - 40px);
}

.hero-panel span {
  white-space: nowrap;
}

@media (max-width: 780px) {
  .site-header {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .header-cta {
    min-width: 98px;
    min-height: 40px;
    padding-inline: 14px;
    font-size: 11px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(360px, 100%);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-panel {
    max-width: 100%;
  }

  .hero-panel span {
    white-space: normal;
  }

  .brand-copy small {
    max-width: 180px;
    line-height: 1.25;
  }
}

@media (max-width: 430px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .header-cta {
    justify-self: stretch;
    width: 100%;
  }
}
/* Hero panel placement fix - true EOF */
.hero-content {
  position: relative;
  z-index: 3;
}

.hero-content .hero-panel {
  position: relative !important;
  inset: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  top: auto !important;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(640px, 100%);
  max-width: 100%;
  margin-top: 28px;
  overflow: hidden;
}

.hero-content .hero-panel span {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  white-space: nowrap;
}

.hero-actions {
  margin-bottom: 0;
}

@media (max-width: 780px) {
  .hero-content .hero-panel {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .hero-content .hero-panel span {
    justify-content: flex-start;
    white-space: normal;
  }
}
/* Text fit refinements - true EOF */
#hero-title {
  max-width: 760px;
  font-size: clamp(42px, 6.6vw, 88px);
  line-height: 0.95;
}

@media (max-width: 780px) {
  #hero-title {
    font-size: clamp(38px, 12vw, 58px);
    line-height: 1;
  }
}
/* Section heading alignment fix - true EOF */
.portfolio-section .section-heading,
.gallery-section .section-heading {
  display: block;
  max-width: 980px;
  margin-right: auto;
  margin-left: 0;
  text-align: left;
}

.portfolio-section .section-heading h2,
.gallery-section .section-heading h2 {
  max-width: 820px;
  margin-top: 28px;
}

.portfolio-section .section-heading p:not(.eyebrow),
.gallery-section .section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 24px;
}

@media (min-width: 1000px) {
  .portfolio-section .section-heading h2,
  .gallery-section .section-heading h2 {
    font-size: clamp(54px, 6.2vw, 92px);
  }
}
/* Final logo mark - true EOF */
.brand-mark {
  display: block;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.42));
}

.footer-brand .brand-mark {
  width: 58px;
  height: 58px;
  flex-basis: 58px;
}

@media (max-width: 780px) {
  .brand-mark {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .footer-brand .brand-mark {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }
}
/* Stacked screenshot logo - true EOF */
.stacked-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  min-width: 0;
  width: max-content;
}

.stacked-logo {
  display: block;
  width: auto;
  height: 108px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.48));
}

.site-header {
  min-height: 128px;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
}

.hero {
  padding-top: clamp(168px, 14vw, 210px);
}

.footer-brand .footer-stacked-logo {
  height: 132px;
}

@media (max-width: 980px) {
  .stacked-logo {
    height: 92px;
  }

  .site-header {
    min-height: 112px;
  }

  .hero {
    padding-top: 146px;
  }
}

@media (max-width: 780px) {
  .stacked-logo {
    height: 82px;
  }

  .site-header {
    min-height: auto;
  }

  .hero {
    padding-top: 118px;
  }

  .footer-brand .footer-stacked-logo {
    height: 104px;
  }
}
/* Softer logo presentation - true EOF */
.stacked-logo {
  height: 98px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.36));
}

.site-header {
  min-height: 118px;
}

.hero {
  padding-top: clamp(154px, 13vw, 194px);
}

.footer-brand .footer-stacked-logo {
  height: 118px;
}

@media (max-width: 980px) {
  .stacked-logo {
    height: 86px;
  }

  .site-header {
    min-height: 106px;
  }
}

@media (max-width: 780px) {
  .stacked-logo {
    height: 76px;
  }

  .hero {
    padding-top: 112px;
  }

  .footer-brand .footer-stacked-logo {
    height: 96px;
  }
}
/* Mystery hero image crop - true EOF */
.hero-image {
  width: min(620px, 45vw);
  height: min(56vh, 520px);
  min-height: 430px;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(1) contrast(1.08) brightness(0.82);
  opacity: 0.94;
  border-color: rgba(215, 183, 101, 0.18);
}

.hero-image::selection {
  background: transparent;
}

@media (max-width: 1100px) {
  .hero-image {
    width: min(620px, 100%);
    height: min(54vh, 500px);
  }
}

@media (max-width: 780px) {
  .hero-image {
    width: min(520px, 100%);
    height: min(58vh, 460px);
    min-height: 360px;
  }
}
/* Premium editorial reset - true EOF */
:root {
  --gold: #9a835f;
  --champagne: #2b2622;
  --cream: #f4efe8;
  --ink: #211d1b;
  --muted: #6d625a;
  --blue: #2f3438;
  --blue-dark: #1f2428;
}

body {
  color: #211d1b;
  background: #eee8df;
}

.site-header {
  min-height: 106px;
  padding: 10px clamp(22px, 5vw, 68px);
  border-bottom: 1px solid rgba(42, 37, 34, 0.12);
  background: rgba(242, 237, 230, 0.94);
  box-shadow: 0 18px 50px rgba(42, 37, 34, 0.05);
  backdrop-filter: blur(18px);
}

.site-header::after,
.hero::before {
  display: none;
}

.stacked-logo {
  height: 86px;
  filter: none;
}

.main-nav {
  color: rgba(42, 37, 34, 0.72);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.main-nav a:hover,
.site-footer a:hover {
  color: #2a2522;
}

.main-nav a::after {
  background: #8a7657;
  opacity: 0.55;
}

.header-cta,
.button {
  border-radius: 0;
  letter-spacing: 0.12em;
}

.header-cta,
.button.primary {
  border-color: #2a2522;
  background: #2a2522;
  color: #f7f1ea;
}

.button.ghost {
  border-color: rgba(42, 37, 34, 0.28);
  color: #2a2522;
  background: transparent;
}

.hero {
  min-height: 100vh;
  grid-template-columns: minmax(390px, 0.78fr) minmax(430px, 0.82fr);
  gap: clamp(44px, 8vw, 128px);
  align-items: center;
  padding-top: clamp(138px, 12vw, 174px);
  padding-bottom: clamp(70px, 8vw, 110px);
  background:
    linear-gradient(90deg, #eee8df 0%, #eee8df 48%, #e6ded3 100%);
}

.hero-shade {
  display: none;
}

.hero-image {
  width: min(560px, 42vw);
  height: min(60vh, 560px);
  min-height: 430px;
  justify-self: end;
  border: 0;
  box-shadow: 0 28px 80px rgba(42, 37, 34, 0.13);
  filter: grayscale(1) contrast(1.02) brightness(0.94);
  opacity: 1;
}

.hero-content {
  max-width: 650px;
  color: #211d1b;
}

.hero-content::before {
  width: 58px;
  margin-bottom: 24px;
  background: rgba(138, 118, 87, 0.62);
}

.eyebrow {
  color: #8a7657;
  letter-spacing: 0.22em;
}

h1 {
  color: #211d1b;
  font-size: clamp(50px, 6.2vw, 92px);
  line-height: 0.93;
}

#hero-title {
  max-width: 720px;
  font-size: clamp(50px, 6.2vw, 92px);
  line-height: 0.93;
}

.hero-copy {
  max-width: 590px;
  color: #4e4640;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.7;
}

.hero-content .hero-panel {
  border: 1px solid rgba(42, 37, 34, 0.12);
  background: rgba(255, 255, 255, 0.26);
}

.hero-content .hero-panel span {
  color: rgba(42, 37, 34, 0.66);
  background: rgba(255, 255, 255, 0.16);
}

.intro,
.packages,
.process,
.berlin,
.legal-note,
.contact-section {
  background: #f3eee7;
  color: #211d1b;
}

.portfolio-section,
.gallery-section {
  background: #e8e0d6;
  color: #211d1b;
}

.section-heading p:not(.eyebrow),
.portfolio-section .section-heading p:not(.eyebrow),
.gallery-section .section-heading p:not(.eyebrow),
.intro-text p,
.berlin p,
.contact-copy p {
  color: #5b514a;
}

.portfolio-card,
.package-card,
.note-grid article,
.contact-form,
.steps li,
.trust-band div {
  border-color: rgba(42, 37, 34, 0.12);
  background: rgba(255, 255, 255, 0.38);
  box-shadow: none;
}

.trust-band,
.site-footer {
  background: #e2d8cc;
  color: #211d1b;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-image {
    width: min(680px, 100%);
    height: min(58vh, 540px);
    justify-self: start;
  }
}

@media (max-width: 780px) {
  .site-header {
    background: rgba(242, 237, 230, 0.98);
  }

  .stacked-logo {
    height: 72px;
  }

  .hero {
    padding-top: 96px;
  }

  #hero-title {
    font-size: clamp(42px, 11vw, 62px);
    line-height: 0.98;
  }
}
/* Calendar editorial direction - true EOF */
:root {
  --paper: #f7f2ea;
  --paper-deep: #ebe2d6;
  --ink: #28231f;
  --soft-ink: #5f554d;
  --line: rgba(40, 35, 31, 0.16);
  --accent: #7f6d57;
  --accent-soft: #b6a58e;
  --cream: #f7f2ea;
  --champagne: #28231f;
  --gold: #7f6d57;
}

body {
  color: var(--ink);
  background:
    linear-gradient(rgba(40, 35, 31, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 35, 31, 0.022) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 72px, 72px 100%;
}

.site-header {
  min-height: 132px;
  padding: 12px clamp(24px, 5vw, 76px);
  border-bottom: 1px solid rgba(40, 35, 31, 0.14);
  background: rgba(247, 242, 234, 0.9);
  box-shadow: none;
}

.stacked-logo {
  height: 112px;
  filter: none;
}

.main-nav {
  color: rgba(40, 35, 31, 0.66);
}

.header-cta,
.button.primary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.button.ghost {
  border-color: rgba(40, 35, 31, 0.22);
  color: var(--ink);
  background: rgba(247, 242, 234, 0.32);
}

.hero {
  position: relative;
  grid-template-columns: minmax(430px, 0.92fr) minmax(420px, 0.78fr);
  gap: clamp(48px, 8vw, 130px);
  min-height: 100vh;
  padding: clamp(168px, 15vw, 220px) clamp(28px, 5vw, 82px) clamp(58px, 7vw, 94px);
  background:
    linear-gradient(90deg, rgba(247, 242, 234, 0.96), rgba(235, 226, 214, 0.9));
}

.hero::after {
  content: "PRIVATE BOUDOIR CALENDAR";
  position: absolute;
  right: clamp(24px, 5vw, 82px);
  bottom: 28px;
  color: rgba(40, 35, 31, 0.28);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.hero-calendar {
  position: relative;
  z-index: 2;
  align-self: center;
  justify-self: end;
  width: min(650px, 45vw);
  margin: 0;
  padding: clamp(16px, 2.2vw, 26px) clamp(16px, 2.2vw, 26px) 22px;
  border: 1px solid rgba(40, 35, 31, 0.14);
  background: #fbf8f2;
  box-shadow: 0 34px 90px rgba(40, 35, 31, 0.12);
}

.hero-calendar::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  width: 54px;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(40, 35, 31, 0.24);
}

.hero-image {
  display: block;
  width: 100%;
  height: min(58vh, 560px);
  min-height: 440px;
  object-fit: cover;
  object-position: center center;
  border: 0;
  box-shadow: none;
  filter: grayscale(1) contrast(1.04) brightness(0.96);
}

.hero-calendar figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  color: var(--soft-ink);
  border-top: 1px solid rgba(40, 35, 31, 0.12);
  margin-top: 18px;
}

.hero-calendar figcaption span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 0.8;
  color: var(--ink);
}

.hero-calendar figcaption strong {
  color: rgba(40, 35, 31, 0.62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-content {
  max-width: 660px;
  align-self: center;
}

.calendar-number {
  margin: 0 0 10px;
  color: rgba(127, 109, 87, 0.22);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(96px, 14vw, 190px);
  font-weight: 500;
  line-height: 0.72;
}

.eyebrow {
  color: var(--accent);
}

#hero-title {
  color: var(--ink);
  font-size: clamp(50px, 6vw, 88px);
}

.hero-copy {
  color: var(--soft-ink);
}

.hero-content .hero-panel {
  width: min(660px, 100%);
  border-color: rgba(40, 35, 31, 0.14);
  background: rgba(251, 248, 242, 0.62);
}

.hero-content .hero-panel span {
  color: rgba(40, 35, 31, 0.62);
  background: transparent;
}

.intro,
.packages,
.process,
.berlin,
.legal-note,
.contact-section,
.portfolio-section,
.gallery-section,
.trust-band,
.site-footer {
  background:
    linear-gradient(rgba(40, 35, 31, 0.024) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 72px;
}

.section,
.gallery-section,
.contact-section {
  border-top: 1px solid rgba(40, 35, 31, 0.12);
}

.section-heading .eyebrow::after,
.intro-copy .eyebrow::after {
  background: rgba(127, 109, 87, 0.48);
}

.portfolio-card,
.gallery-item,
.package-card,
.note-grid article,
.contact-form,
.steps li {
  background: rgba(251, 248, 242, 0.68);
  border: 1px solid rgba(40, 35, 31, 0.14);
}

.portfolio-card span,
.steps span {
  color: rgba(127, 109, 87, 0.72);
}

@media (max-width: 1100px) {
  .site-header {
    min-height: 112px;
  }

  .stacked-logo {
    height: 92px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 138px;
  }

  .hero-calendar {
    width: min(680px, 100%);
    justify-self: start;
  }
}

@media (max-width: 780px) {
  .stacked-logo {
    height: 84px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-image {
    height: min(54vh, 480px);
    min-height: 340px;
  }

  .hero-calendar figcaption {
    display: grid;
  }

  .calendar-number {
    font-size: clamp(72px, 22vw, 112px);
  }
}
/* Portfolio card readable typography - true EOF */
.portfolio-card::after {
  background:
    linear-gradient(180deg, rgba(5, 7, 11, 0.02) 0%, rgba(5, 7, 11, 0.26) 38%, rgba(5, 7, 11, 0.88) 100%);
}

.portfolio-card h3 {
  color: rgba(250, 246, 238, 0.92);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.48);
}

.portfolio-card p {
  color: rgba(250, 246, 238, 0.86);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.42);
}

.portfolio-card span {
  color: rgba(214, 201, 179, 0.76);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.38);
}

.portfolio-card img {
  filter: grayscale(0.1) saturate(0.68) contrast(1.08) brightness(0.88);
}

.portfolio-card:hover img {
  filter: grayscale(0.05) saturate(0.78) contrast(1.1) brightness(0.94);
}
/* Horizontal header logo - true EOF */
.header-logo {
  display: block;
  width: clamp(300px, 31vw, 430px);
  height: auto;
  filter: none;
}

.site-header {
  grid-template-columns: auto minmax(360px, 1fr) auto;
  min-height: 126px;
}

.stacked-brand {
  width: auto;
}

.site-header .stacked-logo {
  display: none;
}

@media (max-width: 1180px) {
  .header-logo {
    width: clamp(270px, 36vw, 360px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    row-gap: 10px;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 780px) {
  .header-logo {
    width: min(330px, 82vw);
  }

  .site-header {
    min-height: auto;
  }
}
/* Header logo clipping fix - true EOF */
.header-logo {
  width: clamp(380px, 38vw, 540px);
}

.site-header {
  grid-template-columns: minmax(380px, auto) minmax(300px, 1fr) auto;
}

@media (max-width: 1180px) {
  .header-logo {
    width: min(500px, 88vw);
  }
}

@media (max-width: 780px) {
  .header-logo {
    width: min(420px, 92vw);
  }
}
/* Featured package readability - true EOF */
.package-card.featured {
  background: #10151c;
  color: #f5efe6;
  border-color: rgba(127, 109, 87, 0.42);
  box-shadow: 0 28px 74px rgba(40, 35, 31, 0.16);
}

.package-card.featured .package-kicker {
  color: rgba(214, 201, 179, 0.82);
}

.package-card.featured h3 {
  color: #fbf6ee;
}

.package-card.featured .price {
  color: #d6c9b3;
}

.package-card.featured li {
  color: rgba(245, 239, 230, 0.86);
  border-color: rgba(245, 239, 230, 0.16);
}

.package-card.featured a {
  border-color: rgba(214, 201, 179, 0.56);
  color: #fbf6ee;
  background: rgba(251, 246, 238, 0.04);
}

.package-card.featured a:hover {
  background: #fbf6ee;
  color: #10151c;
}
/* Process step readability - true EOF */
.steps li {
  background: rgba(251, 248, 242, 0.78);
}

.steps strong {
  color: #28231f;
}

.steps p {
  color: #5f554d;
}

.steps span {
  color: rgba(127, 109, 87, 0.82);
}
/* Six-sheet calendar gallery - true EOF */
.gallery-section {
  padding-top: clamp(96px, 11vw, 150px);
}

.calendar-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 46px);
}

.calendar-page {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(210px, 0.72fr);
  gap: clamp(18px, 2.8vw, 34px);
  min-height: 520px;
  padding: clamp(18px, 2vw, 28px);
  border: 1px solid rgba(40, 35, 31, 0.14);
  background: #fbf8f2;
  box-shadow: 0 28px 80px rgba(40, 35, 31, 0.08);
}

.calendar-page figure {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  min-width: 0;
  margin: 0;
  background: #111;
}

.calendar-page figure::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  z-index: 2;
  width: 44px;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(251, 248, 242, 0.36);
}

.calendar-page img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  filter: grayscale(0.14) saturate(0.72) contrast(1.06) brightness(0.9);
}

.calendar-page figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 0;
  color: #28231f;
  background: #fbf8f2;
  border-top: 1px solid rgba(40, 35, 31, 0.12);
  margin-top: 18px;
}

.calendar-page figcaption span {
  color: rgba(127, 109, 87, 0.66);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(46px, 5vw, 78px);
  line-height: 0.82;
}

.calendar-page figcaption strong {
  color: rgba(40, 35, 31, 0.66);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-align: right;
  text-transform: uppercase;
}

.calendar-page > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: end;
  padding-bottom: 6px;
}

.gallery-kicker {
  margin: 0 0 18px;
  color: #7f6d57;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.calendar-page h3 {
  margin: 0;
  color: #28231f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 4.2vw, 66px);
  font-weight: 600;
  line-height: 0.92;
}

.calendar-page p:not(.gallery-kicker) {
  margin: 24px 0 0;
  color: #5f554d;
  font-size: 16px;
  line-height: 1.7;
}

.calendar-page a {
  align-self: start;
  margin-top: 34px;
  padding-bottom: 6px;
  color: #28231f;
  border-bottom: 1px solid rgba(40, 35, 31, 0.34);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.calendar-page:nth-child(3),
.calendar-page:nth-child(4) {
  transform: translateY(34px);
}

.calendar-page:nth-child(even) {
  background: #f4eee6;
}

.calendar-page:nth-child(even) figcaption {
  background: #f4eee6;
}

@media (max-width: 1200px) {
  .calendar-gallery {
    grid-template-columns: 1fr;
  }

  .calendar-page:nth-child(3),
  .calendar-page:nth-child(4) {
    transform: none;
  }
}

@media (max-width: 760px) {
  .calendar-page {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .calendar-page img {
    min-height: 360px;
  }

  .calendar-page figcaption {
    display: grid;
  }

  .calendar-page figcaption strong {
    text-align: left;
  }
}

/* Start page readability sweep - true EOF */
.section-heading p:not(.eyebrow),
.intro-text p,
.berlin p,
.legal-note p,
.contact-copy p,
.trust-band span,
.package-card:not(.featured) li,
.package-card:not(.featured) p:not(.package-kicker):not(.price) {
  color: #5f554d;
}

.package-card:not(.featured) h3,
.note-grid h3,
.contact-copy h2,
.berlin h2,
.legal-note h2,
.intro h2,
.packages h2,
.process h2,
.gallery-section h2,
.portfolio-section h2 {
  color: #28231f;
}

.package-card:not(.featured) .price {
  color: #7f6d57;
}

.contact-form label,
.contact-form input,
.contact-form select,
.contact-form textarea,
.site-footer a,
.site-footer {
  color: #28231f;
}
/* Header logo size reduction - true EOF */
.header-logo {
  width: clamp(300px, 30vw, 420px);
}

.site-header {
  grid-template-columns: minmax(300px, auto) minmax(300px, 1fr) auto;
  min-height: 108px;
}

@media (max-width: 1180px) {
  .header-logo {
    width: min(400px, 82vw);
  }
}

@media (max-width: 780px) {
  .header-logo {
    width: min(330px, 88vw);
  }
}
/* Unified portfolio/gallery section - true EOF */
.section-anchor {
  position: relative;
  top: -130px;
  display: block;
  height: 0;
  overflow: hidden;
}

.portfolio-section .calendar-gallery {
  margin-top: 18px;
}

.portfolio-section .section-heading {
  margin-bottom: clamp(42px, 6vw, 74px);
}
/* Calendar headline wrapping - true EOF */
.calendar-page h3 {
  max-width: 100%;
  overflow-wrap: anywhere;
  hyphens: auto;
}
/* Calendar card compact type - true EOF */
.calendar-page h3 {
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: 0.98;
}

.calendar-page p:not(.gallery-kicker) {
  font-size: 15px;
  line-height: 1.65;
}

.calendar-page {
  grid-template-columns: minmax(230px, 0.95fr) minmax(230px, 0.82fr);
}

.calendar-page > div {
  padding-right: 4px;
}

@media (max-width: 760px) {
  .calendar-page h3 {
    font-size: clamp(34px, 10vw, 48px);
  }
}

/* Subpages and calendar navigation - true EOF */
.main-nav {
  gap: clamp(16px, 2.2vw, 34px);
}

.calendar-link-card {
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.calendar-link-card:hover {
  border-color: rgba(127, 109, 87, 0.34);
  box-shadow: 0 34px 94px rgba(40, 35, 31, 0.13);
}

.calendar-link-card .tile-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0;
  border: 0;
  font-size: 0;
}

.calendar-link-card > *:not(.tile-link) {
  position: relative;
  z-index: 2;
}

.calendar-link-card div > a {
  position: relative;
  z-index: 3;
}

.month-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
  border-top: 1px solid rgba(40, 35, 31, 0.12);
  border-bottom: 1px solid rgba(40, 35, 31, 0.12);
  background:
    linear-gradient(90deg, rgba(251, 248, 242, 0.9), rgba(244, 238, 230, 0.72)),
    repeating-linear-gradient(0deg, rgba(40, 35, 31, 0.055) 0 1px, transparent 1px 56px);
}

.month-feature figure,
.month-poster {
  margin: 0;
  background: #fbf8f2;
}

.month-feature img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
}

.month-feature figcaption,
.month-poster figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  color: #7f6d57;
  border-top: 1px solid rgba(40, 35, 31, 0.12);
  margin-top: 18px;
}

.month-feature figcaption span,
.month-poster figcaption span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.84;
}

.month-feature figcaption strong,
.month-poster figcaption strong {
  align-self: end;
  color: rgba(40, 35, 31, 0.68);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-align: right;
  text-transform: uppercase;
}

.month-copy h2,
.month-note h2,
.gallery-cta h2 {
  margin: 0;
  color: #28231f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(46px, 6vw, 84px);
  font-weight: 600;
  line-height: 0.92;
}

.month-copy p:not(.eyebrow),
.month-note p,
.gallery-cta p,
.sub-hero p,
.gallery-detail-copy p {
  color: #5f554d;
  font-size: 17px;
  line-height: 1.75;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  padding-bottom: 6px;
  color: #28231f;
  border-bottom: 1px solid rgba(40, 35, 31, 0.34);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.subpage main {
  padding-top: 0;
}

.sub-hero {
  display: grid;
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(86px, 10vw, 150px) clamp(22px, 4vw, 64px) clamp(54px, 7vw, 100px);
  border-bottom: 1px solid rgba(40, 35, 31, 0.12);
  background:
    linear-gradient(180deg, rgba(251, 248, 242, 0.96), rgba(244, 238, 230, 0.86)),
    repeating-linear-gradient(0deg, rgba(40, 35, 31, 0.052) 0 1px, transparent 1px 56px);
}

.sub-hero h1 {
  max-width: 940px;
  margin: 0;
  color: #28231f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(58px, 9vw, 132px);
  font-weight: 600;
  line-height: 0.9;
}

.sub-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px 0 0;
}

.gallery-detail {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(520px, 1fr);
  gap: clamp(28px, 5vw, 80px);
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 112px) clamp(22px, 4vw, 64px);
  border-bottom: 1px solid rgba(40, 35, 31, 0.12);
}

.gallery-detail.alt {
  background: rgba(244, 238, 230, 0.54);
}

.gallery-detail-copy {
  align-self: center;
}

.gallery-detail h2 {
  margin: 0;
  color: #28231f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 5.4vw, 82px);
  font-weight: 600;
  line-height: 0.94;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: clamp(10px, 1.4vw, 18px);
}

.detail-grid img {
  display: block;
  width: 100%;
  height: clamp(310px, 34vw, 560px);
  object-fit: cover;
  background: #111;
  filter: saturate(0.78) contrast(1.04);
}

.detail-grid img:nth-child(even) {
  height: clamp(260px, 28vw, 470px);
}

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

.detail-grid.expanded img:nth-child(1),
.detail-grid.expanded img:nth-child(6) {
  grid-row: span 2;
  height: clamp(520px, 48vw, 760px);
}

.detail-grid.expanded img:nth-child(4),
.detail-grid.expanded img:nth-child(7) {
  height: clamp(250px, 25vw, 420px);
}

.gallery-cta {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(70px, 9vw, 132px) clamp(22px, 4vw, 64px);
  text-align: center;
}

.gallery-cta .button {
  margin-top: 24px;
}

.month-editorial {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(360px, 0.72fr);
  min-height: calc(100vh - 108px);
  gap: clamp(34px, 7vw, 110px);
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 92px) clamp(22px, 4vw, 64px);
  background:
    linear-gradient(90deg, rgba(251, 248, 242, 0.9), rgba(244, 238, 230, 0.52)),
    repeating-linear-gradient(0deg, rgba(40, 35, 31, 0.055) 0 1px, transparent 1px 56px);
}

.month-poster img {
  display: block;
  width: 100%;
  max-height: 74vh;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.month-editorial-copy h1 {
  margin: 0;
  color: #28231f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(54px, 7vw, 112px);
  font-weight: 600;
  line-height: 0.9;
}

.month-editorial-copy p:not(.eyebrow) {
  color: #5f554d;
  font-size: 18px;
  line-height: 1.75;
}

.month-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button.ghost.light {
  color: #28231f;
  border-color: rgba(40, 35, 31, 0.24);
}

.month-note {
  max-width: 960px;
  text-align: center;
}

.month-archive-intro {
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.month-archive-intro h2 {
  margin: 0;
  color: #28231f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(50px, 7vw, 104px);
  font-weight: 600;
  line-height: 0.92;
}

.month-archive-intro p:not(.eyebrow) {
  color: #5f554d;
  font-size: 17px;
  line-height: 1.75;
}

.year-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.year-nav a {
  padding: 10px 14px;
  color: #28231f;
  border: 1px solid rgba(40, 35, 31, 0.16);
  background: rgba(251, 248, 242, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.month-year {
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(58px, 8vw, 118px) clamp(22px, 4vw, 64px);
  border-top: 1px solid rgba(40, 35, 31, 0.12);
}

.month-year:nth-child(even) {
  background: rgba(244, 238, 230, 0.5);
}

.month-year-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: clamp(18px, 4vw, 70px);
  margin-bottom: clamp(26px, 4vw, 48px);
}

.month-year-heading h2 {
  margin: 0;
  color: #28231f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(72px, 11vw, 170px);
  font-weight: 600;
  line-height: 0.78;
}

.month-year-heading p:not(.eyebrow) {
  color: #5f554d;
  font-size: 16px;
  line-height: 1.7;
}

.month-archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: clamp(12px, 1.7vw, 22px);
}

.month-archive-card {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(40, 35, 31, 0.12);
  background: rgba(251, 248, 242, 0.76);
}

.month-archive-card:nth-child(8n + 1),
.month-archive-card:nth-child(8n + 6) {
  grid-column: span 2;
  grid-row: span 2;
}

.month-archive-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #111;
  filter: saturate(0.78) contrast(1.04);
}

.month-archive-card:nth-child(8n + 1) img,
.month-archive-card:nth-child(8n + 6) img {
  aspect-ratio: 4 / 5.35;
}

.month-archive-card figcaption {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #7f6d57;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.month-archive-card figcaption strong {
  color: #28231f;
}

.month-archive-grid.selected-months {
  grid-template-columns: repeat(auto-fit, minmax(230px, 270px));
  justify-content: center;
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.month-archive-grid.selected-months .month-archive-card {
  padding: 12px;
}

.month-archive-grid.selected-months .month-archive-card:nth-child(8n + 1),
.month-archive-grid.selected-months .month-archive-card:nth-child(8n + 6) {
  grid-column: auto;
  grid-row: auto;
}

.month-archive-grid.selected-months .month-archive-card img,
.month-archive-grid.selected-months .month-archive-card:nth-child(8n + 1) img,
.month-archive-grid.selected-months .month-archive-card:nth-child(8n + 6) img {
  aspect-ratio: 4 / 5;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .month-feature,
  .gallery-detail,
  .month-editorial {
    grid-template-columns: 1fr;
  }

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

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

  .detail-grid.expanded img:nth-child(1),
  .detail-grid.expanded img:nth-child(6) {
    grid-row: auto;
    height: clamp(310px, 54vw, 560px);
  }

  .month-year-heading {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .month-copy h2,
  .month-note h2,
  .gallery-cta h2,
  .gallery-detail h2,
  .sub-hero h1,
  .month-editorial-copy h1 {
    font-size: clamp(42px, 14vw, 62px);
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-grid img,
  .detail-grid img:nth-child(even),
  .detail-grid.expanded img:nth-child(1),
  .detail-grid.expanded img:nth-child(6),
  .detail-grid.expanded img:nth-child(4),
  .detail-grid.expanded img:nth-child(7) {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .month-archive-card:nth-child(8n + 1),
  .month-archive-card:nth-child(8n + 6) {
    grid-column: auto;
    grid-row: auto;
  }

  .month-actions,
  .hero-actions {
    display: grid;
  }
}

/* Original material archive - true EOF */
.archive-counts {
  color: #7f6d57 !important;
  font-size: 12px !important;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.archive-section {
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(54px, 7vw, 110px) clamp(22px, 4vw, 64px);
  border-bottom: 1px solid rgba(40, 35, 31, 0.12);
}

.archive-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.archive-page-card {
  display: grid;
  gap: 10px;
  min-height: 118px;
  padding: 22px;
  color: #28231f;
  border: 1px solid rgba(40, 35, 31, 0.14);
  background: rgba(251, 248, 242, 0.74);
}

.archive-page-card strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
}

.archive-page-card span {
  color: #6f6258;
  font-size: 12px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.archive-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.archive-image-card {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(40, 35, 31, 0.12);
  background: rgba(251, 248, 242, 0.78);
}

.archive-image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #111;
}

.archive-image-card figcaption {
  color: #6f6258;
  font-size: 10px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {
  .archive-page-grid {
    grid-template-columns: 1fr;
  }
}

/* Hero trust panel spacing fix - true EOF */
.hero-content .hero-panel,
.hero-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  max-width: 860px;
  margin-top: clamp(26px, 3vw, 42px);
  overflow: hidden;
}

.hero-content .hero-panel span,
.hero-panel span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 18px 14px;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.25;
}

@media (max-width: 980px) {
  .hero-content .hero-panel,
  .hero-panel {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .hero-content .hero-panel span,
  .hero-panel span {
    justify-content: flex-start;
    text-align: left;
  }
}

/* Calendar card text containment - true EOF */
.calendar-page {
  box-sizing: border-box;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 0.84fr);
  align-items: stretch;
  gap: clamp(18px, 2.4vw, 30px);
  overflow: hidden;
}

.calendar-page figure,
.calendar-page > div {
  min-width: 0;
  max-width: 100%;
}

.calendar-page > div {
  box-sizing: border-box;
  justify-content: center;
  overflow: hidden;
  padding: clamp(8px, 1.4vw, 18px) 0;
}

.calendar-page h3 {
  max-width: 100%;
  color: #28231f;
  font-size: clamp(28px, 2.7vw, 44px);
  line-height: 1.03;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

.calendar-page p:not(.gallery-kicker) {
  max-width: 34ch;
  margin-top: 20px;
  color: #5f554d;
  font-size: 14px;
  line-height: 1.62;
}

.calendar-page a:not(.tile-link) {
  max-width: 100%;
  white-space: normal;
  line-height: 1.35;
}

@media (max-width: 1200px) {
  .calendar-page h3 {
    font-size: clamp(34px, 6vw, 54px);
  }

  .calendar-page p:not(.gallery-kicker) {
    max-width: 44ch;
  }
}

@media (max-width: 760px) {
  .calendar-page {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .calendar-page h3 {
    font-size: clamp(34px, 11vw, 48px);
  }
}

/* Two-line header and studio page - true EOF */
.site-header {
  grid-template-columns: minmax(280px, 1fr) auto;
  grid-template-areas:
    "brand cta"
    "nav nav";
  row-gap: 18px;
  min-height: 132px;
  padding-top: 18px;
  padding-bottom: 16px;
}

.site-header .brand {
  grid-area: brand;
}

.site-header .main-nav {
  grid-area: nav;
  justify-content: center;
  width: 100%;
  padding-top: 14px;
  border-top: 1px solid rgba(40, 35, 31, 0.12);
}

.site-header .header-cta {
  grid-area: cta;
  align-self: center;
}

.site-header .header-logo {
  width: clamp(280px, 28vw, 390px);
}

.main-nav a {
  white-space: nowrap;
}

.hero-content .hero-panel span,
.hero-panel span {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}

.studio-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(36px, 7vw, 110px);
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(58px, 8vw, 122px) clamp(22px, 4vw, 64px);
  background:
    linear-gradient(90deg, rgba(251, 248, 242, 0.96), rgba(244, 238, 230, 0.62)),
    repeating-linear-gradient(0deg, rgba(40, 35, 31, 0.052) 0 1px, transparent 1px 56px);
}

.studio-hero h1,
.studio-intro h2,
.studio-gallery-section h2 {
  margin: 0;
  color: #28231f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(52px, 7vw, 112px);
  font-weight: 600;
  line-height: 0.9;
}

.studio-hero p:not(.eyebrow),
.studio-intro p,
.studio-facts p {
  color: #5f554d;
  font-size: 17px;
  line-height: 1.75;
}

.studio-hero-image {
  margin: 0;
}

.studio-hero-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
}

.studio-hero-image figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(40, 35, 31, 0.14);
  color: #7f6d57;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.studio-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(320px, 0.7fr);
  gap: clamp(26px, 6vw, 90px);
  border-top: 1px solid rgba(40, 35, 31, 0.12);
  border-bottom: 1px solid rgba(40, 35, 31, 0.12);
}

.studio-exterior {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(420px, 0.82fr);
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
  border-bottom: 1px solid rgba(40, 35, 31, 0.12);
}

.studio-exterior h2 {
  margin: 0;
  color: #28231f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 6.4vw, 96px);
  font-weight: 600;
  line-height: 0.92;
}

.studio-exterior p:not(.eyebrow) {
  color: #5f554d;
  font-size: 17px;
  line-height: 1.75;
}

.studio-exterior-image {
  margin: 0;
  padding: clamp(10px, 1.4vw, 16px);
  border: 1px solid rgba(40, 35, 31, 0.14);
  background: rgba(251, 248, 242, 0.74);
}

.studio-exterior-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.studio-exterior-image figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(40, 35, 31, 0.12);
  color: #7f6d57;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.studio-gallery-section {
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(58px, 8vw, 116px) clamp(22px, 4vw, 64px);
}

.studio-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.7vw, 24px);
  margin-top: clamp(32px, 5vw, 66px);
}

.studio-gallery-grid figure {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(40, 35, 31, 0.12);
  background: rgba(251, 248, 242, 0.78);
}

.studio-gallery-grid figure:nth-child(2),
.studio-gallery-grid figure:nth-child(5) {
  transform: translateY(28px);
}

.studio-gallery-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #111;
}

.studio-gallery-grid figcaption {
  color: #7f6d57;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.studio-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(44px, 6vw, 90px) clamp(22px, 4vw, 64px);
  border-top: 1px solid rgba(40, 35, 31, 0.12);
  border-bottom: 1px solid rgba(40, 35, 31, 0.12);
}

.studio-facts article {
  padding: clamp(24px, 3vw, 42px);
  border-right: 1px solid rgba(40, 35, 31, 0.12);
}

.studio-facts article:last-child {
  border-right: 0;
}

.studio-facts span {
  color: rgba(127, 109, 87, 0.72);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 48px;
}

.studio-facts h3 {
  margin: 16px 0 0;
  color: #28231f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav"
      "cta";
  }

  .site-header .brand,
  .site-header .header-cta {
    justify-self: center;
  }

  .studio-hero,
  .studio-intro,
  .studio-exterior {
    grid-template-columns: 1fr;
  }

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

  .studio-gallery-grid figure:nth-child(2),
  .studio-gallery-grid figure:nth-child(5) {
    transform: none;
  }

  .studio-facts {
    grid-template-columns: 1fr;
  }

  .studio-facts article {
    border-right: 0;
    border-bottom: 1px solid rgba(40, 35, 31, 0.12);
  }

  .studio-facts article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .site-header .main-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .studio-gallery-grid {
    grid-template-columns: 1fr;
  }

  .studio-hero h1,
  .studio-intro h2,
  .studio-exterior h2,
  .studio-gallery-section h2 {
    font-size: clamp(42px, 14vw, 64px);
  }
}

/* Month image lightbox - true EOF */
.month-year-heading {
  grid-template-columns: minmax(140px, 0.28fr) minmax(260px, 0.72fr);
  align-items: center;
}

.month-lightbox-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.month-lightbox-trigger img {
  display: block;
  width: 100%;
}

.image-lightbox {
  width: min(92vw, 1180px);
  max-width: none;
  max-height: 92vh;
  padding: clamp(14px, 2vw, 24px);
  border: 1px solid rgba(244, 238, 230, 0.2);
  background: #0d1015;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.48);
}

.image-lightbox::backdrop {
  background: rgba(10, 10, 12, 0.82);
  backdrop-filter: blur(8px);
}

.image-lightbox img {
  display: block;
  max-width: 100%;
  max-height: calc(92vh - 82px);
  margin: 0 auto;
  object-fit: contain;
}

.lightbox-close {
  display: block;
  margin: 0 0 14px auto;
  padding: 10px 14px;
  color: #f7f1e8;
  border: 1px solid rgba(247, 241, 232, 0.24);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Global header spacing normalization - true EOF */
.site-header {
  position: relative;
  min-height: auto;
  padding: 14px clamp(22px, 4vw, 52px) 12px;
  row-gap: 12px;
}

.site-header .main-nav {
  padding-top: 12px;
}

.site-header .header-logo {
  width: clamp(260px, 26vw, 360px);
}

.hero {
  min-height: auto;
  padding-top: clamp(44px, 5vw, 72px);
  padding-bottom: clamp(48px, 6vw, 82px);
}

.subpage main {
  padding-top: 0;
}

.sub-hero,
.studio-hero,
.month-editorial {
  padding-top: clamp(42px, 5.2vw, 78px);
}

.studio-hero {
  padding-bottom: clamp(54px, 7vw, 104px);
}

.month-editorial {
  min-height: auto;
  padding-bottom: clamp(54px, 7vw, 104px);
}

@media (max-width: 1180px) {
  .site-header {
    row-gap: 10px;
  }

  .site-header .main-nav {
    padding-top: 10px;
  }

  .hero,
  .sub-hero,
  .studio-hero,
  .month-editorial {
    padding-top: clamp(34px, 7vw, 58px);
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-top: 12px;
    padding-bottom: 10px;
  }

  .site-header .header-logo {
    width: min(300px, 86vw);
  }

  .hero,
  .sub-hero,
  .studio-hero,
  .month-editorial {
    padding-top: 28px;
  }
}

/* Month hero headline containment - true EOF */
.month-editorial {
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 0.86fr);
  overflow: hidden;
}

.month-editorial-copy {
  min-width: 0;
  max-width: 100%;
}

.month-editorial-copy h1 {
  max-width: 10.5ch;
  font-size: clamp(54px, 6vw, 96px);
  line-height: 0.94;
  overflow-wrap: normal;
}

.month-editorial-copy p:not(.eyebrow) {
  max-width: 40ch;
}

@media (max-width: 1180px) {
  .month-editorial {
    grid-template-columns: 1fr;
  }

  .month-editorial-copy h1 {
    max-width: 12ch;
    font-size: clamp(50px, 10vw, 92px);
  }
}

@media (max-width: 760px) {
  .month-editorial-copy h1 {
    max-width: 100%;
    font-size: clamp(42px, 13vw, 62px);
    line-height: 0.98;
  }
}

/* Lightbox keeps calendar frame - true EOF */
.image-lightbox {
  width: min(94vw, 920px);
  padding: clamp(16px, 2.2vw, 28px);
  background:
    linear-gradient(180deg, rgba(13, 16, 21, 0.98), rgba(13, 16, 21, 0.94));
}

.lightbox-card-slot {
  display: grid;
  place-items: center;
}

.lightbox-card-slot .month-archive-card {
  width: min(78vw, 620px);
  max-height: calc(92vh - 92px);
  overflow: auto;
  padding: clamp(16px, 2.4vw, 28px);
  border-color: rgba(244, 238, 230, 0.42);
  background:
    linear-gradient(180deg, #fbf8f2, #f4eee6),
    repeating-linear-gradient(0deg, rgba(40, 35, 31, 0.055) 0 1px, transparent 1px 56px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.lightbox-card-slot .month-archive-card img {
  width: 100%;
  max-height: calc(92vh - 190px);
  object-fit: contain;
  background: #111;
}

.lightbox-card-slot .month-archive-card figcaption {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(40, 35, 31, 0.14);
  font-size: 12px;
}

@media (max-width: 760px) {
  .lightbox-card-slot .month-archive-card {
    width: 86vw;
    padding: 14px;
  }

  .lightbox-card-slot .month-archive-card img {
    max-height: calc(92vh - 170px);
  }
}

/* Lightbox no-scroll calendar fit - true EOF */
.image-lightbox {
  overflow: hidden;
  width: min(94vw, 980px);
  max-height: 94vh;
}

.lightbox-card-slot .month-archive-card {
  width: auto;
  max-width: min(82vw, 720px);
  max-height: none;
  overflow: visible;
  padding: clamp(12px, 1.7vw, 20px);
}

.lightbox-card-slot .month-archive-card img {
  width: auto;
  max-width: min(74vw, 620px);
  max-height: calc(94vh - 168px);
  margin: 0 auto;
  object-fit: contain;
}

.lightbox-card-slot .month-archive-card figcaption {
  margin-top: 14px;
  padding-top: 12px;
}

@media (max-width: 760px) {
  .image-lightbox {
    width: 96vw;
    padding: 12px;
  }

  .lightbox-card-slot .month-archive-card {
    max-width: 88vw;
  }

  .lightbox-card-slot .month-archive-card img {
    max-width: 82vw;
    max-height: calc(94vh - 150px);
  }
}

/* Lightbox final fit: calendar frame without scrollbars */
.image-lightbox {
  box-sizing: border-box;
  width: min(96vw, 1040px);
  max-height: calc(100vh - 36px);
  padding: clamp(18px, 2.2vw, 34px);
  overflow: hidden;
}

.image-lightbox:not([open]) {
  display: none;
}

.image-lightbox[open] {
  display: grid;
  place-items: center;
}

.image-lightbox .lightbox-close {
  position: absolute;
  top: clamp(14px, 2vw, 24px);
  right: clamp(14px, 2vw, 24px);
  z-index: 2;
  margin: 0;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: clamp(44px, 5vw, 62px);
  height: clamp(44px, 5vw, 62px);
  padding: 0 0 5px;
  color: #f7f1e8;
  border: 1px solid rgba(247, 241, 232, 0.24);
  background: rgba(13, 16, 21, 0.58);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
  transform: translateY(-50%);
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  color: #28231f;
  border-color: rgba(247, 241, 232, 0.84);
  background: rgba(247, 241, 232, 0.9);
  outline: none;
}

.lightbox-prev {
  left: clamp(14px, 2.4vw, 30px);
}

.lightbox-next {
  right: clamp(14px, 2.4vw, 30px);
}

.lightbox-card-slot {
  width: 100%;
  max-height: calc(100vh - 72px);
  overflow: hidden;
}

.lightbox-card-slot .month-archive-card {
  width: fit-content;
  max-width: min(78vw, 700px);
  max-height: none;
  margin: 0 auto;
  overflow: hidden;
  padding: clamp(10px, 1.45vw, 18px);
}

.lightbox-card-slot .month-archive-card img {
  width: auto;
  height: auto;
  aspect-ratio: auto;
  max-width: min(70vw, 600px);
  max-height: calc(100vh - 190px);
  object-fit: contain;
}

@media (max-width: 760px) {
  .image-lightbox {
    width: 96vw;
    max-height: calc(100vh - 24px);
    padding: 12px;
  }

  .image-lightbox .lightbox-close {
    top: 10px;
    right: 10px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 10px;
    width: 44px;
    height: 44px;
    font-size: 38px;
    transform: none;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  .lightbox-card-slot {
    max-height: calc(100vh - 48px);
  }

  .lightbox-card-slot .month-archive-card {
    max-width: 86vw;
    padding: 10px;
  }

  .lightbox-card-slot .month-archive-card img {
    max-width: 80vw;
    max-height: calc(100vh - 156px);
  }
}

/* Legal pages and contact readability */
.contact-copy address {
  color: #5d544d;
}

.contact-copy address,
.contact-copy address a {
  opacity: 1;
}

.contact-copy address a {
  color: #28231f;
  border-bottom-color: rgba(40, 35, 31, 0.32);
}

.legal-page {
  color: #28231f;
  background:
    linear-gradient(90deg, rgba(40, 35, 31, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(40, 35, 31, 0.035) 1px, transparent 1px),
    #f4eee6;
  background-size: 64px 64px;
}

.legal-main {
  padding: clamp(96px, 12vw, 150px) clamp(20px, 5vw, 72px) clamp(72px, 10vw, 120px);
}

.legal-hero {
  max-width: 980px;
  margin: 0 auto clamp(36px, 6vw, 72px);
}

.legal-hero h1 {
  max-width: 10ch;
  margin: 0;
  color: #28231f;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(72px, 12vw, 168px);
  font-weight: 600;
  line-height: 0.82;
}

.legal-hero p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 24px;
  color: #5d544d;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

.legal-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1120px;
  margin: 0 auto;
  border-top: 1px solid rgba(40, 35, 31, 0.16);
  border-left: 1px solid rgba(40, 35, 31, 0.16);
}

.legal-content article {
  min-height: 220px;
  padding: clamp(24px, 4vw, 48px);
  border-right: 1px solid rgba(40, 35, 31, 0.16);
  border-bottom: 1px solid rgba(40, 35, 31, 0.16);
  background: rgba(251, 248, 242, 0.62);
}

.legal-content h2 {
  margin: 0 0 18px;
  color: #28231f;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.legal-content p {
  margin: 0 0 14px;
  color: #5d544d;
  font-size: 16px;
  line-height: 1.72;
}

.legal-content a {
  color: #28231f;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(127, 109, 87, 0.46);
  text-underline-offset: 4px;
}

@media (max-width: 760px) {
  .legal-main {
    padding-top: 84px;
  }

  .legal-hero h1 {
    font-size: clamp(56px, 16vw, 84px);
    line-height: 0.9;
  }

  .legal-content {
    grid-template-columns: 1fr;
  }
}

/* Portfolio calendar rhythm */
.portfolio-section .calendar-gallery {
  row-gap: clamp(24px, 4vw, 46px);
}

.portfolio-section .calendar-page:nth-child(3),
.portfolio-section .calendar-page:nth-child(4) {
  transform: none;
}

/* Gallery intro refinement */
.gallery-hero h1 {
  max-width: 9.5ch;
  font-size: clamp(64px, 10vw, 136px);
  line-height: 0.86;
}

.gallery-hero p:not(.eyebrow) {
  max-width: 760px;
}

@media (max-width: 760px) {
  .gallery-hero h1 {
    max-width: 10.5ch;
    font-size: clamp(52px, 15vw, 76px);
    line-height: 0.92;
  }
}

/* SEO FAQ */
.seo-faq {
  border-top: 1px solid rgba(40, 35, 31, 0.12);
  border-bottom: 1px solid rgba(40, 35, 31, 0.12);
  background:
    linear-gradient(90deg, rgba(251, 248, 242, 0.92), rgba(244, 238, 230, 0.72)),
    repeating-linear-gradient(0deg, rgba(40, 35, 31, 0.045) 0 1px, transparent 1px 56px);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(40, 35, 31, 0.14);
  border-left: 1px solid rgba(40, 35, 31, 0.14);
}

.faq-grid article {
  min-height: 230px;
  padding: clamp(24px, 3.2vw, 42px);
  border-right: 1px solid rgba(40, 35, 31, 0.14);
  border-bottom: 1px solid rgba(40, 35, 31, 0.14);
  background: rgba(251, 248, 242, 0.58);
}

.faq-grid h3 {
  margin: 0 0 18px;
  color: #28231f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
}

.faq-grid p {
  margin: 0;
  color: #5d544d;
  font-size: 15px;
  line-height: 1.68;
}

@media (max-width: 980px) {
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 660px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid article {
    min-height: 0;
  }
}

/* Guide pages */
.guide-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(320px, 0.45fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: center;
  border-bottom: 1px solid rgba(40, 35, 31, 0.12);
}

.guide-feature figure {
  margin: 0;
}

.guide-feature img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.03);
}

.guide-feature h2,
.guide-section h2 {
  margin: 0;
  color: #28231f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(46px, 6.4vw, 94px);
  font-weight: 600;
  line-height: 0.92;
}

.guide-section {
  border-bottom: 1px solid rgba(40, 35, 31, 0.12);
}

.guide-section.alt {
  background: rgba(244, 238, 230, 0.56);
}

.guide-card-grid,
.outfit-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(40, 35, 31, 0.12);
  background: rgba(251, 248, 242, 0.54);
}

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

.guide-card-grid article,
.outfit-board article {
  min-height: 260px;
  padding: clamp(24px, 3vw, 42px);
  border-right: 1px solid rgba(40, 35, 31, 0.12);
}

.guide-card-grid article:last-child,
.guide-card-grid.three article:last-child,
.outfit-board article:nth-child(3n) {
  border-right: 0;
}

.guide-card-grid span {
  display: block;
  margin-bottom: 34px;
  color: #9a8874;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.guide-card-grid h3,
.guide-list h3,
.outfit-board h3 {
  margin: 0 0 18px;
  color: #28231f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 2.6vw, 42px);
  font-weight: 600;
  line-height: 1;
}

.guide-card-grid p,
.guide-list p,
.outfit-board p,
.guide-feature p {
  color: #5f554d;
  line-height: 1.75;
}

.guide-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  margin: clamp(30px, 5vw, 58px) 0 28px;
}

.guide-list article {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(40, 35, 31, 0.12);
  background: rgba(251, 248, 242, 0.58);
}

/* 20er-Jahre Special */
.special-teaser,
.special-hero,
.special-intro {
  display: grid;
  grid-template-columns: minmax(300px, 0.52fr) minmax(320px, 0.48fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: center;
  border-bottom: 1px solid rgba(40, 35, 31, 0.12);
  background:
    linear-gradient(90deg, rgba(251, 248, 242, 0.96), rgba(238, 229, 215, 0.72)),
    repeating-linear-gradient(0deg, rgba(40, 35, 31, 0.048) 0 1px, transparent 1px 56px);
}

.special-hero {
  min-height: calc(100vh - 108px);
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 112px) clamp(22px, 4vw, 64px);
}

.special-teaser figure,
.special-hero figure {
  position: relative;
  margin: 0;
  border: 1px solid rgba(40, 35, 31, 0.14);
  background: #111;
}

.special-teaser img,
.special-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: sepia(0.24) saturate(0.72) contrast(1.06);
}

.special-teaser figcaption,
.special-hero figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  color: #6f6255;
  background: rgba(251, 248, 242, 0.94);
  border-top: 1px solid rgba(40, 35, 31, 0.12);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.special-teaser h2,
.special-hero h1,
.special-intro h2,
.special-package h2 {
  margin: 0;
  color: #28231f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 6.8vw, 104px);
  font-weight: 600;
  line-height: 0.9;
}

.special-hero h1 {
  font-size: clamp(58px, 8vw, 124px);
}

.special-teaser p:not(.eyebrow),
.special-hero p:not(.eyebrow),
.special-intro p,
.special-package p,
.gallery-special-note p {
  color: #5f554d;
  line-height: 1.75;
}

.special-teaser .button {
  margin-top: 24px;
}

.gallery-special-note {
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 70px) clamp(22px, 4vw, 64px);
  border-bottom: 1px solid rgba(40, 35, 31, 0.12);
  background: rgba(238, 229, 215, 0.48);
}

.gallery-special-note h2 {
  margin: 0;
  color: #28231f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 600;
  line-height: 0.95;
}

.special-package {
  border-bottom: 1px solid rgba(40, 35, 31, 0.12);
}

.special-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(40, 35, 31, 0.12);
  background: rgba(251, 248, 242, 0.58);
}

.special-package-grid article {
  min-height: 245px;
  padding: clamp(24px, 3vw, 42px);
  border-right: 1px solid rgba(40, 35, 31, 0.12);
}

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

.special-package-grid span {
  display: block;
  margin-bottom: 30px;
  color: #9a8874;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.special-package-grid h3 {
  margin: 0 0 18px;
  color: #28231f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 600;
  line-height: 1;
}

.special-video {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(420px, 0.62fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  border-bottom: 1px solid rgba(40, 35, 31, 0.12);
  background: rgba(238, 229, 215, 0.44);
}

.special-video h2 {
  margin: 0;
  color: #28231f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(46px, 6vw, 88px);
  font-weight: 600;
  line-height: 0.92;
}

.special-video p:not(.eyebrow) {
  color: #5f554d;
  line-height: 1.75;
}

.special-video figure {
  margin: 0;
  border: 1px solid rgba(40, 35, 31, 0.14);
  background: #0b0908;
}

.special-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.special-video figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  color: #6f6255;
  background: rgba(251, 248, 242, 0.94);
  border-top: 1px solid rgba(40, 35, 31, 0.12);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Appointment requests and admin */
.appointment-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.form-hint,
.form-feedback {
  margin: 0;
  color: #5f554d;
  font-size: 14px;
  line-height: 1.6;
}

.form-feedback {
  min-height: 24px;
  padding: 10px 12px;
  border: 1px solid rgba(40, 35, 31, 0.12);
  background: rgba(251, 248, 242, 0.72);
}

.form-feedback:empty {
  display: none;
}

.form-feedback.is-error {
  color: #7a251f;
  border-color: rgba(122, 37, 31, 0.3);
  background: rgba(122, 37, 31, 0.08);
}

.admin-shell {
  display: grid;
  grid-template-columns: minmax(360px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.admin-sidebar,
.admin-main,
.admin-request {
  border: 1px solid rgba(40, 35, 31, 0.12);
  background: rgba(251, 248, 242, 0.68);
}

.admin-sidebar {
  position: sticky;
  top: 116px;
  padding: clamp(22px, 3vw, 34px);
}

.admin-sidebar h2 {
  margin: 0 0 22px;
  color: #28231f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 3.6vw, 56px);
  font-weight: 600;
  line-height: 0.94;
  overflow-wrap: anywhere;
}

.admin-calendar {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.calendar-row {
  display: grid;
  grid-template-columns: minmax(96px, auto) auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(40, 35, 31, 0.12);
  color: #5f554d;
  background: rgba(255, 255, 255, 0.38);
  font-size: 13px;
}

.calendar-row strong {
  color: #28231f;
}

.calendar-row em {
  min-width: 0;
  font-style: italic;
  overflow-wrap: anywhere;
}

.calendar-row.status-confirmed {
  border-color: rgba(143, 111, 46, 0.38);
  background: rgba(215, 183, 101, 0.12);
}

.admin-main {
  padding: clamp(18px, 3vw, 30px);
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.admin-toolbar button,
.button.text-button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(40, 35, 31, 0.14);
  background: rgba(251, 248, 242, 0.72);
  color: #28231f;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-toolbar button.active {
  color: #fbf8f2;
  background: #28231f;
}

.admin-board {
  display: grid;
  gap: 16px;
}

.admin-empty {
  margin: 0 0 20px;
  color: #5f554d;
  line-height: 1.7;
}

.admin-request {
  padding: clamp(20px, 3vw, 30px);
}

.admin-request.status-confirmed {
  border-color: rgba(143, 111, 46, 0.42);
  box-shadow: inset 4px 0 0 rgba(143, 111, 46, 0.56);
}

.admin-request-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  color: #8f7d6d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.admin-request h3 {
  margin: 0 0 18px;
  color: #28231f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 600;
  line-height: 0.96;
}

.admin-request dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}

.admin-request dt {
  color: #8f7d6d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-request dd {
  margin: 5px 0 0;
  color: #28231f;
}

.admin-request p {
  color: #5f554d;
  line-height: 1.7;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.admin-locked [data-admin-private] {
  display: none;
}

.admin-unlocked [data-admin-login] {
  display: none;
}

.admin-login {
  min-height: calc(100vh - 116px);
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(251, 248, 242, 0.94), rgba(244, 238, 230, 0.76)),
    repeating-linear-gradient(0deg, rgba(40, 35, 31, 0.045) 0 1px, transparent 1px 56px);
}

.admin-login-card {
  width: min(100%, 520px);
  box-sizing: border-box;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(40, 35, 31, 0.14);
  background: rgba(251, 248, 242, 0.88);
  box-shadow: 0 28px 80px rgba(40, 35, 31, 0.12);
}

.admin-login-card h1 {
  margin: 0;
  color: #28231f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(52px, 8vw, 88px);
  font-weight: 600;
  line-height: 0.9;
}

.admin-login-card p:not(.eyebrow),
.admin-login-error {
  color: #5f554d;
  line-height: 1.7;
}

.admin-login-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.admin-login-error:empty {
  display: none;
}

.admin-login-error {
  margin: 0;
  color: #7a251f;
}

.admin-logout {
  margin-top: 24px;
}

.studio-login {
  opacity: 0.48;
  font-size: 10px;
}

.studio-login:hover,
.studio-login:focus-visible {
  opacity: 1;
}

/* Mobile navigation and responsive polish */
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 760px) {
  .admin-page {
    overflow-x: hidden;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand toggle"
      "nav nav"
      "cta cta";
    align-items: center;
    gap: 10px 14px;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(40, 35, 31, 0.14);
    background: rgba(244, 238, 230, 0.96);
    box-shadow: 0 14px 40px rgba(40, 35, 31, 0.08);
    backdrop-filter: blur(16px);
  }

  .site-header .brand {
    grid-area: brand;
    min-width: 0;
  }

  .site-header .header-logo {
    width: min(235px, 66vw);
  }

  .mobile-menu-toggle {
    grid-area: toggle;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(143, 125, 109, 0.38);
    border-radius: 999px;
    background:
      linear-gradient(135deg, rgba(251, 248, 242, 0.94), rgba(236, 226, 213, 0.76));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.38), 0 10px 26px rgba(40, 35, 31, 0.08);
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  }

  .mobile-menu-toggle::before {
    content: "";
    position: absolute;
    right: 12px;
    top: 10px;
    width: 5px;
    height: 5px;
    border: 1px solid rgba(143, 111, 46, 0.72);
    transform: rotate(45deg);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus-visible {
    border-color: rgba(143, 111, 46, 0.58);
    background: rgba(251, 248, 242, 0.96);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45), 0 12px 28px rgba(40, 35, 31, 0.12);
  }

  .mobile-menu-toggle:active {
    transform: translateY(1px);
  }

  .mobile-menu-toggle span {
    position: absolute;
    left: 14px;
    display: block;
    width: 24px;
    height: 1px;
    margin: 0;
    background: #28231f;
    transform-origin: center;
    transition: transform 200ms ease, opacity 160ms ease, width 200ms ease, background 180ms ease;
  }

  .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(-7px);
  }

  .mobile-menu-toggle span:nth-child(2) {
    width: 18px;
    transform: translateY(0);
  }

  .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(7px);
  }

  .site-header.menu-open .mobile-menu-toggle span:nth-child(1) {
    width: 24px;
    transform: translateY(0) rotate(42deg);
  }

  .site-header.menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: translateX(6px);
  }

  .site-header.menu-open .mobile-menu-toggle span:nth-child(3) {
    width: 24px;
    transform: translateY(0) rotate(-42deg);
  }

  .site-header.menu-open .mobile-menu-toggle::before {
    opacity: 0;
    transform: rotate(45deg) scale(0.4);
  }

  .site-header .main-nav {
    grid-area: nav;
    display: grid;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    gap: 0;
    border-top: 0 solid rgba(40, 35, 31, 0.12);
    color: #28231f;
    transition: max-height 240ms ease, padding 240ms ease, border-width 240ms ease;
  }

  .site-header.menu-open .main-nav {
    max-height: 420px;
    padding-top: 10px;
    border-top-width: 1px;
  }

  .site-header .main-nav a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 2px;
    border-bottom: 1px solid rgba(40, 35, 31, 0.1);
    color: #28231f;
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .site-header .header-cta {
    grid-area: cta;
    display: none;
    width: 100%;
    min-height: 46px;
    margin-top: 2px;
    color: #fbf8f2;
    border-color: rgba(40, 35, 31, 0.18);
    background: #28231f;
  }

  .site-header.menu-open .header-cta {
    display: inline-flex;
  }

  .hero {
    padding: 28px 16px 52px;
  }

  #hero-title,
  .hero-content h1,
  .sub-hero h1,
  .studio-hero h1,
  .month-editorial-copy h1 {
    font-size: clamp(48px, 15vw, 70px);
    line-height: 0.92;
  }

  .hero-copy,
  .sub-hero p:not(.eyebrow),
  .studio-hero p:not(.eyebrow),
  .month-editorial-copy p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.58;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions .button,
  .button,
  .gallery-cta .button {
    width: 100%;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .intro,
  .month-feature,
  .berlin,
  .contact-section,
  .studio-hero,
  .gallery-detail,
  .guide-feature,
  .special-teaser,
  .special-hero,
  .special-intro,
  .special-video {
    grid-template-columns: 1fr;
  }

  .section,
  .gallery-section,
  .portfolio-section,
  .packages,
  .process,
  .legal-note,
  .seo-faq,
  .legal-main {
    padding-left: 16px;
    padding-right: 16px;
  }

  .calendar-gallery,
  .package-grid,
  .note-grid,
  .trust-band,
  .steps,
  .month-grid,
  .contact-grid,
  .interest-grid,
  .guide-card-grid,
  .guide-card-grid.three,
  .guide-list,
  .outfit-board,
  .special-package-grid,
  .appointment-fields,
  .admin-shell,
  .admin-request dl {
    grid-template-columns: 1fr;
  }

  .guide-card-grid article,
  .outfit-board article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(40, 35, 31, 0.12);
  }

  .guide-card-grid article:last-child,
  .outfit-board article:last-child {
    border-bottom: 0;
  }

  .special-package-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(40, 35, 31, 0.12);
  }

  .special-package-grid article:last-child {
    border-bottom: 0;
  }

  .portfolio-calendar {
    gap: 20px;
  }

  .calendar-page {
    min-height: 0;
    padding: 14px;
  }

  .calendar-page img {
    min-height: 300px;
  }

  .package-card.featured {
    transform: none;
  }

  .contact-form {
    padding: 22px;
  }

  .admin-sidebar {
    position: static;
  }

  .admin-page .site-header {
    padding: 8px 12px;
    gap: 8px 10px;
  }

  .admin-page .site-header .header-logo {
    width: min(190px, 57vw);
  }

  .admin-page .site-header .main-nav a {
    min-height: 44px;
    font-size: 11px;
  }

  .admin-page .site-header .header-cta {
    min-height: 44px;
  }

  .admin-hero.sub-hero {
    min-height: 0;
    padding: 34px 16px 22px;
    text-align: left;
  }

  .admin-hero.sub-hero h1 {
    max-width: 9ch;
    font-size: clamp(38px, 12vw, 54px);
    line-height: 0.94;
  }

  .admin-hero.sub-hero p:not(.eyebrow) {
    max-width: none;
    font-size: 15px;
    line-height: 1.58;
  }

  .admin-logout {
    width: 100%;
    min-height: 46px;
    margin-top: 18px;
  }

  .admin-shell.section {
    gap: 14px;
    padding-top: 16px;
  }

  .admin-sidebar,
  .admin-main,
  .admin-request {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    background: rgba(251, 248, 242, 0.86);
  }

  .admin-sidebar {
    padding: 18px;
  }

  .admin-sidebar h2 {
    margin-bottom: 16px;
    font-size: clamp(34px, 10vw, 44px);
  }

  .admin-sidebar .button {
    min-height: 46px;
  }

  .admin-login {
    min-height: calc(100vh - 78px);
    padding: 28px 16px;
  }

  .admin-login-card {
    padding: 26px 20px;
  }

  .admin-login-card h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .admin-login-card .button {
    width: 100%;
  }

  .calendar-row {
    grid-template-columns: 1fr auto;
    gap: 6px 10px;
    padding: 11px;
    font-size: 12px;
  }

  .calendar-row em {
    grid-column: 1 / -1;
    min-width: 0;
    color: #6f6255;
    font-style: normal;
    overflow-wrap: anywhere;
  }

  .admin-main {
    padding: 14px;
  }

  .admin-toolbar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 14px;
  }

  .admin-toolbar button,
  .admin-page .button.text-button {
    width: 100%;
    min-height: 42px;
    padding: 0 6px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .admin-empty {
    font-size: 14px;
    line-height: 1.6;
  }

  .admin-request {
    padding: 16px;
  }

  .admin-request-head {
    display: grid;
    justify-content: stretch;
    gap: 5px;
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .admin-request-head strong,
  .admin-request h3,
  .admin-request dd,
  .admin-request p {
    overflow-wrap: anywhere;
  }

  .admin-request h3 {
    margin-bottom: 14px;
    font-size: clamp(32px, 10vw, 42px);
  }

  .admin-request dl {
    gap: 10px;
  }

  .admin-request dt {
    font-size: 10px;
    letter-spacing: 0.11em;
  }

  .admin-request dd {
    font-size: 14px;
  }

  .admin-request p {
    font-size: 14px;
    line-height: 1.62;
  }

  .admin-actions .button,
  .admin-actions button {
    width: 100%;
    min-height: 46px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .legal-content {
    grid-template-columns: 1fr;
  }

  .month-editorial,
  .image-lightbox {
    padding-left: 16px;
    padding-right: 16px;
  }

  .lightbox-nav {
    width: 42px;
    height: 42px;
  }

  .site-footer {
    gap: 24px;
    text-align: center;
  }

  .site-footer nav {
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .site-header .header-logo {
    width: min(205px, 62vw);
  }

  .admin-page .site-header .header-logo {
    width: min(176px, 54vw);
  }

  #hero-title,
  .hero-content h1,
  .sub-hero h1,
  .studio-hero h1,
  .month-editorial-copy h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .calendar-page img {
    min-height: 260px;
  }

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

/* Tablet and small laptop navigation bridge */
@media (min-width: 761px) and (max-width: 1100px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas:
      "brand cta toggle"
      "nav nav nav";
    align-items: center;
    gap: 10px 16px;
    min-height: auto;
    padding: 12px clamp(20px, 4vw, 42px);
    background: rgba(244, 238, 230, 0.96);
    box-shadow: 0 14px 40px rgba(40, 35, 31, 0.08);
    backdrop-filter: blur(16px);
  }

  .site-header .brand {
    grid-area: brand;
    min-width: 0;
    justify-self: start;
  }

  .site-header .header-logo {
    width: min(270px, 34vw);
  }

  .site-header .header-cta {
    grid-area: cta;
    display: inline-flex;
    justify-self: end;
    min-height: 42px;
    padding: 0 18px;
  }

  .mobile-menu-toggle {
    grid-area: toggle;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(143, 125, 109, 0.38);
    border-radius: 999px;
    background:
      linear-gradient(135deg, rgba(251, 248, 242, 0.94), rgba(236, 226, 213, 0.76));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.38), 0 10px 26px rgba(40, 35, 31, 0.08);
    cursor: pointer;
  }

  .mobile-menu-toggle::before {
    content: "";
    position: absolute;
    right: 12px;
    top: 10px;
    width: 5px;
    height: 5px;
    border: 1px solid rgba(143, 111, 46, 0.72);
    transform: rotate(45deg);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-menu-toggle span {
    position: absolute;
    left: 14px;
    display: block;
    width: 24px;
    height: 1px;
    margin: 0;
    background: #28231f;
    transform-origin: center;
    transition: transform 200ms ease, opacity 160ms ease, width 200ms ease, background 180ms ease;
  }

  .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(-7px);
  }

  .mobile-menu-toggle span:nth-child(2) {
    width: 18px;
    transform: translateY(0);
  }

  .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(7px);
  }

  .site-header .main-nav {
    grid-area: nav;
    display: grid;
    max-height: 0;
    overflow: hidden;
    width: 100%;
    padding: 0;
    gap: 0;
    border-top: 0 solid rgba(40, 35, 31, 0.12);
    color: #28231f;
    transition: max-height 240ms ease, padding 240ms ease, border-width 240ms ease;
  }

  .site-header.menu-open .main-nav {
    max-height: 420px;
    padding-top: 10px;
    border-top-width: 1px;
  }

  .site-header .main-nav a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 2px;
    border-bottom: 1px solid rgba(40, 35, 31, 0.1);
    color: #28231f;
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .site-header.menu-open .mobile-menu-toggle span:nth-child(1) {
    width: 24px;
    transform: translateY(0) rotate(42deg);
  }

  .site-header.menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: translateX(6px);
  }

  .site-header.menu-open .mobile-menu-toggle span:nth-child(3) {
    width: 24px;
    transform: translateY(0) rotate(-42deg);
  }

  .site-header.menu-open .mobile-menu-toggle::before {
    opacity: 0;
    transform: rotate(45deg) scale(0.4);
  }
}

/* Expanded confidential request form */
.contact-section {
  grid-template-columns: minmax(260px, 0.62fr) minmax(560px, 1.18fr);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 150px;
}

.contact-form {
  gap: 0;
  padding: clamp(24px, 4vw, 48px);
}

.form-heading {
  padding-bottom: 30px;
}

.form-heading h3 {
  max-width: 620px;
  margin: 0 0 12px;
  color: #28231f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 3.5vw, 54px);
  font-weight: 600;
  line-height: 0.98;
}

.form-heading > p:last-child {
  margin: 0;
  color: #62574f;
  font-size: 14px;
  line-height: 1.6;
}

.form-section {
  min-width: 0;
  margin: 0;
  padding: 26px 0 30px;
  border: 0;
  border-top: 1px solid rgba(40, 35, 31, 0.14);
}

.form-section legend {
  display: flex;
  gap: 12px;
  align-items: baseline;
  width: 100%;
  margin: 0 0 20px;
  padding: 0;
  color: #28231f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 600;
  line-height: 1.1;
}

.form-section legend span {
  color: #9b8467;
  font-family: Inter, Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.form-row {
  display: grid;
  gap: 14px;
}

.form-row + .form-row,
.form-section > label,
.form-section .appointment-fields + label {
  margin-top: 16px;
}

.form-row.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 50px;
  border-color: rgba(40, 35, 31, 0.2);
  background: rgba(255, 255, 255, 0.48);
  color: #28231f;
}

.contact-form textarea {
  min-height: 150px;
  line-height: 1.55;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(155, 132, 103, 0.34);
  outline-offset: 2px;
  border-color: #9b8467;
}

.shooting-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 14px 0 0;
}

.shooting-options label {
  position: relative;
  display: block;
  cursor: pointer;
}

.shooting-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.shooting-options span {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px 12px 42px;
  border: 1px solid rgba(40, 35, 31, 0.16);
  color: #403832;
  background: rgba(255, 255, 255, 0.32);
  font-size: 12px;
  line-height: 1.35;
  transition: border-color 180ms ease, background 180ms ease;
}

.shooting-options span::before {
  content: "";
  position: absolute;
  left: 15px;
  width: 14px;
  height: 14px;
  border: 1px solid #9b8467;
  transform: rotate(45deg);
}

.shooting-options input:checked + span {
  border-color: #9b8467;
  background: rgba(187, 158, 112, 0.13);
}

.shooting-options input:checked + span::before {
  background: #9b8467;
  box-shadow: inset 0 0 0 3px #f8f4ed;
}

.shooting-options input:focus-visible + span {
  outline: 2px solid rgba(155, 132, 103, 0.4);
  outline-offset: 2px;
}

.shooting-options .special-option {
  grid-column: 1 / -1;
}

.field-error {
  min-height: 0;
  margin: 8px 0 0;
  color: #7a251f;
  font-size: 13px;
  font-weight: 600;
}

.field-error:empty {
  display: none;
}

.privacy-check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 24px 0 18px;
  color: #534a43;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
  text-transform: none;
}

.privacy-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: #8c765a;
}

.privacy-check a {
  color: #28231f;
  border-bottom: 1px solid rgba(40, 35, 31, 0.36);
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-feedback.is-success {
  color: #315b46;
  border-color: rgba(49, 91, 70, 0.28);
  background: rgba(49, 91, 70, 0.08);
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.68;
}

.thank-you-main {
  display: grid;
  min-height: calc(100vh - 112px);
  place-items: center;
  padding: clamp(80px, 12vw, 160px) clamp(20px, 8vw, 120px);
  background: #f3eee7;
}

.thank-you-main section {
  max-width: 900px;
  text-align: center;
}

.thank-you-main h1 {
  margin: 0 0 24px;
  color: #28231f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(58px, 9vw, 132px);
  font-weight: 600;
  line-height: 0.88;
}

.thank-you-main p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto 30px;
  color: #5f554d;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
}

.thank-you-main .month-actions {
  justify-content: center;
}

@media (max-width: 1100px) {
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .contact-form {
    padding: 20px 16px;
  }

  .form-row.two-columns,
  .shooting-options {
    grid-template-columns: 1fr;
  }

  .shooting-options .special-option {
    grid-column: auto;
  }

  .form-section legend {
    align-items: flex-start;
  }
}

/* Secure studio administration */
.admin-page [hidden] {
  display: none !important;
}

.admin-loading main {
  min-height: calc(100vh - 116px);
}

.admin-notice {
  display: none;
  margin: 0 0 18px;
  padding: 13px 15px;
  border: 1px solid rgba(40, 35, 31, 0.14);
  color: #28231f;
  background: rgba(251, 248, 242, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.package-choice {
  margin-top: 0 !important;
}

.package-prefill-note {
  margin: 12px 0 22px !important;
  padding: 11px 13px;
  border-left: 3px solid #9b8467;
  color: #315b46;
  background: rgba(155, 132, 103, 0.08);
}

.package-prefill-note + .form-hint {
  margin-top: 0 !important;
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(40, 35, 31, 0.14);
}

.admin-summary article {
  min-width: 0;
}

.admin-summary span {
  display: block;
  margin-bottom: 7px;
  color: #8f7d6d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-summary strong {
  display: block;
  color: #28231f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(31px, 4vw, 48px);
  font-weight: 600;
  line-height: 1;
  overflow-wrap: anywhere;
}

.admin-package-badge {
  display: inline-flex;
  margin: 0 0 18px !important;
  padding: 7px 10px;
  border: 1px solid rgba(143, 111, 46, 0.3);
  color: #6d604f !important;
  background: rgba(215, 183, 101, 0.1);
  font-size: 12px;
  font-weight: 700;
}

.admin-notice:not(:empty) {
  display: block;
}

.admin-notice.is-success,
.setup-message.is-success {
  border-color: rgba(49, 91, 70, 0.3);
  color: #315b46;
  background: rgba(49, 91, 70, 0.08);
}

.admin-notice.is-error,
.setup-message.is-error {
  border-color: rgba(122, 37, 31, 0.3);
  color: #7a251f;
  background: rgba(122, 37, 31, 0.08);
}

.admin-request.status-declined {
  opacity: 0.78;
}

.admin-request.status-completed {
  border-color: rgba(49, 91, 70, 0.28);
  box-shadow: inset 4px 0 0 rgba(49, 91, 70, 0.38);
}

.admin-request a,
.admin-request dd,
.admin-request-context {
  overflow-wrap: anywhere;
}

.admin-request-context {
  margin: 20px 0;
  padding: 18px;
  border: 1px solid rgba(40, 35, 31, 0.1);
  background: rgba(255, 255, 255, 0.32);
}

.admin-request-context p {
  margin: 0;
}

.admin-request-context p + p {
  margin-top: 8px;
}

.admin-confirm-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid rgba(40, 35, 31, 0.12);
  border-bottom: 1px solid rgba(40, 35, 31, 0.12);
}

.admin-confirm-fields label,
.setup-form label {
  display: grid;
  min-width: 0;
  gap: 8px;
  color: #5f554d;
  font-size: 13px;
  font-weight: 700;
}

.admin-confirm-fields input,
.admin-confirm-fields select,
.admin-confirm-fields textarea,
.setup-form input {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid rgba(40, 35, 31, 0.2);
  border-radius: 0;
  color: #28231f;
  background: rgba(255, 255, 255, 0.52);
  font: inherit;
}

.admin-confirm-fields textarea {
  min-height: 96px;
  resize: vertical;
}

.admin-note-field {
  grid-column: 1 / -1;
}

.admin-package-field {
  grid-column: 1 / -1;
}

.admin-actions .button,
.admin-actions button,
.admin-toolbar button {
  max-width: 100%;
  white-space: normal;
  line-height: 1.25;
}

.button.text-button.danger {
  color: #7a251f;
  border-color: rgba(122, 37, 31, 0.24);
}

.setup-page .admin-login {
  min-height: 100vh;
  padding-top: clamp(32px, 6vw, 76px);
  padding-bottom: clamp(32px, 6vw, 76px);
}

.admin-login-card.setup-card {
  width: min(100%, 780px);
}

.setup-message {
  margin: 22px 0;
  padding: 13px 15px;
  border: 1px solid rgba(40, 35, 31, 0.14);
  line-height: 1.55;
}

.setup-form {
  display: grid;
  gap: 0;
  margin-top: 26px;
}

.setup-form .form-section {
  padding: 28px 0 30px;
}

.setup-form .button {
  justify-self: start;
  margin-top: 24px;
}

@media (max-width: 760px) {
  .admin-confirm-fields,
  .setup-form .form-row.two-columns {
    grid-template-columns: 1fr;
  }

  .admin-note-field {
    grid-column: auto;
  }

  .admin-package-field {
    grid-column: auto;
  }

  .admin-summary {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .admin-request-context,
  .admin-confirm-fields {
    padding: 16px 0;
  }

  .admin-request-context {
    padding-right: 14px;
    padding-left: 14px;
  }

  .setup-form .button {
    width: 100%;
  }
}

/* Slightly larger public brand mark */
.site-header .header-logo {
  width: clamp(280px, 28vw, 390px);
}

@media (min-width: 761px) and (max-width: 1100px) {
  .site-header .header-logo {
    width: min(292px, 36vw);
  }
}

@media (max-width: 760px) {
  .site-header .header-logo {
    width: min(250px, 70vw);
  }
}

@media (max-width: 420px) {
  .site-header .header-logo {
    width: min(218px, 66vw);
  }
}

/* Form spacing refinement */
.contact-form {
  padding: clamp(30px, 4vw, 52px);
}

.form-heading {
  padding-bottom: clamp(34px, 4vw, 46px);
}

.form-heading .eyebrow {
  margin-bottom: 18px;
}

.form-heading h3 {
  margin-bottom: 16px;
}

.form-section {
  padding: clamp(32px, 3.4vw, 42px) 0 clamp(34px, 3.8vw, 46px);
}

.form-section legend {
  margin-bottom: 24px;
}

.contact-form label {
  gap: 10px;
}

.form-row,
.appointment-fields {
  gap: 18px;
}

.form-row + .form-row,
.form-section > label,
.form-section .appointment-fields + label {
  margin-top: 22px;
}

.form-section > .form-hint {
  margin: -10px 0 18px;
}

.shooting-options {
  gap: 12px;
  margin-top: 0;
}

.shooting-options + .field-error {
  margin-top: 12px;
}

.shooting-options ~ .form-row {
  margin-top: 24px;
}

.privacy-check {
  margin: 0 0 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(40, 35, 31, 0.14);
}

.contact-form > .form-hint {
  margin: 0 0 18px;
}

.contact-form > .form-feedback {
  margin: 0 0 18px;
}

.contact-form > .form-feedback:empty {
  margin: 0;
}

.contact-form > .button {
  margin-top: 2px;
}

@media (max-width: 640px) {
  .contact-form {
    padding: 26px 18px 28px;
  }

  .form-heading {
    padding-bottom: 30px;
  }

  .form-heading .eyebrow {
    margin-bottom: 14px;
  }

  .form-section {
    padding: 28px 0 32px;
  }

  .form-section legend {
    gap: 9px;
    margin-bottom: 20px;
  }

  .form-row,
  .appointment-fields {
    gap: 16px;
  }

  .form-row + .form-row,
  .form-section > label,
  .form-section .appointment-fields + label {
    margin-top: 18px;
  }

  .shooting-options {
    gap: 10px;
  }

  .shooting-options ~ .form-row {
    margin-top: 20px;
  }

  .privacy-check {
    padding-top: 24px;
  }
}
