:root {
  --ink: #172427;
  --ink-soft: #3f4d4f;
  --ink-muted: #687476;
  --night: #0d1d21;
  --navy: #08264e;
  --paper: #fbf8f1;
  --paper-deep: #f3ede2;
  --white: #ffffff;
  --line: #ded5c6;
  --line-dark: rgba(255, 255, 255, 0.16);
  --gold: #aa7d49;
  --gold-dark: #805a31;
  --gold-light: #e8d6bd;
  --food: #964d2f;
  --success: #1f7a58;
  --shadow-sm: 0 14px 34px -28px rgba(23, 36, 39, 0.48);
  --shadow-md: 0 30px 70px -42px rgba(23, 36, 39, 0.5);
  --shadow-lg: 0 42px 100px -44px rgba(23, 36, 39, 0.58);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1120px;
  --header-height: 78px;
  --font-body: Inter, "Segoe UI Variable Text", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Avenir Next", Avenir, Inter, "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

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

body.menu-open {
  overflow: hidden;
}

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

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

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
figure {
  margin-top: 0;
}

h1,
h2,
h3,
.serif {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.028em;
}

h1 {
  max-width: 18.5ch;
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 3.25vw, 3.55rem);
  line-height: 1.1;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.72rem, 2.45vw, 2.35rem);
  line-height: 1.14;
}

h3 {
  font-size: clamp(1.14rem, 1.45vw, 1.4rem);
  line-height: 1.24;
}

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

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

:focus-visible {
  outline: 3px solid #cf8f43;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 5000;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--night);
  color: var(--white);
  padding: 11px 18px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease;
}

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

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(64px, 7vw, 96px) 0;
}

.section-sm {
  padding: clamp(50px, 6vw, 76px) 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.6fr);
  gap: 32px 70px;
  align-items: end;
  margin-bottom: clamp(32px, 4.5vw, 48px);
}

.section-head > :last-child {
  justify-self: end;
  max-width: 560px;
}

.section-head p {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
}

.eyebrow {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.19em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

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

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--gold-dark);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.text-link::after {
  content: "\2197";
  font-size: 0.92em;
}

.button {
  display: inline-flex;
  min-height: 52px;
  gap: 10px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 24px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 820;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.button-primary {
  background: linear-gradient(135deg, #bb8b54, #966936);
  box-shadow: 0 16px 38px -20px rgba(128, 90, 49, 0.88);
  color: var(--white);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
}

.button-dark {
  background: var(--night);
  color: var(--white);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

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

  .button-primary:hover {
    box-shadow: 0 22px 44px -20px rgba(128, 90, 49, 0.9);
  }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(222, 213, 198, 0.78);
  background: rgba(251, 248, 241, 0.91);
  backdrop-filter: blur(22px) saturate(1.2);
}

.nav-shell {
  display: flex;
  min-height: var(--header-height);
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 11px;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(170, 125, 73, 0.46);
  border-radius: 50%;
  background: var(--white);
  color: var(--gold-dark);
  font-family: Georgia, serif;
  font-size: 1.28rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 750;
  letter-spacing: -0.025em;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--ink-muted);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-wordmark {
  gap: 0;
}

.site-header .brand-wordmark .brand-copy {
  min-width: 164px;
  line-height: 1;
}

.site-header .brand-wordmark .brand-copy strong {
  display: block;
  color: var(--ink);
  font-family: Didot, "Bodoni 72", "Bodoni MT", Baskerville, "Times New Roman", serif;
  font-size: 1.52rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 0.88;
  transition: letter-spacing 0.25s ease;
}

.site-header .brand-wordmark .brand-copy strong span {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}

.site-header .brand-wordmark .brand-copy small {
  margin-top: 7px;
  color: var(--gold-dark);
  font-size: 0.52rem;
  font-weight: 760;
  letter-spacing: 0.32em;
}

@media (hover: hover) {
  .site-header .brand-wordmark:hover .brand-copy strong {
    letter-spacing: 0.16em;
  }
}

.nav-menu {
  display: flex;
  min-width: 0;
  gap: clamp(14px, 1.7vw, 26px);
  align-items: center;
}

.nav-menu > a:not(.button) {
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 760;
  text-decoration: none;
  white-space: nowrap;
}

.language-switcher {
  display: inline-flex;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.language-switcher a {
  display: grid;
  min-width: 34px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.language-switcher a[aria-current="page"] {
  background: var(--night);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

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

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

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

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 6.5vw, 88px) 0 clamp(68px, 7vw, 96px);
}

.hero::before,
.hero::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: -22%;
  right: -8%;
  width: min(46vw, 700px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(170, 125, 73, 0.18), transparent 66%);
}

.hero::after {
  bottom: -52%;
  left: -18%;
  width: min(54vw, 800px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(8, 38, 78, 0.1), transparent 68%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.7fr);
  gap: clamp(44px, 5.5vw, 76px);
  align-items: center;
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
}

.hero-kicker span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--gold-dark);
  padding: 7px 11px;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 580px;
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  display: flex;
  max-width: 590px;
  gap: 12px;
  align-items: flex-start;
  margin-top: 22px;
  color: var(--ink-muted);
  font-size: 0.83rem;
}

