/*
 * Antoine 1745 — static presentation layer
 * The palette and historical chapter colours are derived from the House brochure:
 * charcoal / gold, sage (1745), oxblood (1760), and opera blue (1885).
 */

:root {
  --ink: #111315;
  --ink-soft: #1b1f21;
  --ink-muted: #3f4548;
  --paper: #fbf8f2;
  --ivory: #f1ece2;
  --white: #ffffff;
  --gold: #c9a45c;
  --gold-bright: #e0c27a;
  --gold-deep: #8a682f;
  --sage: #5f9c84;
  --sage-soft: #dcebe4;
  --oxblood: #720b0b;
  --oxblood-soft: #ead8d5;
  --opera: #182d83;
  --opera-soft: #dce2f2;
  --line: rgba(17, 19, 21, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 26px 80px rgba(16, 18, 20, 0.16);
  --shadow-small: 0 16px 42px rgba(16, 18, 20, 0.11);
  --shell: min(1280px, calc(100vw - 64px));
  --narrow: min(780px, calc(100vw - 48px));
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, "Baskerville", "Times New Roman", serif;
  --text: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--text);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:hover {
  text-decoration-color: var(--gold);
}

address {
  font-style: normal;
}

::selection {
  color: var(--ink);
  background: var(--gold-bright);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--gold-bright);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.narrow {
  width: var(--narrow);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(82px, 9vw, 144px);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 7vw, 7.8rem);
  line-height: 0.93;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.5vw, 5.2rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 2.35vw, 2.65rem);
  line-height: 1.08;
}

p:last-child {
  margin-bottom: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(42px, 5vw, 76px);
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

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

.section-heading.heading-row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.section-heading.heading-row > div {
  max-width: 760px;
}

.section-heading.heading-row h2 {
  margin-bottom: 16px;
}

.lead {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.85rem);
  line-height: 1.3;
}

.dropcap::first-letter {
  float: left;
  margin: 0.05em 0.11em 0 0;
  color: var(--gold-deep);
  font-family: var(--display);
  font-size: 4.6em;
  line-height: 0.72;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
}

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

.button-primary {
  color: var(--ink);
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.button-primary:hover {
  color: var(--white);
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
}

.button-ghost:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button-ghost-dark {
  color: var(--ink);
  border-color: rgba(17, 19, 21, 0.48);
}

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

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

.button-light:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 180ms var(--ease);
}

