:root {
  --ink: #0b0908;
  --ink-soft: #15110f;
  --ink-panel: #1c1714;
  --cream: #f5efe6;
  --cream-soft: #e9dfd2;
  --paper: #e8ddcf;
  --paper-deep: #d8c9b8;
  --gold: #caa66f;
  --gold-light: #ead2a6;
  --gold-dark: #8f6d3f;
  --text: #f6f0e8;
  --text-muted: rgba(246, 240, 232, 0.72);
  --text-dim: rgba(246, 240, 232, 0.52);
  --line: rgba(222, 194, 153, 0.16);
  --line-strong: rgba(222, 194, 153, 0.34);
  --serif: "Lora", Georgia, serif;
  --sans: "Golos Text", Arial, sans-serif;
  --container: 1180px;
  --pad: clamp(18px, 4vw, 52px);
  --header-height: 82px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

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

body.menu-open {
  overflow: hidden;
}

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

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

button {
  padding: 0;
  color: inherit;
  background: none;
  border: 0;
  font: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
p,
ul,
ol {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--gold-light);
  transform: translateY(-160%);
  transition: transform 0.2s;
}

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

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

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--pad) * 2);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.page-bg__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 76% -8%, rgba(202, 166, 111, 0.15), transparent 58%),
    radial-gradient(ellipse 45% 45% at -10% 65%, rgba(92, 55, 45, 0.14), transparent 62%),
    var(--ink);
}

