:root {
  --forest: #294a3c;
  --forest-deep: #183127;
  --forest-soft: #496959;
  --ivory: #f4efe6;
  --paper: #fbf8f2;
  --white: #fffdf9;
  --blush: #e8c7c0;
  --peach: #e8b48f;
  --sage: #a7b49e;
  --ink: #203229;
  --muted: #56645d;
  --line: rgba(32, 50, 41, 0.16);
  --line-light: rgba(255, 253, 249, 0.2);
  --serif: "Italiana", Georgia, serif;
  --headline: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --display: "Manrope", Arial, sans-serif;
  --shadow: 0 30px 80px rgba(24, 49, 39, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 124px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

button {
  color: inherit;
}

::selection {
  background: var(--peach);
  color: var(--forest-deep);
}

:focus-visible {
  outline: 3px solid var(--peach);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 300;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--white);
  color: var(--forest-deep);
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.announcement {
  position: relative;
  z-index: 120;
  min-height: 38px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--forest-deep);
  color: var(--white);
}

.announcement-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 9px 24px;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
  text-align: center;
}

.announcement i {
  color: var(--peach);
  font-style: normal;
  font-size: 0.66rem;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(251, 248, 242, 0.9);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(251, 248, 242, 0.96);
  box-shadow: 0 14px 45px rgba(24, 49, 39, 0.07);
}

.header-inner {
  width: min(1320px, calc(100% - 64px));
  height: 76px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  flex: none;
  gap: 2px;
  text-decoration: none;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 0.46rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 240ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 16px 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, color 220ms ease, background 220ms ease, border-color 220ms ease;
}

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

.button span {
  font-size: 1.15rem;
}

.button-small {
  min-height: 48px;
  padding: 12px 20px;
  background: var(--forest);
  color: var(--white);
}

.button-primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(41, 74, 60, 0.18);
}

.button-primary:hover {
  background: var(--forest-deep);
  box-shadow: 0 22px 48px rgba(41, 74, 60, 0.26);
}

.button-cream {
  background: var(--ivory);
  color: var(--forest-deep);
}

.button-cream:hover {
  background: var(--white);
}

.button-outline {
  border-color: var(--line);
  background: transparent;
  color: var(--forest-deep);
}

.button-outline:hover {
  border-color: var(--forest);
  background: var(--ivory);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--forest);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  width: 20px;
  height: 1px;
  display: block;
  margin: 5px auto;
  background: var(--white);
  transition: transform 220ms ease;
}

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

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

.mobile-menu {
  display: none;
}