.text-link:hover span {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  transition: color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-header.is-sticky {
  position: fixed;
  color: var(--ink);
  background: rgba(251, 248, 242, 0.96);
  box-shadow: 0 8px 34px rgba(17, 19, 21, 0.1);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.brand {
  display: flex;
  width: 226px;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand img {
  width: 135px;
  height: auto;
}

.brand span {
  padding-left: 13px;
  border-left: 1px solid currentColor;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.site-header.is-sticky .brand img {
  filter: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 46px);
}

.site-nav a {
  position: relative;
  padding-block: 38px 35px;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav small {
  position: absolute;
  top: 20px;
  right: -8px;
  color: var(--gold-bright);
  font-size: 0.48rem;
  letter-spacing: 0.1em;
}

.site-nav .language-link {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.site-nav .language-link::after {
  display: none;
}

.language-switcher {
  position: relative;
  flex: 0 0 auto;
}

.language-switcher > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.language-switcher::after {
  position: absolute;
  top: 50%;
  right: 13px;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}

.language-switcher select {
  width: 142px;
  min-height: 42px;
  padding: 8px 34px 8px 13px;
  border: 1px solid var(--gold);
  border-radius: 0;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  appearance: none;
}

[dir="rtl"] .language-switcher::after {
  right: auto;
  left: 13px;
}

[dir="rtl"] .language-switcher select {
  padding-right: 13px;
  padding-left: 34px;
  letter-spacing: 0;
}

[dir="rtl"] .eyebrow,
[dir="rtl"] .site-nav a,
[dir="rtl"] .button,
[dir="rtl"] .footer-label {
  letter-spacing: 0;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 13px;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle b {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

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

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

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

/* Home hero */
.hero {
  position: relative;
  overflow: hidden;
}

.home-hero {
  min-height: 850px;
  padding: 174px 0 98px;
  color: var(--white);
  background:
    radial-gradient(circle at 13% 19%, rgba(201, 164, 92, 0.16), transparent 30%),
    linear-gradient(120deg, var(--ink) 0%, #161a1c 60%, #22282a 100%);
}

.home-hero::before,
.home-hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.home-hero::before {
  top: 96px;
  right: -80px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(201, 164, 92, 0.18);
  border-radius: 50%;
}

.home-hero::after {
  bottom: -110px;
  left: -100px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(201, 164, 92, 0.11);
  transform: rotate(45deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
  grid-template-columns: minmax(0, 1.05fr) minmax(370px, 0.78fr);
}

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

.hero-copy .eyebrow {
  color: var(--gold-bright);
}

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

.hero-lead {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.79);
  font-family: var(--display);
  font-size: clamp(1.28rem, 2vw, 1.75rem);
  line-height: 1.48;
}

.hero-address {
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.framed-image {
  margin: 0;
}

.hero-frame {
  position: relative;
  margin: 24px 24px 0 0;
}

.hero-frame::before {
  position: absolute;
  z-index: -1;
  top: -24px;
  right: -24px;
  bottom: 32px;
  left: 32px;
  border: 1px solid rgba(201, 164, 92, 0.5);
  content: "";
}

.hero-frame img {
  width: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
  box-shadow: var(--shadow);
  filter: saturate(0.78) contrast(1.03);
}

.hero-frame figcaption {
  position: absolute;
  right: -18px;
  bottom: 0;
  padding: 16px 20px;
  color: var(--ink);
  background: var(--gold-bright);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-seal {
  position: absolute;
  z-index: 3;
  bottom: 26px;
  left: -48px;
  display: grid;
  width: 128px;
  height: 128px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--white);
  background: rgba(17, 19, 21, 0.9);
  text-align: center;
  backdrop-filter: blur(8px);
}

.hero-seal::before,
.hero-seal::after {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(201, 164, 92, 0.55);
  border-radius: 50%;
  content: "";
}

.hero-seal span {
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-seal strong {
  position: relative;
  z-index: 1;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.milestone-strip {
  color: var(--white);
  background: var(--oxblood);
}

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

.milestones a {
  display: flex;
  min-height: 122px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
  transition: background 220ms ease;
}

.milestones a:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.milestones a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.milestones strong {
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

.milestones span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Editorial intro */
.intro-section {
  overflow: hidden;
  background: var(--paper);
}

.intro-section::after {
  position: absolute;
  top: 40px;
  right: -4vw;
  color: rgba(17, 19, 21, 0.035);
  content: "1745";
  font-family: var(--display);
  font-size: clamp(12rem, 28vw, 32rem);
  font-style: italic;
  line-height: 1;
  pointer-events: none;
}

.editorial-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(44px, 8vw, 130px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
}

.editorial-copy {
  max-width: 660px;
  padding-top: 10px;
  font-size: 1.04rem;
}

.editorial-copy p {
  margin-bottom: 24px;
}

.editorial-copy .dropcap {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.58rem);
  line-height: 1.55;
}

.editorial-copy .text-link {
  margin-top: 12px;
}

/* Collections */
.collections-section {
  color: var(--white);
  background: var(--ink-soft);
}

.collections-section .eyebrow {
  color: var(--gold-bright);
}

.collection-grid {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
  grid-template-columns: repeat(4, 1fr);
}

.collection-card {
  min-width: 0;
  background: var(--ink-soft);
}

.collection-image {
  position: relative;
  overflow: hidden;
}

.collection-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 50%, rgba(17, 19, 21, 0.35));
  pointer-events: none;
}

.collection-image img {
  width: 100%;
  aspect-ratio: 0.76;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.03);
  transition: transform 750ms var(--ease), filter 450ms ease;
}

.collection-card:hover img {
  filter: saturate(0.95) contrast(1.04);
  transform: scale(1.035);
}

.collection-content {
  min-height: 250px;
  padding: 32px 26px 38px;
  border-top: 3px solid transparent;
  transition: border-color 240ms ease, background 240ms ease;
}

.collection-card:hover .collection-content {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.025);
}

.collection-content > span {
  display: block;
  margin-bottom: 25px;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 0.98rem;
  font-style: italic;
}

.collection-content h3 {
  font-size: clamp(1.65rem, 2.2vw, 2.45rem);
}

.collection-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}

/* History feature */
.history-feature {
  color: var(--white);
  background: var(--sage);
}

.history-feature-grid {
  display: grid;
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.8fr);
}

.history-picture {
  position: relative;
}

.history-picture::before {
  position: absolute;
  z-index: 0;
  top: -28px;
  right: 42px;
  bottom: 32px;
  left: -28px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  content: "";
}

.history-picture img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
  box-shadow: var(--shadow-small);
  filter: grayscale(1) sepia(0.12) contrast(1.08);
}

.history-picture span {
  position: absolute;
  z-index: 2;
  right: -26px;
  bottom: -26px;
  padding: 19px 24px;
  color: var(--ink);
  background: var(--white);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.history-feature-copy .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.history-feature-copy h2 {
  font-size: clamp(3rem, 6vw, 6.8rem);
  font-style: italic;
}

.history-feature-copy > p:not(.eyebrow) {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--display);
  font-size: 1.32rem;
  line-height: 1.5;
}

.history-feature-copy .button {
  margin-top: 26px;
}

/* Press */
.press-section {
  background: var(--ivory);
}

.quote-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.quote-card {
  min-height: 320px;
  margin: 0;
  padding: clamp(32px, 4vw, 56px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote-card::before {
  display: block;
  margin-bottom: 28px;
  color: var(--gold-deep);
  content: "“";
  font-family: var(--display);
  font-size: 5rem;
  line-height: 0.55;
}

.quote-card p {
  min-height: 145px;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.86rem);
  font-style: italic;
  line-height: 1.35;
}

.quote-card cite {
  color: var(--ink-muted);
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Service */
.service-section {
  overflow: hidden;
  background: var(--paper);
}

.service-grid {
  display: grid;
  align-items: center;
  gap: clamp(60px, 10vw, 155px);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.service-copy > p:not(.eyebrow) {
  max-width: 590px;
}

.feature-list {
  margin: 38px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 17px 0 17px 34px;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1.12rem;
}

.feature-list li::before {
  position: absolute;
  top: 50%;
  left: 2px;
  width: 13px;
  height: 13px;
  border: 1px solid var(--gold-deep);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.service-images {
  position: relative;
  min-height: 590px;
}

.service-images::before {
  position: absolute;
  top: 44px;
  right: 0;
  width: 76%;
  height: 82%;
  content: "";
  background: var(--opera-soft);
}

.service-image-wide {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 76%;
  aspect-ratio: 0.92;
  object-fit: cover;
  box-shadow: var(--shadow-small);
}

.service-image-small {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 44%;
  aspect-ratio: 0.78;
  object-fit: cover;
  border: 10px solid var(--paper);
}

/* Instagram */
.instagram-section {
  color: var(--white);
  background: var(--ink);
}

.instagram-section .eyebrow {
  color: var(--gold-bright);
}

.instagram-section .heading-row > div > p:last-child {
  color: rgba(255, 255, 255, 0.62);
}

.instagram-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(3, 1fr);
}

.instagram-card {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #202426;
  text-decoration: none;
}

.instagram-image {
  display: block;
  overflow: hidden;
}

.instagram-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(0.73) contrast(1.03);
  transition: filter 300ms ease, transform 650ms var(--ease);
}

.instagram-card:hover img {
  filter: saturate(1) contrast(1.03);
  transform: scale(1.04);
}

.instagram-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 46px 22px 20px;
  color: transparent;
  background: linear-gradient(180deg, transparent, rgba(17, 19, 21, 0.88));
  font-size: 0.76rem;
  line-height: 1.45;
  transform: translateY(25%);
  transition: color 250ms ease, transform 250ms ease;
}

.instagram-card:hover .instagram-caption,
.instagram-card:focus-visible .instagram-caption {
  color: var(--white);
  transform: translateY(0);
}

/* Visit feature */
.visit-feature {
  background: var(--paper);
}

.visit-feature-grid {
  display: grid;
  min-height: 630px;
  align-items: stretch;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.visit-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 100px);
  color: var(--white);
  background: var(--opera);
}

.visit-copy .eyebrow {
  color: var(--gold-bright);
}

.visit-copy > p:not(.eyebrow, .hours) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.75);
}

.visit-copy .hours {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--display);
  font-size: 1.15rem;
}

.visit-photo {
  overflow: hidden;
}

.visit-photo img {
  width: 100%;
  height: 100%;
  min-height: 630px;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.03);
}