.page-bg__grain {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

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

h2 {
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5.5vw, 4.8rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

h2 em {
  color: var(--gold-light);
  font-weight: 400;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s, box-shadow 0.3s, color 0.3s;
}

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

.button--gold {
  color: #1b1309;
  background: linear-gradient(135deg, #f0d9b2, #c69e63 58%, #987442);
  box-shadow: 0 16px 38px rgba(143, 109, 63, 0.24);
}

.button--gold:hover {
  box-shadow: 0 20px 46px rgba(143, 109, 63, 0.38);
}

.button--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.025);
  border-color: var(--line-strong);
}

.button--ghost:hover {
  color: var(--gold-light);
  background: rgba(202, 166, 111, 0.08);
  border-color: var(--gold);
}

.button--dark {
  color: var(--cream);
  background: var(--ink);
  border-color: rgba(11, 9, 8, 0.4);
}

.button--dark:hover {
  background: #211b17;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  color: var(--gold-light);
  border-bottom: 1px solid var(--line-strong);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s, border-color 0.25s;
}

.text-link span {
  font-size: 1rem;
  transition: transform 0.25s;
}

.text-link:hover {
  color: #fff0d7;
  border-color: var(--gold-light);
}

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

.text-link--dark {
  color: #4b3824;
  border-color: rgba(75, 56, 36, 0.28);
}

.text-link--dark:hover {
  color: var(--ink);
  border-color: var(--ink);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(11, 9, 8, 0.42);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px) saturate(1.2);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.header.is-scrolled {
  background: rgba(11, 9, 8, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.26);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand__mark {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.25;
}

.brand__text strong {
  font-family: var(--serif);
  font-size: 1.14rem;
  font-weight: 500;
  letter-spacing: 0.025em;
}

.brand__text span {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header__nav a {
  position: relative;
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 0.73rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s;
}

.header__nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

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

.header__nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header__cta {
  min-height: 44px;
  padding-inline: 20px;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.menu-button span {
  display: block;
  width: 17px;
  height: 1px;
  background: var(--gold-light);
  transition: transform 0.25s;
}

.menu-button.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.drawer {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  z-index: 90;
  display: none;
  padding: 14px var(--pad) 24px;
  background: rgba(11, 9, 8, 0.985);
  border-bottom: 1px solid var(--line-strong);
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.38);
}

.drawer.is-open {
  display: block;
}

.drawer[hidden] {
  display: none !important;
}

.drawer__nav {
  margin-bottom: 18px;
}

.drawer__nav a {
  display: block;
  padding: 13px 0;
  color: var(--cream-soft);
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.35rem;
}

/* Hero */
.hero {
  display: flex;
  min-height: 100vh;
  min-height: 100dvh;
  align-items: center;
  padding: calc(var(--header-height) + 42px) 0 62px;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.hero__content {
  min-width: 0;
}

.hero__title {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(4.1rem, 8.8vw, 8.2rem);
  font-weight: 500;
  line-height: 0.78;
  letter-spacing: -0.045em;
}

.hero__title em {
  display: block;
  margin-top: 0.2em;
  margin-left: clamp(36px, 7vw, 96px);
  color: var(--gold-light);
  font-weight: 400;
}

.hero__subtitle {
  max-width: 590px;
  margin-bottom: 16px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  font-weight: 500;
  line-height: 1.12;
}

.hero__text {
  max-width: 580px;
  margin-bottom: 28px;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero__facts li {
  padding: 0 18px;
  border-right: 1px solid var(--line);
}

.hero__facts li:first-child {
  padding-left: 0;
}

.hero__facts li:last-child {
  border-right: 0;
}

.hero__facts strong,
.hero__facts span {
  display: block;
}

.hero__facts strong {
  margin-bottom: 5px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.hero__facts span {
  color: var(--text-dim);
  font-size: 0.75rem;
  line-height: 1.45;
}

.hero__visual {
  position: relative;
  min-width: 0;
}

.portrait {
  position: relative;
  max-width: 460px;
  margin-inline: auto;
  padding: 10px;
  border: 1px solid var(--line-strong);
}

.portrait::before {
  content: "";
  position: absolute;
  inset: 7% -10% -7% 12%;
  z-index: -1;
  background: rgba(202, 166, 111, 0.1);
  filter: blur(55px);
}

.portrait img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.88) contrast(1.02);
}

.portrait__caption {
  position: absolute;
  right: 25px;
  bottom: 25px;
  left: 25px;
  padding: 15px 17px;
  background: rgba(11, 9, 8, 0.82);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px);
}

.portrait__caption span,
.portrait__caption strong {
  display: block;
}

.portrait__caption span {
  margin-bottom: 3px;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portrait__caption strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.hero__seal {
  position: absolute;
  right: -24px;
  bottom: 15%;
  display: flex;
  width: 112px;
  height: 112px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #281d11;
  background: var(--paper);
  border: 6px solid var(--ink);
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.hero__seal span {
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 2.35rem;
  line-height: 0.75;
}

.trust-line {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
}

.trust-line__inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3.5vw, 50px);
  color: var(--text-muted);
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.trust-line__inner i {
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
}

/* Generic sections */
.section {
  padding: clamp(84px, 10vw, 132px) 0;
}

.section--warm {
  color: #211a15;
  background: var(--paper);
}

.section--warm .eyebrow {
  color: #7f5c2e;
}

.section--warm h2 em {
  color: #8a6334;
}

.section--soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.035));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(30px, 6vw, 100px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.section-heading > p {
  max-width: 460px;
  padding-bottom: 7px;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.section--warm .section-heading > p {
  color: rgba(33, 26, 21, 0.7);
}

.section-heading--center {
  display: block;
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center > p {
  max-width: 650px;
  margin: 24px auto 0;
}

/* Services */
.service-list {
  border-top: 1px solid var(--line);
}

.service {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) minmax(180px, 0.32fr);
  gap: 24px;
  align-items: center;
  padding: 30px 10px;
  border-bottom: 1px solid var(--line);
  transition: padding 0.35s var(--ease), background 0.3s, border-color 0.3s;
}

.service:hover {
  padding-inline: 20px;
  background: rgba(202, 166, 111, 0.055);
  border-bottom-color: var(--line-strong);
}

.service__number {
  align-self: start;
  padding-top: 4px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
}

.service__tag {
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service__main h3 {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.7vw, 2.2rem);
  font-weight: 500;
  line-height: 1.1;
}

.service__main > p:last-child {
  max-width: 620px;
  color: var(--text-muted);
  font-size: 0.91rem;
}

.service__aside {
  text-align: right;
}

.service__aside strong,
.service__aside span {
  display: block;
}

.service__aside strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.7vw, 2.1rem);
  font-weight: 500;
}

.service__aside span {
  color: var(--text-dim);
  font-size: 0.72rem;
}

.services-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 30px;
  padding: 22px 24px;
  background: rgba(202, 166, 111, 0.07);
  border: 1px solid var(--line);
}

.services-cta p {
  max-width: 650px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Approach */
.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(33, 26, 21, 0.17);
  border-bottom: 1px solid rgba(33, 26, 21, 0.17);
}

.principle {
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid rgba(33, 26, 21, 0.17);
}

.principle:last-child {
  border-right: 0;
}

.principle--featured {
  background: rgba(255, 255, 255, 0.28);
}

.principle > span {
  display: block;
  margin-bottom: 52px;
  color: #8a6334;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
}

.principle h3 {
  margin-bottom: 11px;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.1;
}

.principle p {
  color: rgba(33, 26, 21, 0.68);
  font-size: 0.91rem;
}

.portfolio-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin-top: 46px;
  padding: 36px 40px;
  color: var(--cream);
  background: var(--ink-soft);
}

