:root {
  --bg: #080c12;
  --bg-elev: #0d121a;
  --bg-soft: #111622;
  --line: rgba(74, 144, 226, 0.38);
  --line-soft: rgba(74, 144, 226, 0.14);
  --text: #e8f0f8;
  --muted: #7d95b3;
  --accent: #4a90e2;
  --accent-2: #a8d6ff;
  --accent-deep: #2a5aa0;
  --gold: #f5d76e;
  --gold-soft: rgba(245, 215, 110, 0.35);
  --logo: "Cinzel", "Times New Roman", serif;
  --display: "Cormorant Garamond", "Times New Roman", serif;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Oswald", system-ui, sans-serif;
  --radius: 0.55rem;
  --btn-radius: 0.4rem;
  --header: 5.2rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 0.75rem);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.12em;
  margin: 0;
  color: var(--text);
}

h1 {
  font-family: var(--logo);
  font-size: clamp(2.6rem, 10vw, 7.4rem);
  font-weight: 600;
  letter-spacing: 0.18em;
}

h2 {
  font-size: clamp(2.1rem, 5.4vw, 3.8rem);
  letter-spacing: 0.08em;
}

h3 {
  font-size: 1.35rem;
  letter-spacing: 0.1em;
}

p {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  padding: 0.7rem 1rem;
  background: var(--accent);
  color: #080c12;
  font-weight: 600;
  border-radius: var(--btn-radius);
}

.skip-link:focus {
  top: 1rem;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 60;
  background: transparent;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent-2));
}

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: 3.6rem 0 2rem;
  position: relative;
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-lead {
  margin-top: 1rem;
  max-width: 36rem;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.lead {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.35;
  color: var(--text);
}

.glass {
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--btn-radius);
  border: 1px solid transparent;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  gap: 0.55rem;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
}

.btn--primary {
  background: linear-gradient(180deg, var(--accent-2), var(--accent) 45%, var(--accent-deep));
  color: #080c12;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.4);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--accent-2);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--accent-2);
}

.btn--large {
  min-height: 3.6rem;
  padding: 1rem 2.2rem;
  font-size: 1rem;
  letter-spacing: 0.18em;
  gap: 0.65rem;
}

.btn svg {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
}

.btn--large svg {
  width: 1.35rem;
  height: 1.35rem;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: var(--header);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(8, 12, 18, 0.96), rgba(8, 12, 18, 0.78));
}

.site-header.is-scrolled {
  background: rgba(8, 12, 18, 0.98);
  border-bottom-color: var(--gold-soft);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.35;
  transition: opacity 0.4s var(--ease);
}

.site-header.is-scrolled::after {
  opacity: 0.65;
}

.header-inner {
  width: min(1200px, calc(100% - 1.5rem));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--accent);
  min-width: 0;
  flex: 0 0 auto;
  margin-right: 1.5rem;
}

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

.brand span {
  font-family: var(--logo);
  font-size: clamp(1.05rem, 2.5vw, 1.45rem);
  letter-spacing: 0.26em;
  color: var(--text);
  white-space: nowrap;
  background: linear-gradient(90deg, var(--accent-2), var(--gold), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  position: fixed;
  top: var(--header);
  left: 0;
  width: 100vw;
  max-width: 100%;
  height: calc(100dvh - var(--header));
  background: rgba(8, 12, 18, 0.98);
  transform: translate3d(100%, 0, 0);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.45s var(--ease), visibility 0s linear 0.45s;
  padding: 1.6rem 1.4rem 2.4rem;
  z-index: 39;
  overflow-y: auto;
}

.nav.is-open {
  transform: none;
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.45s var(--ease), visibility 0s;
}

.nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.nav a {
  display: block;
  font-size: clamp(1.8rem, 8vw, 2.4rem);
  font-family: var(--display);
  letter-spacing: 0.1em;
  padding: 0.65rem 0;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  margin-left: auto;
  padding-left: 1.5rem;
}

.header-buy,
.header-work {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.55rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--btn-radius);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
  flex-shrink: 0;
}

.header-buy {
  background: linear-gradient(180deg, var(--accent-2), var(--accent) 45%, var(--accent-deep));
  color: #080c12;
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.header-buy:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.header-work {
  background: rgba(8, 12, 18, 0.7);
  color: var(--gold);
  border-color: var(--gold-soft);
}

.header-work:hover {
  background: rgba(245, 215, 110, 0.08);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.nav-toggle {
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid var(--line);
  border-radius: var(--btn-radius);
  background: rgba(8, 12, 18, 0.8);
  display: grid;
  place-content: center;
  gap: 6px;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--accent-2);
  transition: transform 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header));
  display: grid;
  align-items: end;
  overflow: hidden;
  margin-top: var(--header);
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  will-change: transform;
  transform: scale(1.05);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 12, 18, 0.82) 0%, rgba(8, 12, 18, 0.45) 42%, rgba(8, 12, 18, 0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 7.5rem;
}

