@charset "UTF-8";

:root {
  color-scheme: light;
  --ink-950: #101323;
  --ink-900: #1a1e39;
  --ink-800: #272d4e;
  --ink-700: #38415f;
  --gold-500: #d7ad60;
  --gold-400: #f0c96f;
  --gold-300: #f7dc58;
  --gold-100: #fff7d5;
  --aqua-600: #087f93;
  --aqua-500: #0fa8ba;
  --aqua-100: #ddf7f8;
  --sand-50: #fdfbf7;
  --sand-100: #f7f1e6;
  --white: #ffffff;
  --text: #20263a;
  --muted: #5d6678;
  --line: #dfe3ea;
  --danger: #9e2c2c;
  --success: #1f7044;
  --shadow-sm: 0 0.7rem 2rem rgb(16 19 35 / 0.09);
  --shadow-lg: 0 1.5rem 4rem rgb(16 19 35 / 0.22);
  --radius-sm: 0.45rem;
  --radius-md: 0.9rem;
  --radius-lg: 1.5rem;
  --container: 76rem;
  --topbar-height: 2.55rem;
  --header-height: 5.25rem;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Iowan Old Style, Baskerville, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  min-width: 20rem;
  margin: 0;
  background: var(--sand-50);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: var(--ink-800);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--aqua-600);
}

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

button,
summary {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

:focus-visible {
  outline: 0.2rem solid var(--gold-300);
  outline-offset: 0.2rem;
}

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

h1,
h2,
h3,
h4 {
  color: var(--ink-900);
  line-height: 1.12;
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 700;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5.8rem);
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3.7rem);
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.2rem, 3vw, 1.55rem);
}

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 2rem), 48rem);
  margin-inline: auto;
}

.section {
  padding-block: clamp(4rem, 8vw, 7.5rem);
}

.section-sm {
  padding-block: clamp(2.75rem, 5vw, 4.5rem);
}

.section-white {
  background: var(--white);
}

.section-sand {
  background: var(--sand-100);
}

.section-dark {
  background: var(--ink-900);
  color: #dce2ec;
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
  color: var(--aqua-600);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2rem;
  height: 0.12rem;
  background: currentcolor;
  content: "";
}

.section-dark .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--gold-300);
}

.section-heading {
  max-width: 50rem;
  margin-bottom: clamp(2rem, 5vw, 3.4rem);
}

.section-heading p {
  max-width: 44rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark .section-heading p {
  color: #bdc7d5;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink-950);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.topbar {
  position: sticky;
  z-index: 110;
  top: 0;
  min-height: var(--topbar-height);
  background: var(--ink-950);
  color: #dce3ed;
  font-size: 0.75rem;
}

.topbar-inner {
  display: flex;
  min-height: var(--topbar-height);
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.topbar-location {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topbar-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 0.8rem;
}

.topbar a {
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
}

.topbar a:hover {
  color: var(--gold-300);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: var(--topbar-height);
  border-bottom: 1px solid rgb(16 19 35 / 0.1);
  background: rgb(255 255 255 / 0.96);
  box-shadow: 0 0.3rem 1.5rem rgb(16 19 35 / 0.06);
  backdrop-filter: blur(0.8rem);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  min-width: 10.5rem;
  align-items: center;
  gap: 0.7rem;
  border-radius: var(--radius-sm);
  color: var(--ink-900);
  text-decoration: none;
}

.brand img {
  width: 3.8rem;
  height: 3.8rem;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 0.08rem;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.nav-toggle {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--ink-900);
  color: var(--gold-300);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 1.2rem;
  height: 0.12rem;
  border-radius: 2rem;
  background: currentcolor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before {
  position: absolute;
  top: -0.39rem;
}

.nav-toggle-lines::after {
  position: absolute;
  top: 0.39rem;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.primary-nav {
  position: fixed;
  inset: calc(var(--topbar-height) + var(--header-height)) 0 0;
  padding: 1.25rem 1rem 6rem;
  background: var(--white);
  overflow-y: auto;
}

.primary-nav[data-open="false"] {
  display: none;
}

.primary-nav[data-open="true"] {
  display: block;
}

.nav-list,
.footer-links,
.clean-list,
.fact-list,
.check-list,
.social-list,
.breadcrumbs ol,
.card-meta {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list {
  display: grid;
  gap: 0.2rem;
}

.nav-list a {
  display: flex;
  min-height: 3rem;
  align-items: center;
  padding: 0.7rem 0.8rem;
  border-radius: var(--radius-sm);
  color: var(--ink-900);
  font-size: 0.96rem;
  font-weight: 760;
  text-decoration: none;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  background: var(--gold-100);
  color: var(--ink-950);
}

.nav-list .nav-cta {
  justify-content: center;
  margin-top: 0.5rem;
  background: var(--gold-300);
  color: var(--ink-950);
}

.button-row,
.hero-actions,
.cta-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section-actions {
  margin-top: 2rem;
}

.disclosure-spaced {
  margin-top: 1.4rem;
}

.content-actions {
  margin-top: 1.5rem;
}

.center-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 0.15rem;
  background: var(--gold-300);
  color: var(--ink-950);
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.035em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--gold-400);
  color: var(--ink-950);
  transform: translateY(-0.08rem);
}

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

.button-dark:hover {
  background: var(--ink-800);
  color: var(--gold-300);
}

.button-outline {
  border-color: rgb(255 255 255 / 0.58);
  background: transparent;
  color: var(--white);
}

.button-outline:hover {
  border-color: var(--gold-300);
  background: var(--gold-300);
  color: var(--ink-950);
}

.button-link {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--aqua-600);
  font-size: 0.84rem;
}

.button-link:hover {
  background: transparent;
  color: var(--ink-900);
  transform: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(50rem, calc(100svh - var(--topbar-height)));
  align-items: end;
  background: var(--ink-950);
  isolation: isolate;
  overflow: hidden;
}

.hero-media,
.page-hero-media {
  position: absolute;
  z-index: -2;
  inset: 0;
}

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

.hero::after,
.page-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgb(16 19 35 / 0.93) 0%, rgb(16 19 35 / 0.78) 48%, rgb(16 19 35 / 0.24) 100%), linear-gradient(0deg, rgb(16 19 35 / 0.72), transparent 52%);
  content: "";
}