.hero-note svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--success);
}

.portrait-wrap {
  position: relative;
  width: min(100%, 390px);
  justify-self: end;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(170, 125, 73, 0.42);
  border-radius: 30px;
  background: var(--paper-deep);
  box-shadow: var(--shadow-lg);
}

.portrait-frame::after {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  content: "";
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0;
  transform: scale(1.08);
  transform-origin: 50% 0;
}

.portrait-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  max-width: none;
  gap: 3px;
  overflow: hidden;
  border: 1px solid rgba(170, 125, 73, 0.26);
  border-radius: 15px;
  background: rgba(251, 248, 241, 0.9);
  box-shadow: 0 18px 46px -30px rgba(23, 36, 39, 0.72);
  padding: 12px 15px 12px 18px;
  backdrop-filter: blur(16px) saturate(1.08);
}

.portrait-badge::before {
  position: absolute;
  top: 11px;
  bottom: 11px;
  left: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(170, 125, 73, 0.28));
  content: "";
}

.portrait-badge strong {
  display: block;
  margin: 0;
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.portrait-badge span {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.4;
}

.trust-band {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  min-height: 102px;
  gap: 14px;
  align-items: center;
  padding: 24px 30px;
}

.trust-list li + li {
  border-left: 1px solid var(--line);
}

.trust-number {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  color: var(--gold-dark);
  font-family: Georgia, serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.trust-list strong {
  display: block;
  font-size: 0.88rem;
}

.trust-list span:last-child {
  display: block;
  color: var(--ink-muted);
  font-size: 0.78rem;
}

.services {
  background: linear-gradient(180deg, #f6f1e9 0%, #eee6da 100%);
}

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

.service-card {
  position: relative;
  display: grid;
  min-height: 320px;
  grid-template-columns: minmax(0, 1fr) 88px;
  gap: 22px;
  align-items: start;
  overflow: hidden;
  border: 1px solid rgba(170, 125, 73, 0.24);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(250, 247, 241, 0.88));
  box-shadow: 0 28px 70px -54px rgba(23, 36, 39, 0.68);
  padding: clamp(26px, 2.8vw, 32px);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card::before {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 125, 73, 0.1), transparent 68%);
  content: "";
  pointer-events: none;
}

.service-card::after {
  position: absolute;
  top: 0;
  right: 30px;
  left: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(170, 125, 73, 0.72), transparent);
  content: "";
}

.service-card-content {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
}