.portfolio-callout .eyebrow {
  margin-bottom: 9px;
  color: var(--gold);
}

.portfolio-callout h3 {
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 500;
}

.portfolio-callout p:last-child {
  max-width: 620px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Master */
.master {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: center;
}

.master__photo {
  position: relative;
  padding: 10px;
  border: 1px solid var(--line-strong);
}

.master__photo::after {
  content: "";
  position: absolute;
  top: 30px;
  right: -26px;
  bottom: -26px;
  left: 30px;
  z-index: -1;
  border: 1px solid var(--line);
}

.master__photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.72) contrast(1.04);
}

.master__content h2 {
  margin-bottom: 28px;
}

.master__content > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 17px;
  color: var(--text-muted);
}

.master__content .master__lead {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.35;
}

.master__points {
  margin: 28px 0;
  border-top: 1px solid var(--line);
}

.master__points li {
  display: flex;
  gap: 18px;
  padding: 13px 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.master__points span {
  flex: 0 0 26px;
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
}

.master__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
}

/* Location */
.location {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(370px, 0.65fr);
  min-height: 640px;
  color: #211a15;
  background: var(--cream-soft);
}

.location__image {
  min-height: 520px;
  overflow: hidden;
}

.location__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(0.96);
}

.location__content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(48px, 6vw, 88px);
}

.location__content .eyebrow {
  color: #7f5c2e;
}

.location__content h2 {
  margin-bottom: 24px;
}

.location__content h2 em {
  color: #8a6334;
}

.location__content > p:not(.eyebrow) {
  max-width: 510px;
  margin-bottom: 30px;
  color: rgba(33, 26, 21, 0.7);
}

.location__address {
  width: 100%;
  margin-bottom: 24px;
  padding: 17px 0;
  border-top: 1px solid rgba(33, 26, 21, 0.15);
  border-bottom: 1px solid rgba(33, 26, 21, 0.15);
}

.location__address span,
.location__address strong {
  display: block;
}

.location__address span {
  margin-bottom: 4px;
  color: #7f5c2e;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.location__address strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}

/* Visit */
.visit-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.visit-steps li {
  min-height: 245px;
  padding: 27px 24px;
  border-right: 1px solid var(--line);
}

.visit-steps li:last-child {
  border-right: 0;
}

.visit-steps > li > span {
  display: block;
  margin-bottom: 54px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
}

.visit-steps h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
}

.visit-steps p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(42px, 8vw, 120px);
}

.faq-layout__intro {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  align-self: start;
}

.faq-layout__intro h2 {
  margin-bottom: 24px;
}

.faq-layout__intro > p:last-child {
  max-width: 380px;
  color: var(--text-muted);
}

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

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

.faq summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.2;
  list-style: none;
  cursor: pointer;
}

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

.faq summary span {
  flex: 0 0 36px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 300;
  text-align: center;
  transition: transform 0.25s;
}

.faq details[open] summary span {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 680px;
  padding: 0 60px 24px 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Booking */
.booking {
  padding: clamp(86px, 11vw, 140px) 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 0%, rgba(202, 166, 111, 0.2), transparent 62%),
    #17120f;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.booking__inner {
  text-align: center;
}

.booking h2 {
  margin-bottom: 23px;
  font-size: clamp(3.2rem, 7vw, 6rem);
}

.booking__lead {
  max-width: 650px;
  margin: 0 auto 42px;
  color: var(--text-muted);
}

.booking__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 880px;
  margin-inline: auto;
}

.booking-card {
  position: relative;
  display: flex;
  min-height: 160px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 28px 65px 28px 28px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line-strong);
  text-align: left;
  transition: transform 0.35s var(--ease), background 0.3s, border-color 0.3s;
}

.booking-card:hover {
  transform: translateY(-4px);
  background: rgba(202, 166, 111, 0.08);
  border-color: var(--gold);
}

.booking-card--gold {
  color: #24180d;
  background: var(--paper);
  border-color: var(--paper);
}

.booking-card--gold:hover {
  background: #f0e4d5;
}

.booking-card span,
.booking-card strong {
  display: block;
}