/* Page heroes */
.page-hero {
  position: relative;
  display: grid;
  min-height: clamp(620px, 74vh, 800px);
  place-items: end start;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

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

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

.page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 19, 21, 0.91) 0%, rgba(17, 19, 21, 0.5) 48%, rgba(17, 19, 21, 0.18) 100%),
    linear-gradient(0deg, rgba(17, 19, 21, 0.62) 0%, transparent 48%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 170px;
  padding-bottom: clamp(76px, 10vw, 130px);
}

.page-hero-content .eyebrow {
  color: var(--gold-bright);
}

.page-hero-content h1 {
  max-width: 1000px;
  margin-bottom: 0;
  font-size: clamp(3.4rem, 7vw, 7.7rem);
}

.history-hero .page-hero-image img {
  filter: grayscale(1) sepia(0.08) contrast(1.08);
}

.visit-hero .page-hero-image img {
  object-position: center 43%;
  filter: saturate(0.7) contrast(1.02);
}

.shop-hero .page-hero-image img {
  object-position: center 37%;
  filter: saturate(0.76) contrast(1.05);
}

/* History page */
.history-intro {
  background: var(--paper);
}

.timeline-section {
  padding-bottom: clamp(84px, 9vw, 140px);
  background: var(--paper);
}

.timeline {
  position: relative;
}