.service-index {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  color: var(--gold-dark);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.service-index::after {
  width: 30px;
  height: 1px;
  background: rgba(170, 125, 73, 0.48);
  content: "";
}

.service-card h3 {
  margin-bottom: 14px;
  font-family: Didot, "Bodoni 72", "Bodoni MT", Baskerville, "Times New Roman", serif;
  font-size: clamp(1.32rem, 1.55vw, 1.58rem);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.16;
}

.service-card p {
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.65;
}

.service-list {
  display: grid;
  gap: 0;
  margin: 0 0 24px;
  border-top: 1px solid rgba(222, 213, 198, 0.72);
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.77rem;
  list-style: none;
}

.service-list li {
  position: relative;
  border-bottom: 1px solid rgba(222, 213, 198, 0.72);
  padding: 7px 0 7px 14px;
}

.service-list li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 4px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.service-card .text-link {
  margin-top: auto;
  align-self: flex-start;
  border-bottom: 1px solid rgba(128, 90, 49, 0.52);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.service-logo {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(170, 125, 73, 0.2);
  border-radius: 14px;
  background: #fffaf2;
  box-shadow: 0 18px 34px -26px rgba(23, 36, 39, 0.75);
  padding: 10px;
}

.service-logo.navy {
  background: var(--navy);
}

.service-logo.dark {
  background: #050505;
}

.service-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (hover: hover) {
  .service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(170, 125, 73, 0.5);
    box-shadow: 0 34px 76px -52px rgba(23, 36, 39, 0.72);
  }
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 76px);
  align-items: center;
}

.about-grid > .media-shell {
  width: min(100%, 310px);
  justify-self: center;
}

.about-copy {
  max-width: 650px;
}

.about-copy > p {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
}

.quote-block {
  position: relative;
  margin: 34px 0 0;
  border-left: 2px solid var(--gold);
  padding: 2px 0 2px 24px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.9vw, 1.55rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.media-shell {
  position: relative;
  display: grid;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  place-items: center;
  border: 1px solid rgba(170, 125, 73, 0.34);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(13, 29, 33, 0.1), rgba(13, 29, 33, 0.82)),
    var(--media-poster, linear-gradient(145deg, #1a3338, #0d1d21));
  background-color: var(--media-bg, #0d1d21);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover, var(--media-size, cover);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.media-shell::after {
  position: absolute;
  inset: 10px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: calc(var(--radius-md) - 8px);
  content: "";
  pointer-events: none;
}

.media-shell.is-loading::before {
  position: absolute;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  content: "";
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.media-shell video {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #050505;
  object-fit: cover;
}

.media-error {
  position: absolute;
  z-index: 5;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 12px;
  background: rgba(13, 29, 33, 0.94);
  color: var(--white);
  padding: 28px;
  text-align: center;
}

.media-error-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 1rem;
  font-weight: 850;
}

.media-error p {
  max-width: 25ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  line-height: 1.55;
}

.media-play {
  display: grid;
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.26);
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease;
}

.media-play svg {
  width: 25px;
  height: 25px;
  margin-left: 3px;
}

.media-label {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0.03em;
  text-align: center;
}

@media (hover: hover) {
  .media-play:hover {
    transform: scale(1.06);
    background: var(--white);
  }
}

.proof {
  overflow: hidden;
  background: var(--white);
}

.carousel-toolbar {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: flex-end;
}

.carousel-button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.carousel-button svg {
  width: 19px;
  height: 19px;
}

.carousel {
  display: grid;
  grid-auto-columns: minmax(230px, 24%);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 2px 22px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--gold) var(--paper-deep);
  scrollbar-width: thin;
}

.carousel::-webkit-scrollbar,
.gallery-scroll::-webkit-scrollbar {
  height: 7px;
}

.carousel::-webkit-scrollbar-track,
.gallery-scroll::-webkit-scrollbar-track {
  border-radius: 99px;
  background: var(--paper-deep);
}

.carousel::-webkit-scrollbar-thumb,
.gallery-scroll::-webkit-scrollbar-thumb {
  border-radius: 99px;
  background: var(--gold);
}

.testimonial-card {
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.testimonial-card .media-shell {
  aspect-ratio: 9 / 14;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.testimonial-card .media-shell::after {
  border-radius: 12px;
}

.testimonial-body {
  padding: 19px 18px 22px;
}

.testimonial-tag {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--gold-dark);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.testimonial-body blockquote {
  margin: 0;
  color: var(--ink-soft);
  font-family: Georgia, serif;
  font-size: 0.98rem;
  font-style: italic;
  line-height: 1.54;
}

.experience {
  overflow: hidden;
  background: var(--night);
  color: rgba(255, 255, 255, 0.78);
}

.experience h2,
.meridian h2,
.contact-cta h2 {
  color: var(--white);
}

.experience .section-head p,
.meridian p {
  color: rgba(255, 255, 255, 0.72);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 290px));
  justify-content: center;
  gap: 24px;
}

.experience-card .media-shell {
  aspect-ratio: 10 / 14;
  box-shadow: 0 32px 70px -44px #000;
}

.experience-card h3 {
  margin: 16px 4px 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.meridian {
  position: relative;
  overflow: hidden;
  background: #050505;
  color: rgba(255, 255, 255, 0.78);
}

.meridian::before {
  position: absolute;
  top: -260px;
  left: -180px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 125, 73, 0.2), transparent 65%);
  content: "";
}