.hero-content {
  max-width: 47rem;
  padding-block: clamp(6rem, 13vw, 10rem) clamp(4rem, 9vw, 7rem);
  color: var(--white);
}

.hero h1 {
  margin-bottom: 1.1rem;
  color: var(--white);
}

.hero-lead {
  max-width: 40rem;
  margin-bottom: 1.7rem;
  color: #e7edf5;
  font-size: clamp(1.05rem, 2.5vw, 1.28rem);
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.1rem;
  margin-top: 1.3rem;
  color: #d0d9e5;
  font-size: 0.83rem;
  font-weight: 700;
}

.hero-note span::before {
  margin-right: 0.4rem;
  color: var(--gold-300);
  content: "◆";
  font-size: 0.62rem;
}

.trust-strip {
  position: relative;
  z-index: 2;
  background: var(--gold-300);
  color: var(--ink-950);
}

.trust-list {
  display: grid;
}

.trust-list li {
  display: grid;
  gap: 0.15rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgb(16 19 35 / 0.16);
}

.trust-list strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
}

.trust-list span {
  font-size: 0.78rem;
}

.grid-2,
.grid-3,
.grid-4,
.experience-grid,
.gallery-grid,
.form-grid,
.footer-grid,
.feature-grid,
.price-grid {
  display: grid;
  gap: 1.2rem;
}

.card,
.service-card,
.experience-card,
.price-card,
.feature-card,
.contact-card {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.service-card,
.feature-card,
.contact-card,
.price-card {
  padding: clamp(1.35rem, 4vw, 2rem);
}

.service-number {
  display: inline-grid;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 1.1rem;
  place-items: center;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
}

.service-card p,
.feature-card p,
.price-card p {
  color: var(--muted);
}

.experience-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
}

.experience-card-media {
  position: relative;
  aspect-ratio: 3 / 2;
  background: var(--ink-900);
  overflow: hidden;
}

.experience-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.experience-card:hover .experience-card-media img {
  transform: scale(1.035);
}

.rate-badge {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  padding: 0.45rem 0.7rem;
  background: var(--gold-300);
  color: var(--ink-950);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.experience-card-body {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  padding: 1.35rem;
}

.experience-card h3 {
  margin: 0;
}

.experience-card h3 a {
  color: var(--ink-900);
  text-decoration: none;
}

.experience-card p {
  margin: 0;
  color: var(--muted);
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.8rem;
  color: var(--ink-700);
  font-size: 0.78rem;
  font-weight: 760;
}

.card-meta li::before {
  margin-right: 0.35rem;
  color: var(--aqua-500);
  content: "●";
  font-size: 0.5rem;
}

.split {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 7vw, 5rem);
}

.split-media {
  position: relative;
}

