:root {
  --bg: #020303;
  --panel: #080909;
  --panel-soft: rgba(11, 11, 10, 0.78);
  --line: rgba(198, 157, 98, 0.34);
  --line-soft: rgba(255, 255, 255, 0.1);
  --gold: #cda36a;
  --gold-bright: #e4bd7e;
  --text: #f3eee7;
  --muted: #c9c0b4;
  --subtle: #8f867a;
  --shadow: rgba(0, 0, 0, 0.72);
  --serif: "Cormorant Garamond", Georgia, serif;
  --display: "Cinzel", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 75% 8%, rgba(154, 111, 57, 0.18), transparent 28rem),
    linear-gradient(180deg, #040404 0%, #000 100%);
  font-family: var(--sans);
}

body.form-open {
  overflow: hidden;
}

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

.site-frame {
  width: min(100%, 1120px);
  margin: 0 auto;
  background: #020303;
  box-shadow: 0 0 120px var(--shadow);
}

.topbar {
  position: absolute;
  z-index: 10;
  left: 50%;
  width: min(100%, 1120px);
  min-height: 128px;
  padding: 15px 42px 0;
  display: grid;
  grid-template-columns: 206px 1fr auto;
  align-items: start;
  gap: 28px;
  transform: translateX(-50%);
}

.brand,
.footer-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
  color: var(--gold-bright);
  font-family: var(--display);
  text-transform: uppercase;
}

.brand-image,
.footer-brand-image {
  display: block;
  width: 150px;
  height: auto;
}

.brand-image {
  transform: translate(-14px, -3px);
}

.brand-mark {
  position: relative;
  display: block;
  height: 53px;
  font-family: var(--serif);
  font-size: 50px;
  line-height: 0.86;
  color: var(--gold-bright);
}

.brand-mark::first-letter {
  font-size: 1.18em;
}

.brand-name {
  margin-top: 7px;
  font-size: 26px;
  line-height: 1;
}

.brand-subtitle {
  position: relative;
  margin-top: 4px;
  padding: 0 22px;
  font-size: 10px;
  line-height: 1;
}

.brand-subtitle::before,
.brand-subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 1px;
  background: rgba(205, 163, 106, 0.72);
}

.brand-subtitle::before {
  left: 0;
}

.brand-subtitle::after {
  right: 0;
}

.brand-line {
  margin-top: 12px;
  max-width: 150px;
  color: rgba(228, 189, 126, 0.66);
  font-size: 5px;
  line-height: 1.35;
  text-align: center;
}

.main-nav {
  padding-top: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding-bottom: 16px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: transparent;
}

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

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

.nav-diamond {
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.outline-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid rgba(205, 163, 106, 0.78);
  color: var(--gold-bright);
  background: rgba(5, 5, 4, 0.28);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.outline-button:hover {
  border-color: var(--gold-bright);
  background: rgba(205, 163, 106, 0.13);
  color: #fff6e8;
}

.outline-button svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.5;
}

.nav-offer {
  margin-top: 25px;
  min-width: 138px;
}

.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 500px;
  padding: 176px 60px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #020303 0%, rgba(2, 3, 3, 0.92) 27%, rgba(2, 3, 3, 0.42) 51%, rgba(2, 3, 3, 0.08) 80%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.04) 58%, #020303 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(2, 3, 3, 0.02), rgba(2, 3, 3, 0.35)),
    url("assets/hero-lobby-generated.png?v=approved-1");
  background-position: center, center top;
  background-size: cover, cover;
  background-repeat: no-repeat;
  filter: saturate(0.95);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(430px, 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

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

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

h1 {
  margin-bottom: 18px;
  color: #fff8ed;
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero-title-accent {
  color: var(--gold-bright);
}

.hero-copy p:not(.eyebrow) {
  max-width: 390px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.62;
}

.values {
  position: relative;
  z-index: 4;
  width: calc(100% - 116px);
  margin: -26px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(8, 8, 7, 0.94);
  border: 1px solid var(--line);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.44);
}

.values article {
  min-height: 98px;
  padding: 21px 24px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 15px;
}

.values article + article {
  border-left: 1px solid rgba(205, 163, 106, 0.28);
}

.values svg {
  width: 31px;
  height: 31px;
  color: var(--gold-bright);
  stroke-width: 1.35;
}

.values h2 {
  margin-bottom: 6px;
  color: rgba(246, 240, 230, 0.9);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.values p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.35;
}

.services-section {
  padding: 30px 64px 14px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
}

.section-intro h2,
.about-copy h2,
.contact-copy h2 {
  color: #fbf5eb;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.08;
}

.section-intro h2 {
  margin-bottom: 26px;
  font-size: 28px;
  white-space: nowrap;
}

.section-intro {
  padding-top: 31px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(205, 163, 106, 0.26);
  border-left: 1px solid rgba(205, 163, 106, 0.26);
}

.service-card {
  position: relative;
  min-height: 142px;
  padding: 16px 18px 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
  text-align: center;
  border-right: 1px solid rgba(205, 163, 106, 0.26);
  border-bottom: 1px solid rgba(205, 163, 106, 0.26);
  isolation: isolate;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--service-bg) center / cover no-repeat;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at center 18%, rgba(205, 163, 106, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.82));
}