.hero {
  width: min(1320px, calc(100% - 64px));
  min-height: 780px;
  margin: 0 auto;
  padding: clamp(72px, 8vw, 120px) 0 92px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(60px, 8vw, 128px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 38px;
  height: 1px;
  display: inline-block;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.wedding-copy h2,
.atelier-copy h2,
.gallery-title h2,
.process-heading h2,
.order-intro h2,
.brussels-copy h2,
.message-dialog h2 {
  margin: 0;
  font-family: var(--headline);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.94;
  text-wrap: balance;
}

.hero h1 {
  max-width: 780px;
  font-family: var(--headline);
  font-size: clamp(4.6rem, 7vw, 7.4rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.84;
  text-wrap: initial;
}

.hero-title-line,
.hero-title-accent {
  display: block;
  white-space: nowrap;
}

.hero-title-line {
  font-weight: 600;
}

.hero-title-accent {
  margin-top: 0.12em;
  color: var(--forest-soft);
  font-size: 0.78em;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.hero-title-accent strong {
  color: var(--forest-deep);
  font-weight: 700;
}

.hero h1 em,
.section-heading h2 em,
.wedding-copy h2 em,
.atelier-copy h2 em,
.gallery-title h2 em,
.process-heading h2 em,
.order-intro h2 em,
.brussels-copy h2 em,
.message-dialog h2 em {
  color: var(--forest-soft);
  font-style: italic;
  font-weight: 500;
}

.hero-intro {
  max-width: 650px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.8;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 8px 0;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link::after {
  content: "";
  position: absolute;
  right: 32px;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease;
  transform-origin: left;
}

.text-link:hover::after {
  transform: scaleX(0.55);
}

.hero-trust {
  max-width: 680px;
  margin-top: 60px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hero-trust div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-trust strong {
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 400;
}

.hero-trust span {
  color: var(--muted);
  font-size: 0.7rem;
}

.hero-visual {
  position: relative;
  width: min(100%, 560px);
  justify-self: end;
}

.hero-photo-frame {
  position: relative;
  height: min(68vw, 710px);
  min-height: 610px;
  overflow: hidden;
  border-radius: 280px 280px 24px 24px;
  background: var(--blush);
  box-shadow: var(--shadow);
}

.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(24, 49, 39, 0.24));
  pointer-events: none;
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  transform: scale(1.01);
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-visual:hover .hero-photo-frame img {
  transform: scale(1.035);
}

.hero-stamp {
  position: absolute;
  top: 8%;
  left: -54px;
  width: 122px;
  height: 122px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--peach);
  color: var(--forest-deep);
  text-align: center;
  transform: rotate(-8deg);
  box-shadow: 0 18px 42px rgba(24, 49, 39, 0.18);
}

.hero-stamp span {
  position: absolute;
  font-family: var(--display);
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-stamp span:first-child {
  top: 21px;
}

.hero-stamp span:last-child {
  bottom: 19px;
}

.hero-stamp b {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 400;
}

.hero-note {
  position: absolute;
  right: -24px;
  bottom: -32px;
  width: min(272px, 72%);
  padding: 22px 26px;
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 20px 42px rgba(24, 49, 39, 0.18);
}

.hero-note span {
  display: block;
  margin-bottom: 5px;
  color: var(--peach);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-note strong {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.35;
}

.manifesto {
  position: relative;
  min-height: 330px;
  padding: 76px max(32px, calc((100% - 1180px) / 2));
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--blush);
  text-align: center;
}

.manifesto::before,
.manifesto::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 300px;
  border: 1px solid rgba(41, 74, 60, 0.22);
  border-radius: 50%;
}

.manifesto::before {
  top: -150px;
  left: -30px;
  transform: rotate(35deg);
}

.manifesto::after {
  right: -30px;
  bottom: -170px;
  transform: rotate(-35deg);
}

.manifesto p {
  position: relative;
  z-index: 1;
  max-width: 950px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5.8rem);
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.manifesto p em {
  color: var(--forest);
}

.manifesto-mark {
  position: absolute;
  right: 8%;
  bottom: -44px;
  color: rgba(255, 253, 249, 0.42);
  font-family: var(--serif);
  font-size: 12rem;
  line-height: 1;
}

.section {
  width: min(1220px, calc(100% - 64px));
  margin: auto;
  padding: 130px 0;
}

.section-heading {
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  gap: 80px;
  align-items: end;
}

.section-heading h2,
.atelier-copy h2,
.gallery-title h2,
.process-heading h2,
.brussels-copy h2 {
  font-size: clamp(3.4rem, 6vw, 6.8rem);
}

.section-heading > p {
  max-width: 460px;
  margin: 0 0 7px;
  color: var(--muted);
  line-height: 1.8;
}

.creation-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}

.creation-card {
  position: relative;
  grid-column: span 5;
  height: 520px;
  overflow: hidden;
  background: var(--sage);
}

.creation-card-large {
  grid-column: span 7;
  height: 660px;
}

.creation-card:nth-child(2) {
  align-self: end;
}

.creation-card:nth-child(3) {
  height: 570px;
}

.creation-card-wide {
  grid-column: span 7;
  height: 570px;
}

.creation-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
}

.creation-card:first-child img {
  object-position: center 58%;
}

.creation-card:nth-child(2) img {
  object-position: center 38%;
}

.creation-card:nth-child(3) img {
  object-position: center 33%;
}

.creation-card-wide img {
  object-position: center 54%;
}

.creation-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(16, 39, 29, 0.78));
  pointer-events: none;
}

.creation-card:hover img {
  transform: scale(1.045);
}