.timeline::before {
  position: absolute;
  top: 40px;
  bottom: 70px;
  left: 50%;
  width: 1px;
  content: "";
  background: var(--line);
}

.timeline-chapter {
  --chapter-color: var(--gold);
  position: relative;
  display: grid;
  min-height: 590px;
  align-items: center;
  gap: clamp(66px, 10vw, 150px);
  padding-block: clamp(70px, 8vw, 115px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.timeline-chapter + .timeline-chapter {
  border-top: 1px solid var(--line);
}

.timeline-chapter.color-sage { --chapter-color: var(--sage); }
.timeline-chapter.color-oxblood { --chapter-color: var(--oxblood); }
.timeline-chapter.color-opera { --chapter-color: var(--opera); }
.timeline-chapter.color-gold { --chapter-color: var(--gold-deep); }

.timeline-marker {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 10px solid var(--paper);
  border-radius: 50%;
  color: var(--white);
  background: var(--chapter-color);
  box-shadow: 0 0 0 1px var(--line);
  transform: translate(-50%, -50%);
}

.timeline-marker span {
  font-family: var(--display);
  font-size: 1.16rem;
  font-style: italic;
}

.timeline-image {
  position: relative;
}

.timeline-image::before {
  position: absolute;
  top: -18px;
  right: 22px;
  bottom: 28px;
  left: -18px;
  border: 1px solid var(--chapter-color);
  content: "";
  opacity: 0.45;
}

.timeline-image img {
  position: relative;
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;
  box-shadow: var(--shadow-small);
}

.timeline-copy {
  max-width: 560px;
  padding-inline: 16px;
}

.timeline-copy .chapter-index {
  margin-bottom: 26px;
  color: var(--chapter-color);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.timeline-copy h2 {
  margin-bottom: 26px;
  font-size: clamp(2.8rem, 5vw, 5.8rem);
}

.timeline-copy p {
  margin-bottom: 20px;
}

.timeline-chapter:nth-child(even) .timeline-image {
  grid-column: 2;
}

.timeline-chapter:nth-child(even) .timeline-copy {
  grid-column: 1;
  grid-row: 1;
}

.historical-object-section {
  color: var(--white);
  background: var(--oxblood);
}

.object-grid {
  display: grid;
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.object-copy .eyebrow {
  color: var(--gold-bright);
}

.object-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
}

.object-gallery {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr 1fr;
}

.object-gallery img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.object-gallery img:nth-child(2) {
  margin-top: 70px;
}

.history-cta {
  background: var(--ivory);
}

.cta-panel {
  display: grid;
  align-items: center;
  gap: 46px;
  padding: clamp(34px, 5vw, 68px);
  border: 1px solid var(--line);
  grid-template-columns: 180px 1fr auto;
}

.cta-panel > img {
  width: 170px;
}

.cta-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 4.2rem);
}

/* Visit page */
.visit-details {
  background: var(--paper);
}

.visit-details-grid {
  display: grid;
  align-items: stretch;
  gap: 0;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.visit-information {
  padding: clamp(42px, 6vw, 80px);
  border: 1px solid var(--line);
  background: var(--white);
}

.visit-information h2 {
  margin-bottom: 4px;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
}

.large-address {
  margin-bottom: 40px;
  color: var(--ink-muted);
  font-family: var(--display);
  font-size: 1.5rem;
}

.contact-list {
  margin: 0 0 40px;
  border-top: 1px solid var(--line);
}

.contact-list > div {
  display: grid;
  gap: 24px;
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 120px 1fr;
}

.contact-list dt {
  color: var(--ink-muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  font-family: var(--display);
  font-size: 1.05rem;
}

.map-panel {
  height: 100%;
  min-height: 680px;
  background: var(--opera);
}

.map-placeholder {
  position: relative;
  display: flex;
  height: 100%;
  min-height: 680px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 52px;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    var(--opera);
  background-size: 46px 46px;
}

.map-placeholder::before,
.map-placeholder::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.map-placeholder::before {
  width: 430px;
  height: 430px;
}

.map-placeholder::after {
  width: 520px;
  height: 520px;
}

.map-monogram {
  position: relative;
  z-index: 1;
  display: grid;
  width: 112px;
  height: 112px;
  margin-bottom: 26px;
  place-items: center;
  border: 1px solid var(--gold-bright);
  border-radius: 50% 50% 50% 0;
  color: var(--gold-bright);
  background: rgba(17, 19, 21, 0.12);
  font-family: var(--display);
  font-size: 0;
  transform: rotate(-45deg);
}

.map-monogram::after {
  content: "A";
  font-family: var(--display);
  font-size: 4.3rem;
  font-style: italic;
  line-height: 1;
  transform: rotate(45deg);
}

.map-placeholder p,
.map-placeholder button,
.map-placeholder small {
  position: relative;
  z-index: 2;
}

.map-placeholder p {
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1.35;
}

.map-placeholder small {
  display: block;
  max-width: 310px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 680px;
  border: 0;
  filter: grayscale(0.86) contrast(1.04);
}

.contact-section {
  background: var(--ivory);
}

.contact-grid {
  display: grid;
  align-items: start;
  gap: clamp(56px, 10vw, 150px);
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}

.contact-intro {
  position: sticky;
  top: 140px;
}

.contact-intro h2 {
  font-size: clamp(2.5rem, 4.4vw, 4.8rem);
}

.contact-form {
  display: grid;
  gap: 22px;
  padding: clamp(32px, 5vw, 62px);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.contact-form label > span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 53px;
  padding: 13px 14px;
  border: 1px solid rgba(17, 19, 21, 0.28);
  border-radius: 0;
  outline: none;
  background: var(--paper);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(201, 164, 92, 0.17);
}

.contact-form .consent {
  display: grid;
  align-items: start;
  gap: 12px;
  grid-template-columns: 20px 1fr;
}

.contact-form .consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.contact-form .consent span {
  margin: 0;
  font-size: 0.77rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.contact-form .button {
  justify-self: start;
}

.form-status {
  display: none;
  padding: 13px 16px;
  border: 1px solid transparent;
  font-size: 0.86rem;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #214b37;
  background: #e2f1e9;
  border-color: #83b89c;
}

.form-status.is-error {
  color: #6b1111;
  background: #f6e4e1;
  border-color: #cf8a81;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

/* Shop */
.shop-intro {
  background: var(--paper);
}

.shopify-section {
  padding-top: 0;
  background: var(--paper);
}

.shopify-slot {
  min-height: 450px;
  border: 1px solid var(--line);
  background: var(--ivory);
}

.shop-placeholder {
  display: grid;
  min-height: 450px;
  padding: 60px;
  place-content: center;
  text-align: center;
}

.shop-placeholder > span {
  display: inline-block;
  justify-self: center;
  margin-bottom: 25px;
  padding: 7px 14px;
  border: 1px solid var(--gold-deep);
  color: var(--gold-deep);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.shop-placeholder h2 {
  max-width: 750px;
  margin-inline: auto;
  font-size: clamp(2.2rem, 4vw, 4.5rem);
}

.shop-placeholder p {
  max-width: 650px;
  margin-inline: auto;
  color: var(--ink-muted);
}

.selected-objects {
  color: var(--white);
  background: var(--ink);
}

.selected-objects .eyebrow {
  color: var(--gold-bright);
}

.object-card-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.object-card-grid article {
  position: relative;
  overflow: hidden;
}

.object-card-grid img {
  width: 100%;
  aspect-ratio: 0.84;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.04);
}

.object-card-grid h3 {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 50px 26px 24px;
  background: linear-gradient(transparent, rgba(17, 19, 21, 0.88));
  font-size: 2rem;
}

/* Legal and 404 */
.page-legal .site-header,
.page-404 .site-header {
  color: var(--ink);
  border-bottom-color: var(--line);
}

.legal-page,
.not-found {
  min-height: 72vh;
  padding-top: 190px;
  background: var(--paper);
}

.legal-page h1,
.not-found h1 {
  color: var(--ink);
  font-size: clamp(3rem, 6vw, 6.5rem);
}

.legal-page h2 {
  margin-top: 48px;
  margin-bottom: 12px;
  font-size: 2rem;
}

.legal-page a {
  color: var(--gold-deep);
}

.legal-note {
  margin-block: 34px 42px;
  padding: 18px 20px;
  border-left: 3px solid var(--oxblood);
  background: var(--oxblood-soft);
}

.not-found .button {
  margin-top: 25px;
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.73);
  background: #0b0d0e;
}

.footer-grid {
  display: grid;
  gap: 54px;
  padding-block: 84px 70px;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 1.5fr repeat(3, 1fr);
}

.footer-brand img {
  width: 190px;
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 350px;
}

.footer-label {
  margin-bottom: 18px;
  color: var(--gold-bright);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 24px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.footer-bottom p {
  margin: 0;
}

/* Progressive motion */
.reveal {
  opacity: 1;
  transform: none;
}

.reveal.reveal-pending {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
  transition-delay: var(--delay, 0ms);
}

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

.reveal-delay {
  --delay: 130ms;
}

/* Tablet */
@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 46px, 980px);
  }

  .header-inner {
    min-height: 86px;
  }

  .brand {
    width: 190px;
  }

  .brand img {
    width: 115px;
  }

  .site-nav {
    gap: 21px;
  }

  .site-nav a {
    padding-block: 34px 31px;
    font-size: 0.62rem;
  }

  .site-nav a::after {
    bottom: 24px;
  }

  .home-hero {
    min-height: auto;
    padding-top: 158px;
  }

  .hero-grid {
    gap: 58px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  }

  .hero-seal {
    left: -28px;
    width: 112px;
    height: 112px;
  }

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

  .history-feature-grid,
  .service-grid,
  .object-grid,
  .contact-grid {
    gap: 70px;
  }

  .quote-card {
    min-height: 350px;
  }

  .timeline-chapter {
    gap: 100px;
  }

  .cta-panel {
    grid-template-columns: 150px 1fr;
  }

  .cta-panel .button {
    grid-column: 2;
    justify-self: start;
  }

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

  .footer-grid > div:last-child {
    grid-column: 2;
  }
}

/* Mobile navigation and single-column layouts */
@media (max-width: 820px) {
  :root {
    --shell: calc(100vw - 36px);
    --narrow: calc(100vw - 36px);
  }

  html {
    scroll-padding-top: 82px;
  }

  .section {
    padding-block: 78px;
  }

  .header-inner {
    min-height: 82px;
  }

  .brand {
    width: 178px;
  }

  .brand img {
    width: 108px;
  }

  .brand span {
    font-size: 0.49rem;
  }

  .menu-toggle {
    display: block;
  }

  .site-header.is-sticky {
    background: var(--paper);
    backdrop-filter: none;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: 82px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 24px 18px 42px;
    color: var(--white);
    background: rgba(17, 19, 21, 0.985);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 22px 10px;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--display);
    font-size: 2.1rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav small {
    position: static;
    margin-left: 10px;
    font-family: var(--text);
    font-size: 0.52rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .site-nav .language-link {
    width: 52px;
    height: 52px;
    margin-top: 28px;
    padding: 0;
    border-bottom: 1px solid currentColor;
    font-family: var(--text);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .language-switcher {
    margin-top: 28px;
  }

  .language-switcher select {
    width: 100%;
    min-height: 52px;
    font-size: 0.86rem;
  }

  [dir="rtl"] .site-nav small {
    margin-right: 10px;
    margin-left: 0;
  }

  .site-header.is-sticky .site-nav {
    color: var(--white);
  }

  .hero-grid,
  .editorial-grid,
  .history-feature-grid,
  .service-grid,
  .visit-feature-grid,
  .object-grid,
  .visit-details-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    padding: 142px 0 84px;
  }

  .hero-grid {
    gap: 66px;
  }

  .hero-copy h1 {
    font-size: clamp(3.7rem, 15vw, 6.4rem);
  }

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

  .hero-frame {
    margin-left: 20px;
  }

  .hero-seal {
    bottom: 20px;
    left: -22px;
  }

  .milestones a {
    min-height: 104px;
    flex-direction: column;
    gap: 7px;
  }

  .milestones strong {
    font-size: 2rem;
  }

  .milestones span {
    font-size: 0.52rem;
  }

  .editorial-grid {
    gap: 24px;
  }

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

  .history-feature-grid {
    gap: 70px;
  }

  .history-picture {
    margin-left: 18px;
  }

  .history-feature-copy {
    padding-inline: 12px;
  }

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

  .quote-card {
    min-height: auto;
  }

  .quote-card p {
    min-height: auto;
  }

  .service-copy {
    max-width: 680px;
  }

  .service-images {
    min-height: 610px;
  }

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

  .section-heading.heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .visit-photo img {
    min-height: 520px;
  }

  .page-hero {
    min-height: 650px;
  }

  .page-hero-overlay {
    background: linear-gradient(0deg, rgba(17, 19, 21, 0.9), rgba(17, 19, 21, 0.3) 75%);
  }

  .timeline::before {
    left: 28px;
  }

  .timeline-chapter {
    min-height: auto;
    gap: 36px;
    padding: 82px 0 82px 78px;
    grid-template-columns: 1fr;
  }

  .timeline-marker {
    top: 96px;
    left: 28px;
    width: 62px;
    height: 62px;
    border-width: 7px;
    transform: translate(-50%, 0);
  }

  .timeline-marker span {
    font-size: 0.82rem;
  }

  .timeline-chapter:nth-child(even) .timeline-image,
  .timeline-chapter:nth-child(even) .timeline-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .timeline-image,
  .timeline-copy {
    max-width: 620px;
  }

  .timeline-copy {
    padding: 0;
  }

  .object-grid {
    gap: 54px;
  }

  .cta-panel {
    text-align: center;
    grid-template-columns: 1fr;
  }

  .cta-panel > img {
    justify-self: center;
  }

  .cta-panel .button {
    grid-column: 1;
    justify-self: center;
  }

  .visit-information {
    border-bottom: 0;
  }

  .map-panel,
  .map-placeholder,
  .map-panel iframe {
    min-height: 540px;
  }

  .contact-intro {
    position: static;
  }

  .object-card-grid {
    gap: 15px;
  }

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

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

  .footer-grid > div:last-child {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  h2 {
    font-size: clamp(2.4rem, 12vw, 3.7rem);
  }

  .section {
    padding-block: 68px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-copy .button-row {
    max-width: 340px;
  }

  .hero-frame figcaption {
    right: -8px;
    padding: 13px 14px;
  }

  .hero-seal {
    width: 98px;
    height: 98px;
  }

  .hero-seal strong {
    font-size: 1.55rem;
  }

  .milestones {
    width: 100%;
  }

  .milestones a {
    min-width: 0;
    padding-inline: 5px;
  }

  .milestones span {
    overflow-wrap: anywhere;
    text-align: center;
  }

  .collection-grid,
  .instagram-grid,
  .object-card-grid {
    grid-template-columns: 1fr;
  }

  .collection-image img {
    aspect-ratio: 1.05;
  }

  .collection-content {
    min-height: auto;
  }

  .history-picture span {
    right: -8px;
  }

  .service-images {
    min-height: 480px;
  }

  .service-image-wide {
    width: 83%;
  }

  .service-image-small {
    width: 48%;
  }

  .instagram-caption {
    color: var(--white);
    transform: none;
  }

  .visit-copy {
    padding: 46px 30px;
  }

  .visit-photo img {
    min-height: 420px;
  }

  .page-hero {
    min-height: 580px;
  }

  .page-hero-content {
    padding-bottom: 66px;
  }

  .timeline-chapter {
    padding-left: 66px;
  }

  .timeline-image::before {
    top: -12px;
    right: 14px;
    bottom: 18px;
    left: -12px;
  }

  .object-gallery {
    gap: 12px;
  }

  .object-gallery img:nth-child(2) {
    margin-top: 35px;
  }

  .visit-information,
  .contact-form,
  .shop-placeholder {
    padding: 30px 22px;
  }

  .contact-list > div {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .map-panel,
  .map-placeholder,
  .map-panel iframe {
    min-height: 470px;
  }

  .map-placeholder {
    padding: 28px;
  }

  .map-monogram {
    width: 90px;
    height: 90px;
    font-size: 3.3rem;
  }

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

  .footer-brand,
  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

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

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

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

@media print {
  .site-header,
  .site-footer,
  .button,
  .menu-toggle,
  .instagram-section,
  .contact-form {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .page-hero {
    min-height: auto;
    padding: 80px 0 30px;
    color: #000;
  }

  .page-hero-image,
  .page-hero-overlay {
    display: none;
  }
}