.booking-card span {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.booking-card--gold span {
  color: #7b582d;
}

.booking-card strong {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  font-weight: 600;
  line-height: 1.15;
}

.booking-card i {
  position: absolute;
  right: 28px;
  bottom: 26px;
  font-size: 1.5rem;
  font-style: normal;
  transition: transform 0.25s;
}

.booking-card:hover i {
  transform: translateX(5px);
}

.booking__note {
  margin-top: 20px;
  color: var(--text-dim);
  font-size: 0.74rem;
}

/* Contacts and footer */
.contacts {
  padding: 72px 0;
}

.contacts__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
}

.contacts h2 {
  margin-bottom: 14px;
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
}

.contacts__inner > div:first-child > p:last-child {
  color: var(--text-muted);
}

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

.contacts__links a {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.25s;
}

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

.contacts__links span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contacts__links strong {
  font-weight: 400;
}

.footer {
  padding: 27px 0 36px;
  border-top: 1px solid var(--line);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand--footer .brand__mark {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
}

.footer__socials {
  display: flex;
  gap: 22px;
}

.footer__socials a,
.footer__inner > p {
  color: var(--text-dim);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s;
}

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

.mobile-actions {
  display: none;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .header__nav {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .hero__seal {
    right: -10px;
  }
}

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

  .header__cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 28px);
  }

  .hero__inner,
  .master,
  .faq-layout,
  .contacts__inner {
    grid-template-columns: 1fr;
  }

  .hero__content {
    order: 1;
  }

  .hero__visual {
    order: 2;
    margin-top: 14px;
  }

  .portrait {
    max-width: 420px;
  }

  .hero__title {
    font-size: clamp(4.2rem, 15vw, 7rem);
  }

  .hero__title em {
    margin-left: clamp(30px, 12vw, 84px);
  }

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

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

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

  .location__image {
    min-height: 460px;
  }

  .location__content {
    padding: 64px var(--pad);
  }

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

  .visit-steps li:nth-child(2) {
    border-right: 0;
  }

  .visit-steps li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .faq-layout__intro {
    position: static;
  }

  .contacts__inner {
    gap: 34px;
  }

  .mobile-actions {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 110;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 8px;
    padding: 8px;
    background: rgba(11, 9, 8, 0.95);
    border: 1px solid var(--line-strong);
    border-radius: 16px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(16px);
  }

  .mobile-actions a {
    display: grid;
    min-height: 48px;
    place-items: center;
    padding: 8px 10px;
    color: var(--gold-light);
    background: rgba(202, 166, 111, 0.08);
    border-radius: 10px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-align: center;
    text-transform: uppercase;
  }

  .mobile-actions__primary {
    color: #24180d !important;
    background: linear-gradient(135deg, #f0d9b2, #c69e63) !important;
  }

  .footer {
    padding-bottom: 104px;
  }
}

@media (max-width: 680px) {
  .brand__text span {
    display: none;
  }

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

  .hero__facts li,
  .hero__facts li:first-child {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 14px;
    align-items: baseline;
    padding: 9px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero__facts li:last-child {
    border-bottom: 0;
  }

  .hero__facts strong {
    margin: 0;
  }

  .trust-line__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding-block: 12px;
    font-size: 0.95rem;
    text-align: center;
  }

  .trust-line__inner span {
    padding: 9px;
  }

  .trust-line__inner i {
    display: none;
  }

  .service {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .service__aside {
    grid-column: 2;
    text-align: left;
  }

  .services-cta,
  .portfolio-callout {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .principle {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(33, 26, 21, 0.17);
  }

  .principle:last-child {
    border-bottom: 0;
  }

  .principle > span {
    margin-bottom: 28px;
  }

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

  .contacts__links a {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

@media (max-width: 520px) {
  .hero__title {
    font-size: clamp(3.75rem, 20vw, 5.5rem);
  }

  .hero__subtitle {
    font-size: 1.65rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__seal {
    right: -2px;
    bottom: 11%;
    width: 94px;
    height: 94px;
    padding: 0 4px;
    font-size: 0.52rem;
    letter-spacing: 0.04em;
  }

  .hero__seal span {
    font-size: 2rem;
  }

  .portrait__caption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .service {
    padding-block: 25px;
  }

  .services-cta,
  .portfolio-callout {
    padding: 26px 22px;
  }

  .visit-steps {
    grid-template-columns: 1fr;
  }

  .visit-steps li,
  .visit-steps li:nth-child(2) {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .visit-steps li:last-child {
    border-bottom: 0;
  }

  .visit-steps > li > span {
    margin: 0;
  }

  .faq summary {
    font-size: 1.2rem;
  }

  .faq details p {
    padding-right: 0;
  }

  .booking-card {
    min-height: 145px;
  }
}

@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;
  }
}