.creation-card-editorial {
  background: var(--blush);
}

.creation-editorial-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 253, 249, 0.76), transparent 28%),
    linear-gradient(145deg, #eed9d2 0%, #dca98e 100%);
}

.creation-editorial-visual b {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(255, 253, 249, 0.62);
  font-family: var(--serif);
  font-size: clamp(9rem, 18vw, 15rem);
  font-weight: 400;
  line-height: 1;
  transform: translate(-50%, -54%);
}

.editorial-paper {
  position: absolute;
  top: 18%;
  left: 17%;
  width: 67%;
  height: 58%;
  border: 1px solid rgba(41, 74, 60, 0.18);
  background: rgba(251, 248, 242, 0.5);
  transform: rotate(-8deg);
}

.editorial-ring {
  position: absolute;
  z-index: 1;
  border: 13px solid var(--forest);
  border-radius: 50%;
}

.editorial-ring-one {
  top: 19%;
  right: -8%;
  width: 58%;
  aspect-ratio: 1;
}

.editorial-ring-two {
  right: 18%;
  bottom: -12%;
  width: 46%;
  aspect-ratio: 1;
  border-color: rgba(255, 253, 249, 0.72);
}

.creation-card-editorial::after {
  background: linear-gradient(180deg, transparent 34%, rgba(24, 49, 39, 0.76));
}

.creation-overlay {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 26px;
  left: 26px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: end;
  color: var(--white);
}