.split-media::before {
  position: absolute;
  z-index: -1;
  inset: 1rem -0.7rem -0.7rem 1rem;
  border: 2px solid var(--gold-500);
  content: "";
}

.split-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.check-list {
  display: grid;
  gap: 0.65rem;
  margin-block: 1.3rem 1.6rem;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
}

.check-list li::before {
  position: absolute;
  top: 0.1rem;
  left: 0;
  color: var(--aqua-600);
  content: "✓";
  font-weight: 900;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: clamp(25rem, 55vw, 38rem);
  align-items: end;
  background: var(--ink-950);
  isolation: isolate;
  overflow: hidden;
}

.page-hero-content {
  max-width: 50rem;
  padding-block: clamp(5rem, 10vw, 8rem) clamp(3rem, 7vw, 5rem);
  color: var(--white);
}

.page-hero h1 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: clamp(2.5rem, 8vw, 5rem);
}

.page-hero p {
  max-width: 43rem;
  margin: 0;
  color: #e2e9f2;
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.breadcrumbs {
  padding-block: 0.9rem;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  font-size: 0.78rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 0.35rem;
  color: var(--gold-500);
  content: "/";
}

.breadcrumbs a {
  font-weight: 760;
  text-decoration: none;
}

.prose {
  color: var(--text);
}

.prose h2,
.prose h3 {
  margin-top: 2.2rem;
}

.prose h2:first-child,
.prose h3:first-child {
  margin-top: 0;
}

.prose a {
  font-weight: 700;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.detail-layout {
  display: grid;
  align-items: start;
  gap: clamp(2rem, 6vw, 4.5rem);
}

.detail-aside {
  display: grid;
  gap: 1rem;
}

.fact-panel {
  padding: 1.4rem;
  border-top: 0.3rem solid var(--gold-300);
  background: var(--ink-900);
  color: #e3e9f1;
  box-shadow: var(--shadow-lg);
}

.fact-panel h2,
.fact-panel h3 {
  color: var(--white);
}

.fact-list {
  display: grid;
  gap: 0.75rem;
  margin-block: 1rem 1.4rem;
}

.fact-list li {
  display: grid;
  grid-template-columns: minmax(5.3rem, 0.7fr) 1.3fr;
  gap: 0.7rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgb(255 255 255 / 0.14);
}

.fact-list strong {
  color: var(--gold-300);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.disclosure {
  padding: 1rem 1.1rem;
  border-left: 0.25rem solid var(--gold-500);
  background: var(--gold-100);
  color: var(--ink-800);
  font-size: 0.88rem;
}

.disclosure strong {
  color: var(--ink-950);
}

.price-grid {
  margin-top: 2rem;
}

.price-card {
  position: relative;
  overflow: hidden;
}

.price-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.22rem;
  background: linear-gradient(90deg, var(--gold-300), var(--aqua-500));
  content: "";
}

.price {
  margin-bottom: 0.5rem;
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1;
}

.price small {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 650;
}

.gallery-grid {
  grid-auto-flow: dense;
}

.gallery-item {
  position: relative;
  margin: 0;
  background: var(--ink-900);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.gallery-item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgb(16 19 35 / 0.9));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.faq-list summary {
  position: relative;
  padding: 1.1rem 3rem 1.1rem 1.1rem;
  color: var(--ink-900);
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 1.1rem;
  color: var(--aqua-600);
  content: "+";
  font-size: 1.4rem;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 1.1rem 1.1rem;
  color: var(--muted);
}

.form-shell {
  padding: clamp(1.2rem, 4vw, 2rem);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.form-grid {
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  color: var(--ink-900);
  font-size: 0.83rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid #bdc5d1;
  border-radius: 0;
  background: var(--white);
}

.field textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--aqua-600);
  outline: 0.15rem solid rgb(15 168 186 / 0.18);
}

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

.form-status {
  min-height: 1.5rem;
  margin-top: 0.8rem;
  font-size: 0.87rem;
  font-weight: 720;
}

.form-status[data-state="error"] {
  color: var(--danger);
}

.form-status[data-state="success"] {
  color: var(--success);
}

.contact-list {
  display: grid;
  gap: 0.8rem;
}

.contact-list strong {
  display: block;
  color: var(--ink-900);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-list a {
  font-weight: 800;
}

.cta-band {
  position: relative;
  padding-block: clamp(3.5rem, 8vw, 6rem);
  background: var(--ink-900);
  color: #dce4ee;
  overflow: hidden;
}

.cta-band::after {
  position: absolute;
  top: -8rem;
  right: -7rem;
  width: 20rem;
  height: 20rem;
  border: 3rem solid rgb(247 220 88 / 0.08);
  border-radius: 50%;
  content: "";
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
}

.cta-band h2 {
  max-width: 44rem;
  margin-bottom: 0.6rem;
  color: var(--white);
}

.cta-band p {
  max-width: 40rem;
  margin: 0;
}

.site-footer {
  padding-block: 4rem 5.5rem;
  background: var(--ink-950);
  color: #bdc6d4;
}

.footer-grid {
  gap: 2.5rem;
}

.footer-brand .brand {
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-brand .brand-subtitle {
  color: #aeb9c8;
}

.footer-brand p {
  max-width: 25rem;
}

.site-footer h2,
.site-footer h3 {
  margin-bottom: 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.site-footer a {
  color: #d9e1eb;
}

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

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 3rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgb(255 255 255 / 0.14);
  font-size: 0.78rem;
}

.mobile-actions {
  position: fixed;
  z-index: 90;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgb(255 255 255 / 0.16);
  background: var(--ink-950);
  box-shadow: 0 -0.6rem 1.8rem rgb(16 19 35 / 0.25);
}

.mobile-actions a {
  display: grid;
  min-height: 3.8rem;
  place-items: center;
  border-right: 1px solid rgb(255 255 255 / 0.14);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-actions a:last-child {
  background: var(--gold-300);
  color: var(--ink-950);
}

.error-shell {
  display: grid;
  min-height: 68vh;
  place-items: center;
  padding-block: 5rem;
  background: linear-gradient(135deg, var(--ink-950), var(--ink-800));
  color: var(--white);
  text-align: center;
}

.error-code {
  margin: 0;
  color: var(--gold-300);
  font-family: var(--font-display);
  font-size: clamp(6rem, 28vw, 14rem);
  font-weight: 800;
  line-height: 0.75;
}

.error-shell h1 {
  margin-block: 1.5rem 0.8rem;
  color: var(--white);
  font-size: clamp(2.2rem, 7vw, 4rem);
}

.error-shell p {
  max-width: 34rem;
  margin-inline: auto;
  color: #cbd5e1;
}

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

@media (min-width: 40rem) {
  .container,
  .narrow {
    width: min(calc(100% - 3rem), var(--container));
  }

  .grid-2,
  .feature-grid,
  .price-grid,
  .form-grid,
  .gallery-grid,
  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .trust-list li {
    padding-inline: 1.2rem;
    border-right: 1px solid rgb(16 19 35 / 0.16);
    border-bottom: 0;
  }

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 60rem) {
  .grid-3,
  .experience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .split,
  .detail-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  }

  .split-reverse .split-media {
    order: 2;
  }

  .detail-aside {
    position: sticky;
    top: calc(var(--topbar-height) + var(--header-height) + 1.5rem);
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

  .cta-inner {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, minmax(0, 0.8fr));
  }
}

@media (min-width: 70rem) {
  body.nav-open {
    overflow: visible;
  }

  .nav-toggle {
    display: none;
  }

  .primary-nav,
  .primary-nav[data-open="false"],
  .primary-nav[data-open="true"] {
    position: static;
    display: block;
    padding: 0;
    background: transparent;
    overflow: visible;
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: 0.08rem;
  }

  .nav-list a {
    min-height: 2.8rem;
    padding-inline: 0.55rem;
    font-size: 0.82rem;
  }

  .nav-list .nav-cta {
    margin: 0 0 0 0.5rem;
    padding-inline: 0.9rem;
    background: var(--gold-300);
  }

  .trust-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .mobile-actions {
    display: none;
  }

  .site-footer {
    padding-bottom: 4rem;
  }
}

@media (min-width: 84rem) {
  .nav-list a {
    padding-inline: 0.72rem;
    font-size: 0.88rem;
  }

  .brand img {
    width: 4.1rem;
    height: 4.1rem;
  }

  .brand-name {
    font-size: 1.18rem;
  }
}

@media (max-width: 24rem) {
  .topbar-location {
    max-width: 9.5rem;
  }

  .topbar-actions a:first-child {
    display: none;
  }

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

  .fact-list li {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

}

@media (max-width: 47.99rem) {
  .brand-subtitle {
    display: none;
  }
}

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

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

@media print {
  .topbar,
  .site-header,
  .mobile-actions,
  .cta-band,
  .site-footer,
  .hero-actions,
  .contact-actions {
    display: none !important;
  }

  body {
    background: var(--white);
    color: #000000;
  }
}