.service-card > * {
  position: relative;
  z-index: 2;
}

.service-card svg {
  width: 35px;
  height: 35px;
  margin-bottom: 12px;
  color: var(--gold-bright);
  stroke-width: 1.35;
}

.service-card h3 {
  margin-bottom: 7px;
  color: #fff8eb;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-card p {
  max-width: 170px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 9.5px;
  line-height: 1.42;
}

.office {
  --service-bg: url("assets/service-bg-office-client-2.png?v=client-1");
}

.gears {
  --service-bg: url("assets/service-bg-facility-client.png?v=client-1");
}

.clean {
  --service-bg: url("assets/service-bg-clean.jpg?v=service-bg-1");
}

.window {
  --service-bg: url("assets/service-bg-window-client.png?v=client-1");
}

.property {
  --service-bg: url("assets/service-bg-property-client.png?v=client-1");
}

.moving {
  --service-bg: url("assets/service-bg-moving-client.webp?v=client-1");
}

.about-section,
.proof-section,
.contact-section {
  width: calc(100% - 116px);
  margin: 0 auto;
  border: 1px solid rgba(205, 163, 106, 0.28);
}

.about-section {
  margin-top: 2px;
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 246px;
}

.about-copy {
  padding: 20px 42px 18px;
  background: linear-gradient(135deg, rgba(7, 9, 9, 0.94), rgba(4, 5, 5, 0.9));
}

.about-copy h2 {
  margin-bottom: 12px;
  font-size: 26px;
}

.about-copy p:not(.eyebrow) {
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.38;
}

.section-intro .outline-button,
.about-copy .outline-button {
  min-height: 39px;
  padding: 0 20px;
}

.about-image {
  min-height: 246px;
  background:
    linear-gradient(90deg, rgba(2, 3, 3, 0.14), rgba(2, 3, 3, 0.18)),
    url("assets/about-uniform.jpg?v=asset-refresh-1") center / cover no-repeat;
}

.proof-section {
  display: block;
  border-top: 0;
}

.security-badge {
  min-height: 118px;
  padding: 28px 42px;
  display: flex;
  align-items: center;
  background: #020303;
}

.security-badge > div {
  position: relative;
  padding-left: 24px;
}

.security-badge > div::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-bright), transparent);
}

.security-badge strong {
  display: block;
  color: #fbf5eb;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.08;
}

.security-badge span {
  display: block;
  max-width: 720px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.45;
}

.contact-section {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr;
  gap: 24px;
  padding: 25px 42px 4px;
  border-top: 0;
  background: linear-gradient(180deg, rgba(4, 5, 5, 0.92), rgba(2, 3, 3, 0.98));
}

.contact-copy h2 {
  max-width: 382px;
  margin-bottom: 12px;
  font-size: 27px;
}

.contact-copy p {
  max-width: 360px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.45;
}

.mobile-contact-actions {
  display: none;
}

.contact-list {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  color: #f1ebe0;
  font-style: normal;
  font-size: 12px;
}

.contact-list a,
.contact-list span {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 19px;
}

.contact-list svg,
.booking-card svg {
  color: var(--gold-bright);
  stroke-width: 1.5;
}

.booking-card {
  align-self: center;
  min-height: 96px;
  padding: 17px 18px;
  display: grid;
  grid-template-columns: 34px 1fr 20px;
  align-items: center;
  gap: 19px;
  border: 1px solid rgba(205, 163, 106, 0.68);
  background: rgba(11, 10, 9, 0.7);
  transition: background 180ms ease, border-color 180ms ease;
}

.booking-card:hover {
  border-color: var(--gold-bright);
  background: rgba(205, 163, 106, 0.12);
}

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

.booking-card strong {
  margin-bottom: 8px;
  color: #f8f0e3;
  font-size: 12px;
  text-transform: uppercase;
}

.booking-card small {
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.42;
}

.form-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 22px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.form-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.form-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.form-modal-panel {
  position: relative;
  width: min(100%, 720px);
  max-height: min(92vh, 760px);
  overflow-y: auto;
  padding: 30px;
  color: var(--text);
  background:
    linear-gradient(145deg, rgba(8, 9, 9, 0.98), rgba(2, 3, 3, 0.98)),
    url("assets/marble-dark.jpg") center / cover no-repeat;
  border: 1px solid rgba(205, 163, 106, 0.46);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.64);
}

.form-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}

.form-modal-header h2 {
  max-width: 520px;
  margin-bottom: 0;
  color: #fbf5eb;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.05;
}

.form-modal-close {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(205, 163, 106, 0.72);
  color: var(--gold-bright);
  background: rgba(5, 5, 4, 0.68);
}

.form-modal-close svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.4;
}

.offer-form {
  display: grid;
  gap: 16px;
}

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