.creation-overlay > span {
  padding-bottom: 5px;
  color: var(--peach);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.creation-overlay p {
  margin: 0 0 4px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.creation-overlay h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.08;
}

.creation-overlay button {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font-size: 1.2rem;
  backdrop-filter: blur(8px);
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.creation-overlay button:hover {
  transform: rotate(8deg);
  background: var(--white);
  color: var(--forest-deep);
}

.wedding {
  padding: 130px max(32px, calc((100% - 1320px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: center;
  overflow: hidden;
  background: var(--forest-deep);
  color: var(--white);
}

.wedding-media {
  position: relative;
  min-height: 760px;
}

.wedding-main {
  width: 78%;
  height: 720px;
  overflow: hidden;
  background: var(--blush);
}

.wedding-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}

.wedding-inset {
  position: absolute;
  right: 0;
  bottom: -2px;
  width: 46%;
  height: 390px;
  overflow: hidden;
  border: 10px solid var(--forest-deep);
  background: var(--ivory);
}

.wedding-inset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.wedding-inset-note {
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--blush);
  color: var(--forest-deep);
}

.wedding-inset-note span {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.wedding-inset-note strong {
  position: relative;
  z-index: 1;
  font-family: var(--headline);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 600;
  line-height: 0.95;
}

.wedding-inset-note i {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(255, 253, 249, 0.45);
  font-family: var(--serif);
  font-size: clamp(5rem, 9vw, 8rem);
  font-style: normal;
  line-height: 1;
}

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

.wedding-copy h2,
.order-intro h2 {
  color: var(--white);
  font-size: clamp(3.5rem, 5.6vw, 6.3rem);
}

.wedding-copy h2 em,
.order-intro h2 em {
  color: var(--peach);
}

.wedding-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 34px 0;
  color: rgba(255, 253, 249, 0.72);
  font-size: 1rem;
  line-height: 1.82;
}

.wedding-copy ul {
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.wedding-copy li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 0.86rem;
}

.wedding-copy li span {
  color: var(--peach);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.atelier {
  display: grid;
  grid-template-columns: 0.9fr 0.8fr 0.45fr;
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
}

.atelier-copy > p:not(.eyebrow) {
  max-width: 470px;
  color: var(--muted);
}

.atelier-copy .atelier-lead {
  margin-top: 30px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.45;
}

.atelier-copy blockquote {
  margin: 32px 0 22px;
  padding: 17px 0 17px 24px;
  border-left: 1px solid var(--forest);
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.45;
  text-wrap: balance;
}

.atelier-portrait {
  position: relative;
  height: 690px;
  overflow: hidden;
  border-radius: 220px 220px 0 0;
  background: var(--sage);
}

.atelier-portrait > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
}

.portrait-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 15px 18px;
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(12px);
}

.portrait-caption span {
  display: block;
  font-family: var(--headline);
  font-size: 1.55rem;
  font-weight: 600;
}

.portrait-caption small {
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.atelier-detail {
  align-self: end;
  padding-bottom: 34px;
}

.atelier-detail img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: center 20%;
}

.atelier-detail p {
  margin: 14px 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.4;
}

.atelier-detail-card {
  min-height: 390px;
  padding: 34px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--forest);
  color: var(--white);
}

.atelier-detail-card > span {
  color: var(--peach);
  font-family: var(--display);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.atelier-detail-card ol {
  margin: auto 0;
  padding: 0;
  list-style: none;
  counter-reset: atelier-step;
}

.atelier-detail-card li {
  padding: 12px 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 253, 249, 0.2);
  font-family: var(--headline);
  font-size: 1.5rem;
  font-weight: 600;
  counter-increment: atelier-step;
}

.atelier-detail-card li::before {
  content: "0" counter(atelier-step);
  color: var(--peach);
  font-family: var(--display);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.atelier-detail-card p {
  margin-top: 24px;
  color: rgba(255, 253, 249, 0.78);
}

.gallery-section {
  padding: 130px max(32px, calc((100% - 1320px) / 2));
  overflow: hidden;
  background: var(--ivory);
}

.gallery-title {
  margin-bottom: 62px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 270px;
  gap: 20px;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  background: var(--sage);
}

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

.gallery-item:nth-child(2),
.gallery-item:nth-child(3) {
  grid-column: span 4;
}

.gallery-wide {
  grid-column: span 8;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:nth-child(2) img {
  object-position: center 62%;
}

.gallery-item:nth-child(3) img {
  object-position: center 55%;
}

.gallery-wide img {
  object-position: center;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(24, 49, 39, 0.64));
}

.gallery-card {
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gallery-card::after {
  display: none;
}

.gallery-card-index {
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.gallery-card small {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-card h3,
.gallery-card p {
  margin: 0;
  font-family: var(--headline);
  font-weight: 600;
  line-height: 1;
}

.gallery-palette {
  background: var(--blush);
  color: var(--forest-deep);
}

.gallery-palette h3 {
  font-size: clamp(1.85rem, 3vw, 2.8rem);
}

.palette-swatches {
  display: flex;
  align-items: center;
}

.palette-swatches i {
  width: 50px;
  height: 50px;
  margin-right: -11px;
  border: 3px solid var(--blush);
  border-radius: 50%;
  background: #315c8d;
}

.palette-swatches i:nth-child(2) {
  background: #e9c6c3;
}

.palette-swatches i:nth-child(3) {
  background: var(--forest);
}

.gallery-monogram {
  position: relative;
  background: var(--forest);
  color: var(--white);
}

.gallery-monogram > b {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(255, 253, 249, 0.14);
  font-family: var(--serif);
  font-size: 10rem;
  font-weight: 400;
  line-height: 1;
  transform: translate(-50%, -52%);
}

.gallery-monogram p {
  position: relative;
  z-index: 1;
  max-width: 280px;
  font-size: clamp(1.9rem, 3.1vw, 3rem);
}

.gallery-story {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: end;
  background: var(--peach);
  color: var(--forest-deep);
}

.gallery-story .gallery-card-index {
  position: absolute;
  top: 26px;
  right: 26px;
}

.gallery-story h3 {
  max-width: 620px;
  font-size: clamp(2rem, 3.3vw, 3.25rem);
}

.gallery-story ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(32, 50, 41, 0.28);
}

.gallery-story li {
  padding: 7px 0;
  display: flex;
  gap: 13px;
  border-bottom: 1px solid rgba(32, 50, 41, 0.28);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gallery-story li b {
  color: rgba(32, 50, 41, 0.56);
  font-size: 0.6rem;
}

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

.gallery-item figcaption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.gallery-item figcaption span {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.process-heading {
  position: sticky;
  top: 150px;
}

.process-list {
  border-top: 1px solid var(--line);
}

.process-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.process-list article > span {
  padding-top: 8px;
  color: var(--forest-soft);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.process-list h3 {
  margin: 0 0 8px;
  font-family: var(--headline);
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.08;
}

.process-list p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.order-section {
  padding: 130px max(32px, calc((100% - 1220px) / 2));
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
  background: var(--forest-deep);
  color: var(--white);
}

.order-intro {
  position: sticky;
  top: 150px;
}

.order-intro > p:not(.eyebrow) {
  max-width: 480px;
  margin: 32px 0 0;
  color: rgba(255, 253, 249, 0.72);
  line-height: 1.82;
}

.order-promise {
  max-width: 480px;
  margin-top: 44px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.order-promise > span {
  color: var(--peach);
}

.order-promise strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
}

.order-promise p {
  margin: 0;
  color: rgba(255, 253, 249, 0.6);
  font-size: 0.76rem;
  line-height: 1.65;
}

.order-form {
  padding: clamp(28px, 4vw, 52px);
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 18px;
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  box-shadow: 0 32px 72px rgba(7, 23, 16, 0.22);
}

.field-group {
  min-width: 0;
}

.field-full {
  grid-column: 1 / -1;
}

.field-group label {
  display: block;
  margin-bottom: 9px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 55px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 0.88rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field-group input[type="date"] {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  inline-size: 100%;
  min-inline-size: 0;
  max-inline-size: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.field-group input[type="date"]::-webkit-date-and-time-value {
  min-height: 1.25em;
  text-align: left;
}

.field-group input[type="date"]::-webkit-calendar-picker-indicator {
  margin: 0;
  padding: 4px;
}

.field-group select {
  appearance: none;
  padding-right: 76px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position:
    calc(100% - 44px) 50%,
    calc(100% - 38px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.field-group textarea {
  min-height: 126px;
  resize: vertical;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(41, 74, 60, 0.1);
}

.submit-button {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 5px;
}

.form-flow {
  padding: 18px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.form-flow span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.45;
}

.form-flow b {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-size: 0.58rem;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: center;
}

.brussels {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
}

.brussels-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin: 30px 0 20px;
  color: var(--muted);
}

.map-card {
  position: relative;
  height: 550px;
  overflow: hidden;
  background: var(--sage);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.45) sepia(0.12) contrast(0.94);
}

.map-label {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 16px 22px;
  background: var(--forest);
  color: var(--white);
}

.map-label span {
  display: block;
  color: var(--peach);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-label strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.site-footer {
  padding: 80px max(32px, calc((100% - 1220px) / 2)) 22px;
  background: var(--forest);
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 0.9fr;
  gap: 70px;
  align-items: start;
  padding-bottom: 70px;
}

.footer-brand p {
  max-width: 280px;
  margin: 20px 0 0;
  color: rgba(255, 253, 249, 0.62);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links span {
  margin-bottom: 8px;
  color: var(--peach);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 253, 249, 0.78);
  font-size: 0.82rem;
  text-decoration: none;
}

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

.footer-instagram {
  min-height: 118px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border: 1px solid var(--line-light);
  text-decoration: none;
  transition: background 220ms ease, color 220ms ease;
}

.footer-instagram:hover {
  background: var(--peach);
  color: var(--forest-deep);
}

.footer-instagram span {
  font-family: var(--serif);
  font-size: 1.2rem;
}

.footer-instagram b {
  font-size: 1.4rem;
  font-weight: 400;
}

.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 253, 249, 0.5);
  font-size: 0.66rem;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.mobile-cta {
  display: none;
}

.message-dialog {
  width: min(780px, calc(100% - 30px));
  max-height: calc(100dvh - 30px);
  padding: 0;
  overflow: auto;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.message-dialog::backdrop {
  background: rgba(13, 34, 25, 0.74);
  backdrop-filter: blur(8px);
}

.dialog-card {
  position: relative;
  padding: clamp(30px, 6vw, 64px);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 43px;
  height: 43px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 1.5rem;
}

.message-dialog h2 {
  padding-right: 32px;
  font-size: clamp(3.1rem, 7vw, 5.4rem);
}

.dialog-steps {
  margin: 36px 0 22px;
  border-top: 1px solid var(--line);
}

.dialog-steps > div {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 15px;
  border-bottom: 1px solid var(--line);
}

.dialog-steps > div > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
}

.dialog-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.dialog-steps strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 400;
}

.copy-status {
  min-height: 24px;
  margin: 0 0 18px;
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 700;
}

.dialog-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dialog-card details {
  margin-top: 22px;
  border-top: 1px solid var(--line);
}

.dialog-card summary {
  padding: 16px 0;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
}

.dialog-card pre {
  max-height: 240px;
  margin: 0;
  padding: 18px;
  overflow: auto;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.72rem;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
}

.noscript {
  position: fixed;
  z-index: 400;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 16px;
  background: var(--forest-deep);
  color: var(--white);
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease var(--delay, 0ms), transform 700ms cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0ms);
}

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

@media (max-width: 1120px) {
  .header-inner {
    width: min(100% - 40px, 1320px);
  }

  .desktop-nav {
    gap: 20px;
  }

  .header-button {
    display: none;
  }

  .hero {
    width: min(100% - 48px, 1320px);
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
    gap: 66px;
  }

  .hero h1 {
    font-size: clamp(4.5rem, 8vw, 6.8rem);
  }

  .hero-stamp {
    left: -42px;
    width: 112px;
    height: 112px;
  }

  .hero-stamp span:first-child {
    top: 21px;
  }

  .hero-stamp span:last-child {
    bottom: 19px;
  }

  .hero-stamp b {
    font-size: 2.35rem;
  }

  .atelier {
    grid-template-columns: 0.9fr 0.75fr;
  }

  .atelier-detail {
    display: none;
  }
}

@media (max-width: 920px) {
  html {
    scroll-padding-top: 106px;
  }

  .announcement-track {
    gap: 12px;
    letter-spacing: 0.12em;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-inner {
    height: 76px;
  }

  .mobile-menu {
    position: fixed;
    z-index: 98;
    top: 114px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 38px 28px 100px;
    display: block;
    overflow-y: auto;
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    background: var(--paper);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  .site-header.is-scrolled .mobile-menu {
    top: 76px;
  }

  .mobile-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu nav {
    border-top: 1px solid var(--line);
  }

  .mobile-menu nav a {
    padding: 18px 0;
    display: flex;
    gap: 18px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: clamp(2.2rem, 8vw, 3.6rem);
    line-height: 1;
    text-decoration: none;
  }

  .mobile-menu nav span {
    color: var(--forest-soft);
    font-family: var(--sans);
    font-size: 0.6rem;
    font-weight: 700;
  }

  .mobile-menu > p {
    max-width: 300px;
    margin: 36px 0 0;
    color: var(--muted);
    font-family: var(--serif);
    font-size: 1.15rem;
  }

  .hero {
    min-height: 0;
    padding: 80px 0 96px;
    grid-template-columns: 1fr;
    gap: 78px;
  }

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

  .hero-visual {
    width: min(86%, 560px);
    justify-self: center;
  }

  .hero-photo-frame {
    height: 720px;
  }

  .hero-stamp {
    left: -38px;
  }

  .section {
    width: min(100% - 48px, 1220px);
    padding: 105px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading > p {
    max-width: 620px;
  }

  .creation-card,
  .creation-card-large,
  .creation-card-wide {
    grid-column: span 6;
    height: 560px;
  }

  .wedding {
    padding: 105px 32px;
    grid-template-columns: 1fr;
    gap: 90px;
  }

  .wedding-media {
    width: min(100%, 680px);
    min-height: 710px;
    margin: auto;
  }

  .wedding-copy {
    max-width: 720px;
  }

  .atelier {
    grid-template-columns: 1fr 0.8fr;
  }

  .gallery-section {
    padding: 105px 24px;
  }

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

  .process,
  .brussels {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .process-heading,
  .order-intro {
    position: static;
  }

  .process-heading {
    max-width: 720px;
  }

  .order-section {
    padding: 105px 32px;
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .order-intro {
    max-width: 720px;
  }

  .map-card {
    height: 480px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-instagram {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 78px;
  }

  .announcement {
    min-height: 34px;
  }

  .announcement-track {
    width: max-content;
    min-width: 100%;
    padding: 9px 14px;
    font-size: 0.59rem;
    letter-spacing: 0.09em;
  }

  .announcement-track span:nth-of-type(2),
  .announcement-track i:nth-of-type(2) {
    display: none;
  }

  .header-inner {
    width: calc(100% - 30px);
    height: 58px;
  }

  .brand-name {
    font-size: 0.98rem;
    letter-spacing: 0.12em;
  }

  .brand-subtitle {
    max-width: 138px;
    font-size: 0.34rem;
    letter-spacing: 0.12em;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .mobile-menu {
    top: 92px;
  }

  .site-header.is-scrolled .mobile-menu {
    top: 58px;
  }

  .hero {
    width: calc(100% - 32px);
    padding: 61px 0 76px;
    gap: 58px;
  }

  .eyebrow {
    margin-bottom: 18px;
    gap: 9px;
    font-size: 0.59rem;
    letter-spacing: 0.15em;
  }

  .eyebrow > span {
    width: 25px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 12.8vw, 3.65rem);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 0.86;
  }

  .hero-title-line {
    font-size: 0.82em;
    font-weight: 600;
    letter-spacing: -0.03em;
  }

  .hero-title-accent {
    margin-top: 0.18em;
    font-size: 0.74em;
    letter-spacing: -0.025em;
  }

  .hero-intro {
    margin-top: 25px;
    font-size: 0.95rem;
    line-height: 1.72;
  }

  .hero-actions {
    margin-top: 30px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

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

  .hero-actions .text-link {
    width: fit-content;
    margin: 0 auto;
  }

  .hero-trust {
    margin-top: 45px;
    padding-top: 21px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-trust strong {
    font-size: 0.98rem;
  }

  .hero-trust span {
    font-size: 0.59rem;
    line-height: 1.45;
  }

  .hero-visual {
    width: calc(100% - 28px);
  }

  .hero-photo-frame {
    height: 136vw;
    min-height: 500px;
    max-height: 650px;
    border-radius: 190px 190px 18px 18px;
  }

  .hero-stamp {
    top: 6%;
    left: -12px;
    width: 86px;
    height: 86px;
  }

  .hero-stamp span {
    font-size: 0.36rem;
  }

  .hero-stamp span:first-child {
    top: 14px;
  }

  .hero-stamp span:last-child {
    bottom: 12px;
  }

  .hero-stamp b {
    font-size: 1.75rem;
  }

  .hero-note {
    right: -14px;
    bottom: -28px;
    width: 78%;
    padding: 17px 19px;
  }

  .hero-note strong {
    font-size: 0.94rem;
  }

  .manifesto {
    min-height: 275px;
    padding: 66px 22px;
  }

  .manifesto p {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
  }

  .manifesto-mark {
    display: none;
  }

  .section {
    width: calc(100% - 32px);
    padding: 84px 0;
  }

  .section-heading,
  .gallery-title {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .atelier-copy h2,
  .gallery-title h2,
  .process-heading h2,
  .brussels-copy h2 {
    font-size: clamp(2.7rem, 12vw, 3.45rem);
    font-weight: 600;
    line-height: 0.92;
  }

  .gallery-title h2 em,
  .process-heading h2 em {
    display: block;
    font-size: 0.8em;
    white-space: nowrap;
  }

  .section-heading > p {
    font-size: 0.9rem;
    line-height: 1.72;
  }

  .creation-grid {
    display: flex;
    margin-right: -16px;
    padding-right: 16px;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

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

  .creation-card,
  .creation-card-large,
  .creation-card:nth-child(3),
  .creation-card-wide {
    width: 84vw;
    min-width: 84vw;
    height: 520px;
    scroll-snap-align: start;
  }

  .creation-overlay {
    right: 18px;
    bottom: 18px;
    left: 18px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .creation-overlay h3 {
    font-size: 1.6rem;
  }

  .creation-overlay button {
    width: 43px;
    height: 43px;
  }

  .wedding {
    padding: 84px 16px;
    gap: 72px;
  }

  .wedding-media {
    width: 100%;
    min-height: 590px;
  }

  .wedding-main {
    width: 86%;
    height: 570px;
  }

  .wedding-inset {
    width: 48%;
    height: 285px;
    border-width: 7px;
  }

  .wedding-copy h2,
  .order-intro h2 {
    font-size: clamp(3.1rem, 14.5vw, 4.65rem);
  }

  .wedding-copy > p:not(.eyebrow) {
    margin: 26px 0;
    font-size: 0.9rem;
  }

  .atelier {
    display: flex;
    flex-direction: column;
    gap: 52px;
  }

  .atelier-copy,
  .atelier-portrait,
  .atelier-detail {
    width: 100%;
  }

  .atelier-copy .atelier-lead {
    font-size: 1.25rem;
  }

  .atelier-portrait {
    height: 590px;
    border-radius: 180px 180px 0 0;
  }

  .atelier-detail {
    padding-bottom: 0;
  }

  .atelier-detail-card {
    min-height: 330px;
  }

  .wedding-inset-note {
    padding: 20px 16px;
  }

  .wedding-inset-note strong {
    font-size: clamp(1.35rem, 7vw, 1.9rem);
  }

  .gallery-section {
    padding: 84px 16px;
  }

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

  .gallery-item,
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3) {
    grid-column: 1 / -1;
    min-height: 230px;
  }

  .gallery-tall {
    height: 430px;
    grid-row: auto;
  }

  .gallery > .gallery-wide {
    grid-column: 1 / -1 !important;
    min-height: 310px;
    grid-row: auto;
  }

  .gallery-story {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .gallery-story h3 {
    padding-right: 28px;
  }

  .gallery-card {
    padding: 24px;
  }

  .gallery-item figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    font-size: 1rem;
  }

  .process {
    gap: 38px;
  }

  .process-list article {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 26px 0;
  }

  .process-list h3 {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.08;
  }

  .process-list p {
    color: #4f5e56;
    font-size: 0.94rem;
    font-weight: 500;
    line-height: 1.65;
  }

  .order-section {
    padding: 84px 16px;
    gap: 46px;
  }

  .order-intro > p:not(.eyebrow) {
    margin-top: 24px;
    font-size: 0.9rem;
  }

  .order-promise {
    margin-top: 32px;
  }

  .order-form {
    padding: 24px 18px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .field-group,
  .field-full,
  .form-flow,
  .submit-button,
  .form-note {
    grid-column: 1;
  }

  .form-flow {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .form-flow span {
    font-size: 0.72rem;
  }

  .field-group input,
  .field-group select,
  .field-group textarea {
    font-size: 16px;
  }

  .field-group input[type="date"] {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    inline-size: 100% !important;
  }

  .brussels {
    gap: 44px;
  }

  .map-card {
    height: 420px;
  }

  .site-footer {
    padding: 62px 20px 28px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-bottom: 46px;
  }

  .footer-instagram {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 90;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 10px;
    min-height: 58px;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    border-radius: 999px;
    background: var(--forest);
    color: var(--white);
    box-shadow: 0 12px 35px rgba(24, 49, 39, 0.3);
    font-family: var(--display);
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
  }

  .dialog-card {
    padding: 48px 22px 28px;
  }

  .dialog-close {
    top: 12px;
    right: 12px;
  }

  .message-dialog h2 {
    padding-right: 0;
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .dialog-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  .announcement-track {
    font-size: 0.54rem;
  }

  .brand-subtitle {
    max-width: 132px;
    font-size: 0.32rem;
  }

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

  .hero-trust div {
    padding: 4px 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
  }

  .creation-card,
  .creation-card-large,
  .creation-card:nth-child(3),
  .creation-card-wide {
    width: 88vw;
    min-width: 88vw;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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