.meridian-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 72px);
  align-items: center;
}

.meridian-copy {
  max-width: 560px;
}

.meridian-logo {
  width: 190px;
  height: 112px;
  margin-bottom: 24px;
  object-fit: contain;
  object-position: left center;
}

.meridian-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 28px;
}

.event-mosaic {
  display: grid;
  width: min(100%, 680px);
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 170px);
  gap: 10px;
  justify-self: end;
}

.event-mosaic figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
}

.event-mosaic figure:nth-child(1) {
  grid-column: span 7;
}

.event-mosaic figure:nth-child(2) {
  grid-column: span 5;
}

.event-mosaic figure:nth-child(3) {
  grid-column: span 4;
}

.event-mosaic figure:nth-child(4) {
  grid-column: span 8;
}

.event-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-mosaic figure:nth-child(4) img {
  object-position: center top;
}

.food {
  overflow: hidden;
  background: linear-gradient(135deg, #a15b37, #823d28);
  color: rgba(255, 255, 255, 0.84);
}

.food-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 72px);
  align-items: center;
}

.food h2 {
  color: var(--white);
}

.food-copy {
  max-width: 530px;
}

.food-copy p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.06rem;
}

.food-logo {
  width: 180px;
  height: 150px;
  margin-bottom: 20px;
  object-fit: contain;
  object-position: left center;
}

.food-gallery {
  display: grid;
  width: min(100%, 680px);
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 180px);
  gap: 10px;
  justify-self: end;
}

.food-gallery figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  box-shadow: 0 24px 50px -34px rgba(0, 0, 0, 0.72);
}

.food-gallery figure:nth-child(1) {
  grid-column: span 7;
  background: #6f321f;
}

.food-gallery figure:nth-child(2) {
  grid-column: span 5;
}

.food-gallery figure:nth-child(3),
.food-gallery figure:nth-child(4),
.food-gallery figure:nth-child(5) {
  grid-column: span 4;
}

.food-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.food-gallery figure:first-child img {
  object-fit: contain;
  object-position: center;
  padding: 6px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-step {
  position: relative;
  min-height: 250px;
  border-top: 1px solid var(--line);
  padding: 25px 8px 0 0;
}

.process-step::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.step-number {
  display: block;
  margin-bottom: 32px;
  color: var(--gold-dark);
  font-family: Georgia, serif;
  font-size: 1.25rem;
}

.process-step h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 820;
  letter-spacing: -0.01em;
}

.process-step p {
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.faq {
  background: var(--paper-deep);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.55fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 100px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  min-height: 78px;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 10px;
  left: 3px;
  width: 16px;
  height: 1px;
  background: var(--gold-dark);
  content: "";
  transition: transform 0.2s ease;
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-item[open] .faq-icon::after {
  transform: rotate(0deg);
}

.faq-answer {
  max-width: 690px;
  padding: 0 50px 24px 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.contact-cta {
  position: relative;
  overflow: hidden;
  background: var(--night);
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
}

.contact-cta::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(170, 125, 73, 0.22), transparent 30%),
    radial-gradient(circle at 82% 80%, rgba(8, 38, 78, 0.45), transparent 35%);
  content: "";
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin-inline: auto;
}

.contact-inner h2 {
  margin-inline: auto;
}

.contact-inner > p {
  max-width: 620px;
  margin: 0 auto 30px;
  font-size: 1.06rem;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 32px;
}

.contact-option {
  display: flex;
  min-height: 92px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 16px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-option strong {
  font-size: 0.82rem;
}

.contact-option span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
}

@media (hover: hover) {
  .contact-option:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.11);
  }
}

.site-footer {
  border-top: 1px solid #2d3a3d;
  background: var(--night);
  color: rgba(255, 255, 255, 0.63);
  padding: 62px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 0.9fr) repeat(3, minmax(150px, 0.48fr));
  gap: 38px;
}