.offer-form label {
  position: relative;
  display: grid;
  gap: 8px;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.offer-form input,
.offer-form select,
.offer-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(205, 163, 106, 0.32);
  border-radius: 0;
  padding: 0 13px;
  color: #f8f0e6;
  background: rgba(0, 0, 0, 0.38);
  font: 500 14px/1.4 var(--sans);
  outline: none;
}

.offer-form option {
  color: #f8f0e6;
  background: #030303;
}

.offer-form select.is-enhanced {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.custom-select {
  position: relative;
  width: 100%;
  font-family: var(--sans);
  text-transform: none;
}

.custom-select-trigger {
  position: relative;
  width: 100%;
  min-height: 46px;
  padding: 0 42px 0 13px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(205, 163, 106, 0.32);
  color: #f8f0e6;
  background: rgba(0, 0, 0, 0.72);
  font: 500 14px/1.4 var(--sans);
  text-align: left;
  cursor: pointer;
}

.custom-select-trigger::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--gold-bright);
  border-bottom: 1px solid var(--gold-bright);
  transform: translateY(-62%) rotate(45deg);
  transition: transform 160ms ease;
}

.custom-select.is-open .custom-select-trigger::after {
  transform: translateY(-36%) rotate(225deg);
}

.custom-select-trigger:focus {
  border-color: rgba(228, 189, 126, 0.82);
  box-shadow: 0 0 0 3px rgba(205, 163, 106, 0.1);
  outline: none;
}

.custom-select-options {
  position: absolute;
  z-index: 90;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  max-height: 236px;
  overflow-y: auto;
  padding: 6px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: #020303;
  border: 1px solid rgba(205, 163, 106, 0.48);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.62);
  transition: opacity 140ms ease, visibility 140ms ease;
}

.custom-select.is-open .custom-select-options {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.custom-select-option {
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  border: 0;
  color: rgba(248, 240, 230, 0.88);
  background: transparent;
  font: 600 13px/1.35 var(--sans);
  text-align: left;
  cursor: pointer;
}

.custom-select-option:hover,
.custom-select-option:focus {
  color: #fff8ec;
  background: rgba(205, 163, 106, 0.14);
  outline: none;
}

.custom-select-option[aria-selected="true"] {
  color: var(--gold-bright);
  background: rgba(205, 163, 106, 0.1);
}

.offer-form textarea {
  min-height: 108px;
  padding-top: 12px;
  resize: vertical;
}

.offer-form input:focus,
.offer-form select:focus,
.offer-form textarea:focus {
  border-color: rgba(228, 189, 126, 0.82);
  box-shadow: 0 0 0 3px rgba(205, 163, 106, 0.1);
}

.offer-form input::placeholder,
.offer-form textarea::placeholder {
  color: rgba(201, 192, 180, 0.58);
}

.form-submit {
  justify-self: start;
  margin-top: 6px;
}

.services-page {
  padding-bottom: 22px;
}

.services-page-hero {
  min-height: auto;
  padding: 154px 64px 44px;
  background: #020303;
  border-bottom: 1px solid rgba(205, 163, 106, 0.24);
}

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

.services-page-hero h1 {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: 48px;
  line-height: 0.98;
}

.services-page-hero-copy p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.service-detail-list {
  width: calc(100% - 116px);
  margin: 0 auto;
  border-inline: 1px solid rgba(205, 163, 106, 0.28);
}

.service-detail-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  min-height: 286px;
  border-bottom: 1px solid rgba(205, 163, 106, 0.28);
  background: #020303;
}

.service-detail-media {
  position: relative;
  min-height: 286px;
  overflow: hidden;
  border-right: 1px solid rgba(205, 163, 106, 0.26);
}

.service-detail-media::before,
.service-detail-media::after {
  content: "";
  position: absolute;
  inset: 0;
}

.service-detail-media::before {
  background: var(--service-bg) center / cover no-repeat;
}

.service-detail-media::after {
  display: none;
}

.service-detail-copy {
  padding: 34px 46px 30px;
}

.service-detail-copy h2 {
  max-width: 650px;
  margin-bottom: 14px;
  color: #fbf5eb;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.08;
}

.service-detail-copy p:not(.eyebrow) {
  max-width: 690px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.service-detail-copy ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.service-detail-copy li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  line-height: 1.5;
}

.service-detail-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 1px;
  background: var(--gold-bright);
}

.services-page-cta {
  width: calc(100% - 116px);
  min-height: 176px;
  margin: 0 auto;
  padding: 34px 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  background: linear-gradient(135deg, rgba(7, 9, 9, 0.94), rgba(4, 5, 5, 0.98));
  border: 1px solid rgba(205, 163, 106, 0.28);
  border-top: 0;
}

.services-page-cta h2 {
  max-width: 560px;
  margin-bottom: 12px;
  color: #fbf5eb;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.08;
}

.services-page-cta p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.about-page {
  padding-bottom: 22px;
}