.hero-slogan {
  margin-top: 0.4rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  color: var(--accent-2);
  letter-spacing: 0;
}

.hero-lead {
  margin: 1.2rem 0 1.8rem;
  max-width: 34rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-next {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  box-sizing: border-box;
  flex-shrink: 0;
  width: 18.5rem;
  min-width: 18.5rem;
  max-width: 100%;
  height: 3.1rem;
  min-height: 3.1rem;
  margin: 1.7rem auto 0;
  padding: 0.4rem 0.9rem;
  color: var(--gold);
  border: 1px solid var(--gold-soft);
  border-radius: var(--btn-radius);
  background: rgba(8, 12, 18, 0.72);
  box-shadow: 0 0 0 1px rgba(245, 215, 110, 0.08), 0 10px 28px rgba(0, 0, 0, 0.35);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.page-next:hover {
  color: #ffe9a3;
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(245, 215, 110, 0.28);
  transform: translateY(-2px);
}

.page-next__label {
  font-size: 0.86rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}

.page-next__to {
  color: var(--accent-2);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-next__arrow {
  position: relative;
  width: 1.35rem;
  height: 1.35rem;
  margin: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(245, 215, 110, 0.08);
  animation: page-next-bounce 1.5s var(--ease) infinite;
}

.page-next__arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  width: 0.48rem;
  height: 0.48rem;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: translate(-50%, -50%) rotate(45deg);
}

.page-next__arrow--up {
  animation-name: page-next-bounce-up;
}

.page-next__arrow--up::after {
  top: 58%;
  transform: translate(-50%, -50%) rotate(-135deg);
}

.page-next--hero {
  position: absolute;
  left: 50%;
  bottom: 1.3rem;
  z-index: 3;
  margin: 0;
  transform: translateX(-50%);
}

.page-next--hero:hover {
  transform: translateX(-50%) translateY(-2px);
}

.split {
  display: grid;
  gap: 1.2rem;
  align-items: start;
}

.split__visual {
  margin: 0;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  align-self: start;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--bg-elev);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.split__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.split__panel {
  min-height: 0;
  display: grid;
  align-content: center;
  gap: 1.1rem;
}

.split__panel .section-lead {
  margin-top: 0;
  max-width: none;
}

.split__visual figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  margin: 0;
  padding: 0.4rem 0.75rem;
  background: rgba(8, 12, 18, 0.78);
  border: 1px solid var(--line);
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.about-copy {
  padding: 1.8rem 1.5rem;
  gap: 1rem;
}

.about-copy .lead {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--text);
}

.about-copy p:not(.lead) {
  color: var(--muted);
}

.values {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.values li {
  display: grid;
  grid-template-columns: 5.2rem 1fr;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 0.75rem 0.55rem 0.55rem;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: var(--bg-elev);
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
  min-height: 0;
}

.values li:hover {
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(74, 144, 226, 0.12);
  transform: translateY(-2px);
}

.values img {
  width: 5.2rem;
  height: 5.2rem;
  object-fit: cover;
  display: block;
  border-radius: calc(var(--radius) - 0.15rem);
}

.values span {
  display: block;
  margin: 0 0 0.2rem;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.values p {
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.4;
}

.why {
  background:
    linear-gradient(180deg, #080c12, #0d121a 40%, #080c12);
}

.why-grid {
  display: grid;
  gap: 1rem;
}

.why-card {
  padding: 1.7rem 1.5rem 1.8rem;
  background: linear-gradient(180deg, rgba(17, 22, 34, 0.96), rgba(13, 18, 26, 0.88));
  border-left: 3px solid var(--gold);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.why-num {
  color: var(--gold);
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  font-weight: 600;
}

.why-card h3 {
  margin: 0.7rem 0;
}

.why-card p {
  color: var(--muted);
}

.gallery {
  display: grid;
  gap: 0.85rem;
}

.gallery__item {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  min-height: 13rem;
  background: var(--bg-elev);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 13rem;
  transition: transform 1.2s var(--ease);
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__item figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.35rem 0.75rem;
  background: rgba(8, 12, 18, 0.78);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.location-card {
  padding: 1.6rem 1.4rem;
  gap: 1rem;
  background: rgba(13, 18, 26, 0.88);
}

.location-kicker {
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.location-lead {
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1.35;
  margin: 0;
  letter-spacing: 0.08em;
}

.location-list {
  display: grid;
  gap: 0.45rem;
}

.location-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.95rem;
}

.location-list li span:last-child {
  color: var(--accent-2);
}

.location-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.location-card .btn {
  justify-self: start;
}

.contact-panel {
  padding: 1.5rem 1.3rem;
  gap: 1.15rem;
  background: rgba(13, 18, 26, 0.9);
}

.contact-panel--partner {
  text-align: center;
  justify-items: center;
  gap: 1.5rem;
}

.contact-panel--partner .section-lead {
  margin-left: auto;
  margin-right: auto;
}

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

.contact-list li {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.7rem;
  row-gap: 0.15rem;
  align-items: center;
}

.contact-icon {
  grid-row: 1 / span 2;
  grid-column: 1;
  align-self: center;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--bg-elev);
}

.contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-list span:not(.contact-icon) {
  grid-row: 1;
  grid-column: 2;
  align-self: center;
  display: block;
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-list a {
  grid-row: 2;
  grid-column: 2;
  font-family: var(--serif);
  font-size: 1.2rem;
  overflow-wrap: anywhere;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 0.35s var(--ease), color 0.35s var(--ease);
}

.contact-list a:hover {
  color: var(--accent);
  background-size: 100% 1px;
}

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

@media (min-width: 560px) {
  .contact-list--buyers,
  .contact-actions {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.contact-actions .btn {
  width: 100%;
  min-height: 2.6rem;
  padding: 0.5rem 0.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  gap: 0.45rem;
  white-space: nowrap;
}

.contact-actions .btn svg {
  width: 1.05rem;
  height: 1.05rem;
}

.site-footer {
  padding: 3rem 0 2.4rem;
  border-top: 1px solid var(--line-soft);
  background: var(--bg);
  color: var(--text);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-grid > div {
  display: grid;
  gap: 1rem;
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-grid nav {
  display: grid;
  gap: 0.45rem;
}

.footer-grid nav a:hover {
  color: var(--accent);
}

.footer-legal {
  display: grid;
  gap: 0.85rem;
}

.footer-legal p:last-child {
  color: var(--accent-2);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: none;
}

.reveal.is-visible {
  animation: rise 0.9s var(--ease) forwards;
  animation-delay: calc(var(--d, 0) * 90ms);
}

.reveal[data-delay="1"] { --d: 1; }
.reveal[data-delay="2"] { --d: 2; }
.reveal[data-delay="3"] { --d: 3; }
.reveal[data-delay="4"] { --d: 4; }

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes page-next-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes page-next-bounce-up {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (min-width: 720px) {
  .wrap {
    width: min(1120px, calc(100% - 3.5rem));
  }

  .section {
    padding: 4.4rem 0 2.3rem;
  }

  .hero-content {
    margin-bottom: 8.5rem;
    padding-top: calc(var(--header) * 0.25);
  }

  .split {
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
    align-items: stretch;
  }

  .split__panel {
    align-self: stretch;
    overflow: visible;
  }

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

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

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

  .gallery__item--wide,
  .gallery__item--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery__item,
  .gallery__item img {
    min-height: 14.5rem;
  }

  .contact-panel,
  .about-copy,
  .location-card {
    padding: 1.7rem 1.8rem;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.6fr 1.2fr;
    gap: 3rem;
  }
}

@media (min-width: 980px) {
  .brand img {
    width: 3rem;
    height: 3rem;
  }

  .brand span {
    font-size: 1.55rem;
    letter-spacing: 0.34em;
  }

  .nav-toggle {
    display: none;
  }

  .nav {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
    padding: 0;
    overflow: visible;
    z-index: auto;
    transition: none;
    margin-left: 2rem;
    margin-right: auto;
  }

  .nav ul {
    pointer-events: auto;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 1.8rem;
    flex-wrap: nowrap;
  }

  .nav a {
    font-family: var(--sans);
    font-size: 1.1rem;
    letter-spacing: 0.14em;
    color: var(--text);
    padding: 0.2rem 0;
    white-space: nowrap;
    position: relative;
  }

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

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

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

  .gallery {
    grid-template-columns: 1.15fr 0.9fr 0.95fr;
    grid-template-rows: 19rem 13.5rem;
  }

  .gallery__item--wide {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .gallery__item--tall {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .gallery__item {
    min-height: 0;
  }

  .gallery__item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .why-card {
    padding: 2rem 1.8rem 2.1rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-visual img,
  .split__visual img,
  .gallery__item img {
    transform: none !important;
  }
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .site-header {
  background: var(--bg);
}