.site-footer .brand {
  color: var(--white);
}

.site-footer .brand-mark {
  border-color: rgba(232, 214, 189, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-light);
}

.site-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.48);
}

.footer-intro p {
  max-width: 290px;
  margin-top: 18px;
  font-size: 0.82rem;
}

.footer-column h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  font-size: 0.79rem;
  list-style: none;
}

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

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

.footer-bottom {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-top: 46px;
  border-top: 1px solid #2d3a3d;
  padding-top: 22px;
  font-size: 0.72rem;
}

.footer-bottom a {
  text-underline-offset: 4px;
}

.floating-contact {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
}

.floating-button {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: linear-gradient(145deg, #bd8f5a, #8c6032);
  box-shadow: 0 20px 45px -12px rgba(87, 55, 26, 0.5);
  color: var(--white);
  cursor: pointer;
}

.floating-button svg {
  width: 29px;
  height: 29px;
}

.floating-menu {
  position: absolute;
  right: 0;
  bottom: 76px;
  display: grid;
  width: min(310px, calc(100vw - 32px));
  gap: 5px;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transform-origin: bottom right;
  opacity: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

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

.floating-menu strong {
  padding: 5px 10px 8px;
  color: var(--gold-dark);
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.floating-menu a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  border-radius: 14px;
  padding: 11px 10px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 780;
  text-decoration: none;
}

.floating-menu a:hover {
  background: var(--paper-deep);
}

.floating-menu svg {
  width: 22px;
  height: 22px;
  color: var(--gold-dark);
}

.cookie-banner {
  position: fixed;
  z-index: 2000;
  right: 18px;
  bottom: 94px;
  display: none;
  width: min(460px, calc(100vw - 36px));
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 20px;
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner p {
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-actions .button {
  min-height: 43px;
  padding: 10px 17px;
  font-size: 0.75rem;
}

.legal-page {
  min-height: 65vh;
  padding: clamp(70px, 10vw, 130px) 0;
}

.legal-content {
  max-width: 780px;
}

.legal-content h1 {
  max-width: 18ch;
  font-size: clamp(2rem, 3.2vw, 2.85rem);
}

.legal-content h2 {
  margin-top: 42px;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 840;
  letter-spacing: -0.01em;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px 0;
  text-align: center;
}

.error-page h1 {
  margin-inline: auto;
}

.error-page p {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--ink-soft);
}

@media (max-width: 1120px) {
  .nav-menu {
    gap: 14px;
  }

  .nav-menu > a:not(.button) {
    font-size: 0.77rem;
  }

  .nav-menu .button {
    display: none;
  }

  .service-card {
    grid-template-columns: minmax(0, 1fr) 88px;
  }

  .service-logo {
    width: 88px;
    height: 88px;
  }

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

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: calc(var(--header-height) + 10px);
    right: 16px;
    left: 16px;
    display: grid;
    visibility: hidden;
    max-height: calc(100dvh - var(--header-height) - 26px);
    gap: 2px;
    align-items: stretch;
    overflow: auto;
    transform: translateY(-10px) scale(0.985);
    transform-origin: top;
    opacity: 0;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(251, 248, 241, 0.985);
    box-shadow: var(--shadow-lg);
    padding: 14px;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  }

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

  .nav-menu > a:not(.button) {
    display: flex;
    min-height: 48px;
    align-items: center;
    border-radius: 14px;
    padding: 12px 14px;
    color: var(--ink);
    font-size: 0.9rem;
  }

  .nav-menu > a:not(.button):hover {
    background: var(--white);
  }

  .nav-menu .button {
    display: inline-flex;
    width: 100%;
    margin-top: 7px;
  }

  .language-switcher {
    order: 10;
    width: 100%;
    justify-content: space-between;
    margin-top: 8px;
  }

  .language-switcher a {
    flex: 1;
  }

  .hero-grid,
  .about-grid,
  .meridian-grid,
  .food-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .portrait-wrap {
    width: min(82%, 360px);
    justify-self: center;
  }

  .portrait-badge {
    right: 18px;
  }

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

  .section-head {
    grid-template-columns: 1fr;
  }

  .section-head > :last-child {
    justify-self: start;
  }

  .about-grid > .media-shell {
    width: min(72%, 300px);
    justify-self: center;
  }

  .carousel {
    grid-auto-columns: minmax(225px, 31%);
  }

  .event-mosaic {
    width: min(100%, 720px);
    grid-template-rows: repeat(2, 175px);
    justify-self: center;
  }

  .food-gallery {
    width: min(100%, 720px);
    grid-template-rows: repeat(2, 180px);
    justify-self: center;
  }

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

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

  .faq-intro {
    position: static;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand-copy strong {
    font-size: 1.08rem;
  }

  .brand-copy small {
    font-size: 0.57rem;
  }

  .site-header .brand-wordmark .brand-copy {
    min-width: 138px;
  }

  .site-header .brand-wordmark .brand-copy strong {
    font-size: 1.28rem;
    letter-spacing: 0.11em;
  }

  .site-header .brand-wordmark .brand-copy strong span {
    font: inherit;
  }

  .site-header .brand-wordmark .brand-copy small {
    margin-top: 5px;
    font-size: 0.45rem;
    letter-spacing: 0.28em;
  }

  h1 {
    font-size: clamp(2rem, 8vw, 2.55rem);
  }

  h2 {
    font-size: clamp(1.52rem, 6.5vw, 2.05rem);
  }

  .hero {
    padding-top: 46px;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-note {
    margin-top: 22px;
  }

  .portrait-wrap {
    width: min(88%, 320px);
  }

  .portrait-frame {
    border-radius: 26px;
  }

  .portrait-badge {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 11px 13px 11px 16px;
  }

  .trust-list {
    grid-template-columns: 1fr;
    padding: 10px 0;
  }

  .trust-list li {
    min-height: 78px;
    padding: 14px 4px;
  }

  .trust-list li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-card {
    min-height: 0;
    grid-template-columns: 1fr 74px;
    gap: 18px;
    padding: 24px;
  }

  .service-logo {
    width: 74px;
    height: 74px;
    border-radius: 12px;
    padding: 8px;
  }

  .service-card p,
  .service-list,
  .service-card .text-link {
    grid-column: 1 / -1;
  }

  .service-card-content {
    display: contents;
  }

  .service-index,
  .service-card h3 {
    grid-column: 1;
  }

  .service-card h3 {
    margin-top: -8px;
  }

  .service-logo {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .carousel-toolbar {
    display: none;
  }

  .carousel {
    grid-auto-columns: minmax(205px, 70%);
    gap: 14px;
    margin-right: -14px;
  }

  .experience-grid {
    display: grid;
    grid-auto-columns: 68%;
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    margin-right: -14px;
    padding: 3px 14px 18px 1px;
    scroll-snap-type: x mandatory;
  }

  .experience-card {
    scroll-snap-align: start;
  }

  .meridian-logo,
  .food-logo {
    width: 160px;
  }

  .event-mosaic,
  .food-gallery {
    display: grid;
    width: 100%;
    grid-auto-columns: 72%;
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-template-rows: 260px;
    gap: 12px;
    overflow-x: auto;
    margin-right: -14px;
    padding: 2px 14px 18px 1px;
    scroll-snap-type: x mandatory;
  }

  .food-gallery figure:first-child {
    background: #6f321f;
  }

  .event-mosaic figure,
  .food-gallery figure,
  .event-mosaic figure:nth-child(n),
  .food-gallery figure:nth-child(n) {
    grid-column: auto;
    scroll-snap-align: start;
  }

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

  .process-step {
    min-height: 0;
    padding-bottom: 14px;
  }

  .step-number {
    margin-bottom: 18px;
  }

  .faq-item summary {
    min-height: 70px;
    font-size: 0.9rem;
  }

  .faq-answer {
    padding-right: 10px;
  }

  .contact-options {
    grid-template-columns: 1fr;
  }

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

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

  .floating-contact {
    right: 14px;
    bottom: 14px;
  }

  .floating-button {
    width: 58px;
    height: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .floating-contact,
  .cookie-banner,
  .carousel-toolbar,
  .media-play {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .section,
  .section-sm {
    padding: 30px 0;
  }
}