.about-page-hero {
  min-height: 430px;
  padding: 176px 64px 54px;
  display: grid;
  grid-template-columns: minmax(420px, 0.78fr) minmax(300px, 0.52fr);
  align-items: stretch;
  gap: 52px;
  background:
    radial-gradient(circle at 76% 22%, rgba(205, 163, 106, 0.12), transparent 24rem),
    #020303;
  border-bottom: 1px solid rgba(205, 163, 106, 0.24);
}

.about-page-hero-copy {
  align-self: center;
  max-width: 650px;
}

.about-page-hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.about-founder-visual {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(205, 163, 106, 0.28);
  background: #050505;
}

.about-founder-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center 18%, rgba(205, 163, 106, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(2, 3, 3, 0.04), rgba(2, 3, 3, 0.56));
  pointer-events: none;
}

.about-founder-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.6) contrast(1.06) saturate(0.78);
}

.about-story,
.why-section,
.about-page-cta {
  width: calc(100% - 116px);
  margin: 0 auto;
  border-inline: 1px solid rgba(205, 163, 106, 0.28);
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.42fr);
  border-bottom: 1px solid rgba(205, 163, 106, 0.28);
  background: #020303;
}

.about-story-main {
  padding: 42px 48px 38px;
  border-right: 1px solid rgba(205, 163, 106, 0.24);
}

.about-story-main p,
.why-intro p,
.about-story-side p,
.about-page-cta p:not(.eyebrow),
.why-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

.about-story-main p {
  max-width: 760px;
  margin-bottom: 18px;
}

.about-story-main p:last-child {
  margin-bottom: 0;
}

.story-emphasis {
  color: #fbf5eb !important;
  font-family: var(--serif);
  font-size: 30px !important;
  font-weight: 600;
  line-height: 1.1 !important;
}

.about-story-side {
  padding: 42px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(145deg, rgba(8, 9, 9, 0.94), rgba(2, 3, 3, 0.98)),
    url("assets/marble-dark.jpg") center / cover no-repeat;
}

.side-kicker {
  margin-bottom: 15px;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.about-story-side strong {
  margin-bottom: 14px;
  color: #fbf5eb;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 600;
  line-height: 1.08;
}

.about-story-side .outline-button {
  align-self: flex-start;
  margin-top: 12px;
}

.why-section {
  padding: 42px 48px 46px;
  border-bottom: 1px solid rgba(205, 163, 106, 0.28);
  background: linear-gradient(180deg, rgba(4, 5, 5, 0.98), rgba(2, 3, 3, 1));
}

.why-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(280px, 1fr);
  column-gap: 46px;
  row-gap: 10px;
  margin-bottom: 36px;
}

.why-intro .eyebrow,
.why-intro h2 {
  grid-column: 1;
}

.why-intro p {
  grid-column: 2;
  margin-bottom: 0;
}

.why-intro p + p {
  margin-top: 16px;
}

.why-intro h2,
.about-page-cta h2 {
  color: #fbf5eb;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.08;
}

.expectation-block > .eyebrow {
  margin-bottom: 20px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(205, 163, 106, 0.26);
  border-left: 1px solid rgba(205, 163, 106, 0.26);
}

.why-grid article {
  min-height: 230px;
  padding: 26px 24px 24px;
  border-right: 1px solid rgba(205, 163, 106, 0.26);
  border-bottom: 1px solid rgba(205, 163, 106, 0.26);
  background: rgba(0, 0, 0, 0.22);
}

.why-grid svg {
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  color: var(--gold-bright);
  stroke-width: 1.35;
}

.why-grid h3 {
  margin-bottom: 10px;
  color: #fff8eb;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.why-grid p {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.58;
}

.about-page-cta {
  min-height: 176px;
  padding: 34px 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  background: linear-gradient(135deg, rgba(7, 9, 9, 0.94), rgba(4, 5, 5, 0.98));
  border-bottom: 1px solid rgba(205, 163, 106, 0.28);
}

.about-page-cta h2 {
  max-width: 620px;
  margin-bottom: 12px;
}

.about-page-cta p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
}

.about-page-simple {
  padding-bottom: 0;
}

.about-essay {
  padding: 176px 64px 64px;
  background:
    radial-gradient(circle at 78% 8%, rgba(205, 163, 106, 0.1), transparent 24rem),
    #020303;
}

.about-essay-hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.76fr) minmax(320px, 0.54fr);
  align-items: center;
  gap: 54px;
  max-width: 1180px;
  margin: 0 auto;
}

.about-page-simple .about-founder-visual {
  min-height: 330px;
  border: 0;
  background: transparent;
}

.about-page-simple .about-founder-visual::after {
  display: none;
}

.about-page-simple .about-founder-visual img {
  filter: none;
}

.about-essay-intro {
  max-width: 560px;
}

.about-essay-intro .eyebrow {
  font-size: 18px;
  letter-spacing: 0.08em;
}

.about-essay-intro p:not(.eyebrow),
.about-essay-body p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.78;
}

.about-essay-intro p:not(.eyebrow) {
  margin-bottom: 16px;
}

