:root {
  --ink: #17251f;
  --ink-deep: #0d1713;
  --pine: #64776a;
  --pine-soft: #dfe5de;
  --stone: #b9aa95;
  --warm: #f3efe7;
  --paper: #fbfaf7;
  --white: #ffffff;
  --muted: #667069;
  --line: rgba(23, 37, 31, 0.16);
  --page: min(1180px, calc(100vw - 48px));
  --radius: 4px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button,
summary,
a {
  outline-offset: 4px;
}

:focus-visible {
  outline: 2px solid #d7b77b;
}

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

h1,
h2,
h3 {
  font-family: "Arial Narrow", "Aptos Display", "Segoe UI", sans-serif;
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.75rem, 6vw, 5.65rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

p {
  margin-bottom: 22px;
}

main {
  overflow: hidden;
}

section[id] {
  scroll-margin-top: 84px;
}

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

.section {
  padding: 132px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--pine);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.eyebrow.light {
  color: #dce6dc;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease,
    transform 180ms ease;
}

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

.button-primary {
  background: var(--warm);
  color: var(--ink-deep);
}

.button-primary:hover {
  background: var(--white);
}

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

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

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

.button-dark:hover {
  background: var(--pine);
}

.arrow {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease;
}

a:hover .arrow {
  transform: translateX(4px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Header */
.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(to bottom, rgba(8, 17, 13, 0.72), rgba(8, 17, 13, 0.18));
  color: var(--white);
}

.header-inner {
  display: grid;
  width: min(1320px, calc(100vw - 48px));
  min-height: 94px;
  align-items: center;
  margin-inline: auto;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
}

.brand-type {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-type strong {
  font-family: "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 1.2rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-type span {
  margin-top: 5px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  padding: 36px 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 27px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.header-call {
  display: flex;
  align-items: flex-end;
  justify-self: end;
  flex-direction: column;
  line-height: 1.2;
}

.header-call span {
  margin-bottom: 6px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.header-call strong {
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.mobile-menu {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: min(920px, 100svh);
  color: var(--white);
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
  inset: 0;
}

.hero-image {
  object-fit: cover;
  object-position: center 48%;
  animation: hero-arrive 1.1s ease-out both;
}

.hero-overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 18, 14, 0.88) 0%, rgba(8, 18, 14, 0.62) 44%, rgba(8, 18, 14, 0.1) 80%),
    linear-gradient(0deg, rgba(8, 18, 14, 0.48) 0%, transparent 45%);
}

.hero-content {
  align-self: center;
  padding: 156px 0 100px;
}

.hero h1 {
  max-width: 900px;
  margin-bottom: 32px;
  font-size: clamp(4rem, 8.5vw, 8.25rem);
  letter-spacing: -0.06em;
  line-height: 0.88;
  text-wrap: balance;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

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

.hero-rating {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 44px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(8, 18, 14, 0.48);
  backdrop-filter: blur(12px);
  font-size: 0.76rem;
}

.hero-rating strong {
  font-size: 1rem;
}

.stars {
  color: #e5bf72;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.scroll-cue {
  position: absolute;
  bottom: 46px;
  left: max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@keyframes hero-arrive {
  from {
    opacity: 0.75;
    transform: scale(1.03);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Highlights */
.quick-highlights {
  background: var(--ink);
  color: var(--white);
}

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

.highlight-grid > div {
  display: flex;
  min-height: 120px;
  align-items: center;
  gap: 20px;
  padding: 24px 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.highlight-grid > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.highlight-grid span {
  color: #aebeaf;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.highlight-grid p {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* About */
.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  align-items: center;
  gap: clamp(60px, 8vw, 118px);
  grid-template-columns: minmax(300px, 0.82fr) minmax(500px, 1.18fr);
}

.about-copy h2 {
  max-width: 600px;
}

.about-copy .lead {
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.6;
}

.about-copy > p:not(.eyebrow):not(.lead) {
  max-width: 550px;
  color: var(--muted);
}

.about-copy .text-link {
  margin-top: 14px;
}

.about-visuals {
  position: relative;
  min-height: 680px;
}

.image-frame {
  overflow: hidden;
  margin: 0;
  background: var(--pine-soft);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.image-frame:hover img {
  transform: scale(1.025);
}

.image-frame figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 10px 14px;
  background: var(--paper);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-main-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 84%;
  height: 75%;
}

.about-inset-photo {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 51%;
  height: 39%;
  border: 10px solid var(--paper);
}

.about-note {
  position: absolute;
  right: 3%;
  bottom: 6%;
  display: flex;
  max-width: 220px;
  align-items: center;
  gap: 14px;
}

.about-note strong {
  color: var(--stone);
  font-family: "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 2.6rem;
  line-height: 1;
}

.about-note span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

/* Facilities */
.facilities {
  background: var(--ink-deep);
  color: var(--white);
}

.split-heading {
  display: grid;
  align-items: end;
  gap: 50px;
  margin-bottom: 72px;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
}

.split-heading h2 {
  max-width: 840px;
  margin-bottom: 0;
}

.split-heading > p {
  max-width: 440px;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.62);
}

.feature-cards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: #243129;
}

.feature-large {
  grid-column: 1 / -1;
  min-height: 600px;
}

.feature-image,
.feature-image::after {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}

.feature-image::after {
  background: linear-gradient(to top, rgba(6, 13, 10, 0.88), transparent 62%);
  content: "";
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.feature-card:hover .feature-image img {
  transform: scale(1.025);
}

.feature-card-copy {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 40px;
}

.feature-card-copy span {
  display: block;
  margin-bottom: 14px;
  color: #b5c2b7;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.feature-card-copy h3 {
  margin-bottom: 10px;
}

.feature-card-copy p {
  max-width: 500px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.amenity-list {
  display: grid;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  grid-template-columns: repeat(2, 1fr);
}

.amenity-list > div {
  display: grid;
  min-height: 82px;
  align-items: center;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  grid-template-columns: 38px 1fr;
}

.amenity-list > div:nth-child(odd) {
  margin-right: 32px;
}

.amenity-list > div:nth-child(even) {
  margin-left: 32px;
}

.amenity-list span {
  color: #9aab9e;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.amenity-list p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

/* Office */
.office {
  background: var(--warm);
}

.office-grid {
  display: grid;
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
  grid-template-columns: 1.15fr 0.85fr;
}

.office-images {
  position: relative;
  min-height: 650px;
}

.office-images img {
  position: absolute;
  object-fit: cover;
}

.office-image-primary {
  top: 0;
  left: 0;
  width: 85%;
  height: 78%;
}

.office-image-detail {
  right: 0;
  bottom: 0;
  width: 53%;
  height: 42%;
  border: 10px solid var(--warm);
}

.office-copy h2 {
  max-width: 580px;
}

.office-copy > p:not(.eyebrow) {
  max-width: 500px;
  color: var(--muted);
}

.office-copy .button {
  margin-top: 16px;
}

/* Gallery */
.gallery-section {
  background: var(--paper);
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.gallery-heading h2 {
  max-width: 800px;
  margin-bottom: 0;
}

.gallery-heading > p {
  max-width: 320px;
  margin-bottom: 8px;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  min-height: 900px;
  gap: 14px;
  grid-auto-rows: 250px;
  grid-template-columns: repeat(12, 1fr);
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.gallery-item::after {
  position: absolute;
  background: linear-gradient(to top, rgba(8, 17, 13, 0.58), transparent 44%);
  content: "";
  inset: 0;
  pointer-events: none;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item figcaption {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 18px;
  left: 22px;
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-tall {
  grid-column: span 4;
  grid-row: span 2;
}

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

.gallery-standard {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: span 5;
}

.gallery-item:nth-child(5) {
  grid-column: span 3;
}

.restroom-showcase {
  display: grid;
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
  margin-top: 110px;
  padding: 64px;
  background: var(--pine-soft);
  grid-template-columns: 0.75fr 1.25fr;
}

.restroom-showcase h3 {
  max-width: 430px;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
}

.restroom-showcase img {
  width: 100%;
  aspect-ratio: 1.6;
  object-fit: cover;
}

/* Video */
.video-section {
  padding: 120px 0;
  background: var(--ink);
  color: var(--white);
}

.video-grid {
  display: grid;
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
  grid-template-columns: 0.55fr 1.45fr;
}

.video-copy h2 {
  max-width: 430px;
  margin-bottom: 24px;
}

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

.video-frame {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.video-frame::before {
  position: absolute;
  top: -18px;
  right: 40px;
  padding: 4px 12px;
  background: var(--ink);
  color: #aebdaf;
  content: "Property view";
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-frame video {
  width: 100%;
  max-height: 650px;
  aspect-ratio: 16 / 10;
  background: #050a08;
  object-fit: cover;
}

/* Trust */
.trust {
  padding-top: 100px;
  padding-bottom: 100px;
  background: var(--warm);
}

.trust-card {
  display: grid;
  align-items: center;
  gap: 48px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: auto 1fr auto;
}

.trust-score {
  color: var(--stone);
  font-family: "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.75;
}

.trust-copy .eyebrow {
  margin-bottom: 16px;
}

.trust-copy h2 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
}

.trust-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 0.82rem;
}

.trust-dog {
  display: flex;
  max-width: 270px;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--paper);
}

.trust-dog > span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--pine);
  color: var(--white);
  font-size: 0.75rem;
}

.trust-dog p {
  display: flex;
  margin: 0;
  flex-direction: column;
}

.trust-dog strong {
  font-size: 0.9rem;
}

.trust-dog small {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.5;
}

/* Location */
.location {
  background: var(--paper);
}

.location-grid {
  display: grid;
  align-items: center;
  gap: clamp(70px, 9vw, 130px);
  grid-template-columns: 0.8fr 1.2fr;
}

.location-copy h2 {
  max-width: 600px;
}

.location-copy address {
  margin-bottom: 32px;
  color: var(--muted);
  font-style: normal;
  font-size: 1.05rem;
}

.location-copy address span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 800;
}

.location-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.location-card {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: #e5e4dd;
}

.map-lines {
  position: absolute;
  background: repeating-linear-gradient(35deg, transparent 0 90px, rgba(23, 37, 31, 0.035) 90px 92px),
    repeating-linear-gradient(-35deg, transparent 0 120px, rgba(23, 37, 31, 0.035) 120px 123px);
  inset: 0;
}

.road {
  position: absolute;
  display: block;
  height: 10px;
  border: 2px solid rgba(100, 119, 106, 0.34);
  border-right: 0;
  border-left: 0;
  transform-origin: left;
}

.road-one {
  top: 20%;
  left: -10%;
  width: 120%;
  transform: rotate(15deg);
}

.road-two {
  top: 82%;
  left: -5%;
  width: 110%;
  transform: rotate(-30deg);
}

.road-three {
  top: -5%;
  left: 70%;
  width: 100%;
  transform: rotate(76deg);
}

.map-pin {
  position: absolute;
  top: 34%;
  left: 58%;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 8px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 18px 35px rgba(23, 37, 31, 0.25);
  color: var(--white);
  font-family: "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
}

.location-proof {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  display: grid;
  align-items: center;
  gap: 24px;
  padding: 18px;
  background: rgba(251, 250, 247, 0.96);
  box-shadow: 0 16px 45px rgba(23, 37, 31, 0.13);
  grid-template-columns: 115px 1fr;
}

.location-proof img {
  width: 115px;
  height: 115px;
  object-fit: cover;
  object-position: center 38%;
}

.location-proof strong {
  display: block;
  margin-top: 5px;
  font-size: 1.05rem;
}

.location-proof p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

/* Final call to action */
.final-cta {
  position: relative;
  display: grid;
  min-height: 720px;
  align-items: center;
  color: var(--white);
  isolation: isolate;
}

.final-cta > img,
.final-cta-overlay {
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
  inset: 0;
}

.final-cta > img {
  object-fit: cover;
  object-position: center;
}

.final-cta-overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 17, 13, 0.92), rgba(8, 17, 13, 0.56) 58%, rgba(8, 17, 13, 0.18));
}

.final-cta-content {
  padding: 100px 0;
}

.final-cta h2 {
  max-width: 850px;
}

.final-cta-content > p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

/* Footer */
.site-footer {
  padding: 78px 0 28px;
  background: var(--ink-deep);
  color: var(--white);
}

.footer-grid {
  display: grid;
  gap: 50px;
  padding-bottom: 70px;
  grid-template-columns: 1.5fr 1fr 0.6fr;
}

.footer-brand {
  align-self: start;
}

.footer-address > span,
.footer-contact > span {
  display: block;
  margin-bottom: 12px;
  color: #94a397;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-address p,
.footer-contact a {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  line-height: 1.7;
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 20px;
  }

  .header-inner {
    grid-template-columns: 1fr auto 1fr;
  }

  .about-grid,
  .office-grid,
  .location-grid {
    gap: 60px;
  }

  .about-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .about-visuals,
  .office-images {
    min-height: 580px;
  }

  .trust-card {
    grid-template-columns: auto 1fr;
  }

  .trust-dog {
    display: none;
  }
}

@media (max-width: 860px) {
  :root {
    --page: min(100% - 36px, 700px);
  }

  .section {
    padding: 94px 0;
  }

  .header-inner {
    width: calc(100vw - 36px);
    min-height: 82px;
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-call {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
    justify-self: end;
  }

  .mobile-menu summary {
    padding: 11px 0 11px 18px;
    cursor: pointer;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    list-style: none;
    text-transform: uppercase;
  }

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

  .mobile-menu summary::after {
    display: inline-block;
    width: 16px;
    height: 8px;
    margin-left: 10px;
    border-top: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    content: "";
    vertical-align: 2px;
  }

  .mobile-menu[open] summary::after {
    border-bottom: 0;
  }

  .mobile-menu nav {
    position: absolute;
    top: 58px;
    right: 0;
    display: flex;
    width: min(320px, calc(100vw - 36px));
    padding: 10px 24px;
    background: var(--paper);
    box-shadow: 0 20px 50px rgba(8, 18, 14, 0.25);
    color: var(--ink);
    flex-direction: column;
  }

  .mobile-menu nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-menu nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 820px;
  }

  .hero h1 {
    max-width: 690px;
  }

  .hero-content {
    padding-top: 135px;
  }

  .hero-rating {
    right: 18px;
    bottom: 30px;
  }

  .scroll-cue {
    display: none;
  }

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

  .highlight-grid > div:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .highlight-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .about-grid,
  .office-grid,
  .video-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .about-visuals {
    min-height: 640px;
  }

  .split-heading {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-large {
    min-height: 480px;
  }

  .gallery-grid {
    min-height: auto;
    grid-auto-rows: 240px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-tall,
  .gallery-wide,
  .gallery-standard,
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    grid-column: span 1;
    grid-row: span 2;
  }

  .gallery-wide {
    grid-column: 1 / -1;
  }

  .restroom-showcase {
    padding: 42px;
    grid-template-columns: 1fr;
  }

  .video-grid {
    gap: 36px;
  }

  .video-copy h2,
  .video-copy > p {
    max-width: 600px;
  }

  .location-card {
    min-height: 560px;
  }

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

  .footer-contact {
    grid-column: 2;
  }
}

@media (max-width: 600px) {
  :root {
    --page: calc(100vw - 32px);
  }

  body {
    font-size: 15px;
  }

  h2 {
    font-size: clamp(2.65rem, 14vw, 4.2rem);
  }

  .section {
    padding: 78px 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-type strong {
    font-size: 1.02rem;
  }

  .brand-type span {
    font-size: 0.5rem;
  }

  .hero {
    min-height: 800px;
  }

  .hero-image {
    object-position: 60% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(8, 18, 14, 0.88), rgba(8, 18, 14, 0.42)),
      linear-gradient(0deg, rgba(8, 18, 14, 0.6), transparent 55%);
  }

  .hero-content {
    align-self: start;
    padding: 154px 0 150px;
  }

  .hero h1 {
    margin-bottom: 25px;
    font-size: clamp(3.7rem, 18vw, 5.6rem);
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
    justify-content: space-between;
  }

  .hero-rating {
    right: 16px;
    bottom: 20px;
    left: 16px;
    justify-content: space-between;
    font-size: 0.7rem;
  }

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

  .highlight-grid > div {
    min-height: 82px;
    padding: 18px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .about-visuals {
    min-height: 500px;
  }

  .about-main-photo {
    width: 94%;
    height: 70%;
  }

  .about-inset-photo {
    width: 58%;
    height: 36%;
    border-width: 7px;
  }

  .about-note {
    right: 0;
    bottom: 3%;
    max-width: 150px;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .about-note strong {
    font-size: 2rem;
  }

  .split-heading {
    gap: 10px;
    margin-bottom: 48px;
  }

  .feature-cards {
    grid-template-columns: 1fr;
  }

  .feature-large {
    grid-column: auto;
  }

  .feature-card,
  .feature-large {
    min-height: 420px;
  }

  .feature-card-copy {
    padding: 26px;
  }

  .amenity-list {
    margin-top: 58px;
    grid-template-columns: 1fr;
  }

  .amenity-list > div:nth-child(odd),
  .amenity-list > div:nth-child(even) {
    margin: 0;
  }

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

  .office-image-primary {
    width: 92%;
    height: 75%;
  }

  .office-image-detail {
    width: 60%;
    height: 40%;
    border-width: 7px;
  }

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

  .gallery-grid {
    display: flex;
    flex-direction: column;
  }

  .gallery-item {
    min-height: 360px;
  }

  .gallery-item.gallery-wide {
    min-height: 280px;
  }

  .restroom-showcase {
    margin-top: 70px;
    padding: 28px;
  }

  .video-section {
    padding: 78px 0;
  }

  .video-frame {
    padding: 7px;
  }

  .trust {
    padding: 68px 0;
  }

  .trust-card {
    align-items: start;
    gap: 30px;
    grid-template-columns: 1fr;
  }

  .trust-score {
    font-size: 6rem;
  }

  .trust-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

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

  .location-card {
    min-height: 470px;
  }

  .map-pin {
    top: 26%;
    left: 55%;
  }

  .location-proof {
    right: 16px;
    bottom: 16px;
    left: 16px;
    gap: 14px;
    padding: 12px;
    grid-template-columns: 90px 1fr;
  }

  .location-proof img {
    width: 90px;
    height: 90px;
  }

  .final-cta {
    min-height: 720px;
  }

  .final-cta > img {
    object-position: 62% center;
  }

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

  .footer-contact {
    grid-column: auto;
  }

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

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

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