.about-essay-intro p:last-child,
.about-essay-body p:last-child {
  margin-bottom: 0;
}

.about-essay-body {
  max-width: 820px;
  margin: 54px auto 0;
}

.about-essay-body h2 {
  max-width: 680px;
  margin-bottom: 18px;
  color: #fbf5eb;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.08;
}

.about-section-heading {
  font-size: 30px !important;
  line-height: 1.1 !important;
}

.about-text-divider {
  width: 100%;
  height: 1px;
  margin: 42px 0 38px;
  background: linear-gradient(90deg, rgba(205, 163, 106, 0.42), transparent);
}

.about-principles {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 54px;
  row-gap: 26px;
}

.about-principles div {
  padding-top: 17px;
  border-top: 1px solid rgba(205, 163, 106, 0.24);
}

.about-principles h3 {
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.about-principles p {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.66;
}

.about-closing {
  margin-top: 30px;
  padding-top: 14px;
  border-top: 1px solid rgba(205, 163, 106, 0.24);
  color: var(--muted) !important;
  font-family: var(--sans);
  font-size: 13px !important;
  line-height: 1.45 !important;
  text-align: center;
  white-space: nowrap;
}

.footer {
  position: relative;
  min-height: 78px;
  padding: 11px 42px 12px;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 80px;
  align-items: center;
  gap: 28px;
}

.footer-brand {
  width: 140px;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.footer-brand-image {
  width: 128px;
}

.footer nav {
  grid-column: 2;
  display: flex;
  justify-content: center;
  gap: clamp(21px, 2.4vw, 32px);
  color: #f1eadf;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.footer p {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  margin: 0;
  color: var(--subtle);
  font-size: 10px;
  white-space: nowrap;
}

.social-links {
  grid-column: 3;
  display: flex;
  gap: 18px;
  justify-self: end;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--gold-bright);
}

.social-links svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.5;
}

.footer-top-link {
  display: none;
}

@media (min-width: 1121px) {
  .site-frame {
    width: 100%;
    max-width: none;
  }

  .topbar {
    width: 100%;
    padding-inline: clamp(54px, 5vw, 96px);
    grid-template-columns: 190px minmax(580px, 1fr) 172px;
  }

  .main-nav {
    gap: clamp(28px, 2.8vw, 48px);
  }

  .hero {
    min-height: clamp(620px, 47vw, 780px);
    padding: clamp(190px, 14vw, 245px) clamp(70px, 7vw, 132px) 0;
  }

  .hero-media {
    background-size: cover, cover;
  }

  .hero-copy {
    width: min(31vw, 560px);
  }

  h1 {
    font-size: clamp(54px, 4.9vw, 88px);
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 520px;
    font-size: clamp(14px, 0.92vw, 17px);
    line-height: 1.72;
  }

  .values,
  .about-section,
  .proof-section,
  .contact-section {
    width: calc(100% - clamp(120px, 11vw, 220px));
  }

  .values {
    max-width: 1680px;
  }

  .values article {
    padding-inline: clamp(24px, 2.8vw, 54px);
    grid-template-columns: clamp(38px, 3vw, 52px) 1fr;
  }

  .values svg {
    width: clamp(31px, 2.4vw, 42px);
    height: clamp(31px, 2.4vw, 42px);
  }

  .values h2 {
    font-size: clamp(10px, 0.76vw, 13px);
  }

  .values p {
    max-width: 190px;
    font-size: clamp(9px, 0.68vw, 12px);
  }

  .services-section {
    width: calc(100% - clamp(120px, 11vw, 220px));
    max-width: 1680px;
    margin-inline: auto;
    padding-inline: 0;
    grid-template-columns: minmax(250px, 0.34fr) minmax(720px, 1fr);
    gap: clamp(44px, 5vw, 92px);
  }

  .section-intro h2 {
    font-size: clamp(30px, 2.3vw, 44px);
  }

  .service-card {
    min-height: clamp(160px, 12vw, 220px);
    padding: clamp(18px, 1.6vw, 30px);
  }

  .service-card svg {
    width: clamp(38px, 3vw, 54px);
    height: clamp(38px, 3vw, 54px);
  }

  .service-card h3 {
    font-size: clamp(11px, 0.78vw, 14px);
  }

  .service-card p {
    max-width: 220px;
    font-size: clamp(10px, 0.7vw, 13px);
  }

  .about-section,
  .proof-section,
  .contact-section {
    max-width: 1680px;
  }

  .services-page-hero {
    min-height: auto;
    padding: clamp(148px, 10vw, 178px) clamp(70px, 7vw, 132px) clamp(42px, 3.6vw, 58px);
  }

  .about-page-hero {
    min-height: clamp(500px, 38vw, 650px);
    padding: clamp(190px, 14vw, 245px) clamp(70px, 7vw, 132px) clamp(58px, 5vw, 90px);
    grid-template-columns: minmax(520px, 0.78fr) minmax(360px, 0.48fr);
  }

  .services-page-hero h1 {
    max-width: 860px;
    font-size: clamp(56px, 4.3vw, 82px);
  }

  .services-page-hero-copy p {
    max-width: 700px;
    font-size: clamp(16px, 1vw, 18px);
  }

  .about-page-hero-copy p:not(.eyebrow) {
    max-width: 580px;
    font-size: clamp(14px, 0.92vw, 17px);
  }

  .about-founder-visual {
    min-height: clamp(330px, 24vw, 450px);
  }

  .about-essay {
    padding: clamp(190px, 14vw, 245px) clamp(70px, 7vw, 132px) clamp(70px, 6vw, 108px);
  }

  .about-essay-hero {
    max-width: 1500px;
    grid-template-columns: minmax(560px, 0.72fr) minmax(420px, 0.46fr);
    gap: clamp(54px, 6vw, 108px);
  }

  .about-page-simple .about-founder-visual {
    min-height: clamp(330px, 24vw, 450px);
  }

  .about-essay-intro p:not(.eyebrow),
  .about-essay-body p {
    font-size: clamp(13px, 0.84vw, 16px);
  }

  .about-essay-body {
    max-width: 980px;
    margin-top: clamp(58px, 5vw, 92px);
  }

  .about-essay-body h2 {
    font-size: clamp(36px, 2.5vw, 52px);
  }

  .about-section-heading {
    font-size: clamp(30px, 2vw, 38px) !important;
  }

  .about-closing {
    font-size: clamp(13px, 0.84vw, 16px) !important;
  }

  .service-detail-list,
  .services-page-cta,
  .about-story,
  .why-section,
  .about-page-cta {
    width: calc(100% - clamp(120px, 11vw, 220px));
    max-width: 1680px;
  }

  .service-detail-card {
    grid-template-columns: minmax(360px, 0.38fr) minmax(0, 1fr);
    min-height: clamp(320px, 22vw, 430px);
  }

  .service-detail-media {
    min-height: clamp(320px, 22vw, 430px);
  }

  .service-detail-copy {
    padding: clamp(38px, 3.6vw, 70px) clamp(48px, 5vw, 92px);
  }

  .service-detail-copy h2,
  .services-page-cta h2 {
    font-size: clamp(32px, 2.35vw, 48px);
  }

  .service-detail-copy p:not(.eyebrow),
  .services-page-cta p:not(.eyebrow),
  .service-detail-copy li,
  .about-story-main p,
  .why-intro p,
  .about-story-side p,
  .about-page-cta p:not(.eyebrow),
  .why-grid p {
    font-size: clamp(12px, 0.82vw, 15px);
  }

  .about-story-main {
    padding: clamp(44px, 4.2vw, 78px) clamp(48px, 5vw, 92px);
  }

  .about-story-side {
    padding: clamp(44px, 4vw, 78px) clamp(38px, 3.8vw, 68px);
  }

  .about-story-side strong,
  .why-intro h2,
  .about-page-cta h2 {
    font-size: clamp(32px, 2.35vw, 48px);
  }

  .why-section {
    padding: clamp(44px, 4.2vw, 78px) clamp(48px, 5vw, 92px);
  }

  .why-grid article {
    min-height: clamp(240px, 16vw, 330px);
    padding: clamp(26px, 2.4vw, 44px);
  }

  .about-section {
    grid-template-columns: 39% 61%;
  }

  .about-copy {
    padding: clamp(30px, 3.5vw, 60px) clamp(42px, 4.8vw, 82px);
  }

  .about-copy h2,
  .contact-copy h2 {
    font-size: clamp(30px, 2.25vw, 44px);
  }

  .about-copy p:not(.eyebrow),
  .contact-copy p {
    max-width: 520px;
    font-size: clamp(11px, 0.78vw, 14px);
    line-height: 1.6;
  }

  .about-image {
    min-height: clamp(310px, 23vw, 440px);
  }

  .security-badge {
    padding: clamp(28px, 2.8vw, 48px) clamp(42px, 4.8vw, 82px);
  }

  .security-badge strong {
    font-size: clamp(24px, 2vw, 36px);
  }

  .security-badge span {
    max-width: 640px;
    font-size: clamp(11px, 0.78vw, 14px);
  }

  .contact-section {
    grid-template-columns: minmax(360px, 1.25fr) minmax(300px, 0.9fr) minmax(320px, 0.9fr);
    gap: clamp(32px, 4vw, 78px);
    padding: clamp(34px, 3.2vw, 56px) clamp(42px, 4.8vw, 82px);
  }

  .contact-list {
    padding-top: clamp(22px, 2vw, 38px);
    font-size: clamp(12px, 0.82vw, 15px);
  }

  .booking-card {
    min-height: clamp(120px, 8vw, 156px);
    padding: clamp(22px, 2vw, 34px);
  }

  .booking-card strong {
    font-size: clamp(12px, 0.82vw, 15px);
  }

  .booking-card small {
    font-size: clamp(11px, 0.76vw, 14px);
  }

  .footer {
    padding-inline: clamp(54px, 5vw, 96px);
    grid-template-columns: 190px minmax(0, 1fr) 86px;
  }
}

@media (max-width: 960px) {
  body.menu-open {
    overflow: hidden;
  }

  .topbar {
    position: sticky;
    top: 0;
    left: auto;
    width: 100%;
    min-height: auto;
    padding: 13px 20px;
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    background: rgba(3, 3, 3, 0.96);
    border-bottom: 1px solid var(--line);
    transform: none;
    backdrop-filter: blur(12px);
  }

  .brand {
    width: 118px;
    justify-self: start;
  }

  .brand-image {
    width: 118px;
    transform: none;
  }

  .main-nav {
    display: none;
  }

  .nav-offer {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 50px;
    height: 50px;
    padding: 0;
    border: 1px solid rgba(205, 163, 106, 0.72);
    color: var(--gold-bright);
    background: rgba(6, 6, 5, 0.72);
  }

  .mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
  }

  .mobile-menu-toggle span + span {
    margin-top: 0;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.72);
  }

  .mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(100%, 430px);
    height: 100dvh;
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow-y: auto;
    color: var(--text);
    background:
      linear-gradient(160deg, rgba(12, 12, 11, 0.98), rgba(2, 3, 3, 0.98)),
      url("assets/marble-dark.jpg") center / cover no-repeat;
    border-left: 1px solid rgba(205, 163, 106, 0.44);
    box-shadow: -24px 0 70px rgba(0, 0, 0, 0.58);
    transform: translateX(18px);
    transition: transform 180ms ease;
  }

  .mobile-menu.is-open .mobile-menu-panel {
    transform: translateX(0);
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
  }

  .mobile-menu-logo {
    width: 132px;
    height: auto;
  }

  .mobile-menu-close {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    padding: 0;
    border: 1px solid rgba(205, 163, 106, 0.72);
    color: var(--gold-bright);
    background: rgba(5, 5, 4, 0.66);
  }

  .mobile-menu-close svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.4;
  }

  .mobile-menu-nav {
    display: grid;
    gap: 7px;
  }

  .mobile-menu-nav .eyebrow {
    margin-bottom: 3px;
  }

  .mobile-menu-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(205, 163, 106, 0.22);
    color: #fff7eb;
    font-family: var(--display);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .mobile-menu-info {
    padding: 16px 0;
    display: grid;
    gap: 10px;
    border-block: 1px solid rgba(205, 163, 106, 0.3);
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
    line-height: 1.45;
  }

  .mobile-menu-info a,
  .mobile-menu-info span {
    min-height: 42px;
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: center;
    gap: 12px;
  }

  .mobile-menu-info svg,
  .mobile-menu-actions svg {
    width: 20px;
    height: 20px;
    color: var(--gold-bright);
    stroke-width: 1.45;
  }

  .mobile-menu-actions {
    display: grid;
    gap: 10px;
  }

  .mobile-menu-actions a {
    min-height: 52px;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(205, 163, 106, 0.72);
    color: var(--gold-bright);
    background: rgba(205, 163, 106, 0.08);
    font-family: var(--display);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .hero {
    min-height: 590px;
    padding: 86px 28px 64px;
  }

  .values,
  .about-section,
  .proof-section,
  .contact-section {
    width: calc(100% - 36px);
  }

  .values {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -28px;
  }

  .values article:nth-child(3) {
    border-left: 0;
  }

  .services-section,
  .about-section,
  .proof-section,
  .contact-section,
  .footer {
    grid-template-columns: 1fr;
  }

  .services-section {
    padding: 48px 18px 16px;
  }

  .services-page-hero {
    min-height: auto;
    padding: 42px 28px 44px;
  }

  .about-page-hero {
    min-height: auto;
    padding: 100px 28px 54px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .services-page-hero h1 {
    font-size: clamp(40px, 8vw, 58px);
  }

  .services-page-hero-copy p {
    max-width: 620px;
    font-size: 15px;
    line-height: 1.68;
  }

  .about-page-hero-copy p:not(.eyebrow) {
    max-width: 620px;
  }

  .about-founder-visual {
    min-height: 340px;
  }

  .about-essay {
    padding: 100px 28px 58px;
  }

  .about-essay-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-page-simple .about-founder-visual {
    min-height: 310px;
  }

  .about-essay-intro,
  .about-essay-body {
    max-width: 720px;
  }

  .about-essay-body {
    margin-top: 42px;
  }

  .about-essay-body h2 {
    font-size: clamp(30px, 5vw, 38px);
  }

  .about-principles {
    grid-template-columns: 1fr;
    row-gap: 22px;
  }

  .service-detail-list,
  .services-page-cta,
  .about-story,
  .why-section,
  .about-page-cta {
    width: calc(100% - 36px);
  }

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

  .service-detail-copy {
    padding: 28px;
  }

  .service-detail-copy h2,
  .services-page-cta h2 {
    font-size: clamp(30px, 5vw, 38px);
  }

  .services-page-cta {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-story,
  .why-intro,
  .about-page-cta {
    grid-template-columns: 1fr;
  }

  .about-story-main {
    border-right: 0;
    border-bottom: 1px solid rgba(205, 163, 106, 0.24);
  }

  .why-intro .eyebrow,
  .why-intro h2,
  .why-intro p {
    grid-column: auto;
  }

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

  .section-intro {
    width: 100%;
    max-width: 560px;
  }

  .section-intro h2 {
    white-space: normal;
  }

  .service-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 18px;
  }

  .outline-button {
    min-height: 48px;
  }

  .section-intro .outline-button,
  .about-copy .outline-button {
    min-height: 48px;
  }

  .values h2,
  .service-card h3 {
    font-size: 12px;
  }

  .values p,
  .service-card p {
    font-size: 12px;
    line-height: 1.45;
  }

  .about-copy p:not(.eyebrow),
  .contact-copy p,
  .booking-card small {
    font-size: 13px;
    line-height: 1.55;
  }

  .mobile-contact-actions {
    margin-top: 26px;
    display: grid;
    gap: 10px;
  }

  .mobile-contact-actions a {
    min-height: 52px;
    padding: 0 18px;
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: center;
    gap: 18px;
    border: 1px solid rgba(205, 163, 106, 0.62);
    color: #f6efe6;
    background: rgba(0, 0, 0, 0.34);
    font-family: var(--display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-contact-actions a.primary {
    border-color: rgba(240, 200, 139, 0.76);
    color: #090807;
    background: linear-gradient(135deg, #d2a76c, #a77a43);
  }

  .mobile-contact-actions svg {
    justify-self: end;
    width: 19px;
    height: 19px;
    stroke-width: 1.6;
  }

  .contact-list {
    display: none;
  }

  .booking-card {
    display: none;
  }

  .footer {
    min-height: auto;
    padding: 24px;
    gap: 16px;
  }

  .footer-brand {
    display: none;
  }

  .footer nav {
    display: none;
  }

  .footer p {
    position: static;
    transform: none;
    white-space: normal;
    font-size: 12px;
    line-height: 1.7;
  }

  .social-links {
    display: none;
  }

  .footer-top-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-self: start;
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
}

@media (max-width: 620px) {
  .form-modal {
    padding: 12px;
    place-items: end center;
  }

  .form-modal-panel {
    max-height: 94vh;
    padding: 22px;
  }

  .form-modal-header {
    gap: 16px;
  }

  .form-modal-header h2 {
    font-size: clamp(27px, 8vw, 32px);
  }

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

  .form-submit {
    width: 100%;
  }

  .services-page-hero {
    padding: 34px 24px 36px;
  }

  .about-page-hero {
    padding: 86px 24px 46px;
  }

  .services-page-hero h1 {
    font-size: clamp(34px, 9.4vw, 42px);
  }

  .about-founder-visual {
    min-height: 320px;
  }

  .about-essay {
    padding: 86px 24px 46px;
  }

  .about-page-simple .about-founder-visual {
    min-height: 280px;
  }

  .about-essay-body h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .about-section-heading {
    font-size: clamp(26px, 8vw, 31px) !important;
  }

  .about-text-divider {
    margin: 34px 0 30px;
  }

  .about-closing {
    font-size: clamp(6.4px, 1.62vw, 13px) !important;
    line-height: 1.35 !important;
    white-space: nowrap;
  }

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

  .service-detail-media {
    min-height: 205px;
    border-right: 0;
    border-bottom: 1px solid rgba(205, 163, 106, 0.26);
  }

  .service-detail-copy {
    padding: 24px;
  }

  .service-detail-copy h2,
  .services-page-cta h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .services-page-cta {
    padding: 28px 24px;
  }

  .about-story-main,
  .about-story-side,
  .why-section,
  .about-page-cta {
    padding: 28px 24px;
  }

  .story-emphasis {
    font-size: clamp(26px, 8vw, 31px) !important;
  }

  .why-intro h2,
  .about-page-cta h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

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

  .why-grid article {
    min-height: auto;
    padding: 24px;
  }

  .topbar {
    grid-template-columns: auto auto;
  }

  .brand {
    justify-self: start;
  }

  .hero {
    min-height: 580px;
    padding-top: 70px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(2, 3, 3, 0.94), rgba(2, 3, 3, 0.78)),
      linear-gradient(180deg, transparent, #020303 92%);
  }

  h1 {
    font-size: clamp(36px, 10vw, 44px);
  }

  .section-intro h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: clamp(30px, 8.6vw, 34px);
  }

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

  .values article + article,
  .values article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(205, 163, 106, 0.28);
  }

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

  .about-copy,
  .security-badge,
  .contact-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .security-badge strong {
    font-size: clamp(21px, 6vw, 23px);
  }

  .booking-card {
    grid-template-columns: 32px 1fr;
  }

  .booking-card > svg:last-child {
    display: none;
  }

  .footer {
    padding: 24px;
  }

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

  .footer p {
    white-space: normal;
  }
}
