:root {
  --bg-light: #f5f0e8;
  --bg-light-2: #efe7db;
  --text-dark: #15110d;
  --text-muted: #655b50;
  --line: rgba(20, 17, 13, 0.1);
  --white-line: rgba(255, 255, 255, 0.12);
  --gold: #d5b887;
  --gold-soft: rgba(213, 184, 135, 0.18);
  --dark-a: #0b0a08;
  --dark-b: #15110d;
  --dark-c: #1a1510;
  --radius-xl: 2rem;
  --radius-lg: 1.5rem;
  --shadow-dark: 0 30px 80px rgba(0, 0, 0, 0.3);
  --shadow-light: 0 28px 70px rgba(22, 16, 10, 0.08);
  --container: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text-dark);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(198, 168, 116, 0.16), transparent 26%),
    linear-gradient(180deg, #f8f3eb 0%, var(--bg-light) 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.04em;
  font-weight: 500;
}

p {
  margin: 0;
}

::selection {
  background: rgba(213, 184, 135, 0.3);
}

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

.section {
  position: relative;
  padding: 5rem 0;
}

.section-light {
  color: var(--text-dark);
}

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(213, 184, 135, 0.12), transparent 24%),
    linear-gradient(180deg, var(--dark-a) 0%, var(--dark-b) 100%);
}

.section-dark--brands {
  background:
    radial-gradient(circle at top right, rgba(213, 184, 135, 0.12), transparent 22%),
    linear-gradient(180deg, #0d0b09 0%, #14100c 100%);
}

.section-gallery {
  padding-top: 0;
}

.eyebrow,
.mini-eyebrow,
.pill,
.footer-label,
.contact-label {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.7rem;
  font-weight: 700;
}

.eyebrow {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
}

.eyebrow--dark {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  border-color: var(--white-line);
  backdrop-filter: blur(18px);
}

.eyebrow--light {
  background: rgba(255, 255, 255, 0.8);
  color: #6f6559;
  border-color: rgba(20, 17, 13, 0.1);
  box-shadow: 0 14px 34px rgba(22, 16, 10, 0.06);
}

.mini-eyebrow {
  color: #8a7b69;
}

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

.section-title {
  margin-top: 1.5rem;
  line-height: 0.9;
  text-wrap: balance;
}

.section-title--light {
  color: var(--text-dark);
  font-size: clamp(3rem, 8vw, 5.3rem);
}

.section-title--dark {
  color: #fff;
  font-size: clamp(3rem, 8vw, 5.6rem);
}

.section-title--center {
  margin-left: auto;
  margin-right: auto;
  max-width: 11ch;
}

.section-copy {
  margin-top: 1.5rem;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.9;
}

.section-copy--light {
  color: var(--text-muted);
}

.section-copy--small {
  font-size: 0.98rem;
  line-height: 1.85;
}

.section-copy--center {
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  display: grid;
  gap: 1.25rem;
}

.section-header--between {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 2rem;
}

.section-header--center {
  text-align: center;
  justify-items: center;
}

.section-header__logo {
  width: 11rem;
  opacity: 0.72;
}

.section-lines {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(100%, 32rem);
}

.section-lines span:first-child,
.section-lines span:last-child {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), rgba(213,184,135,0.56));
}

.section-lines span:last-child {
  background: linear-gradient(90deg, rgba(213,184,135,0.56), rgba(255,255,255,0.12), transparent);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease,
    background-color 0.3s ease, color 0.3s ease;
}

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

.button--primary {
  color: var(--text-dark);
  background: linear-gradient(135deg, #dbc192, #b99159);
  box-shadow: 0 18px 35px rgba(213, 184, 135, 0.24);
}

.button--ghost {
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.section-light .button--ghost {
  color: var(--text-dark);
  border-color: rgba(20, 17, 13, 0.1);
  background: rgba(255, 255, 255, 0.92);
}

.site-header {
  position: fixed;
  inset: 1rem 0 auto;
  z-index: 50;
}

.header-shell {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled .header-shell {
  border-color: rgba(20, 17, 13, 0.08);
  background: rgba(245, 240, 232, 0.88);
  box-shadow: 0 20px 60px rgba(22, 16, 10, 0.08);
}

.site-header.menu-open .header-shell {
  background: rgba(13, 11, 9, 0.82);
  border-color: rgba(255, 255, 255, 0.12);
}

.brand-link {
  position: relative;
  flex-shrink: 0;
  width: 10.9rem;
  height: 4.3rem;
}

.brand-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.brand-logo--dark {
  opacity: 0;
}

.site-header.is-scrolled:not(.menu-open) .brand-logo--dark {
  opacity: 1;
}

.site-header.is-scrolled:not(.menu-open) .brand-logo--light {
  opacity: 0;
}

.header-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-nav a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.header-nav a:hover,
.header-actions a:hover {
  color: #fff;
}

.site-header.is-scrolled:not(.menu-open) .header-nav a {
  color: #40372f;
}

.site-header.is-scrolled:not(.menu-open) .header-nav a:hover {
  color: var(--text-dark);
}

.header-actions .button--ghost {
  padding-inline: 1.2rem;
}

.site-header.is-scrolled:not(.menu-open) .header-actions .button--ghost {
  color: var(--text-dark);
  border-color: rgba(20, 17, 13, 0.1);
  background: rgba(255, 255, 255, 0.92);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
  width: 1rem;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header.is-scrolled:not(.menu-open) .menu-toggle {
  border-color: rgba(20, 17, 13, 0.1);
  background: rgba(255, 255, 255, 0.9);
}

.site-header.is-scrolled:not(.menu-open) .menu-toggle span {
  background: var(--text-dark);
}

.site-header.menu-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  padding: 6.5rem 1rem 1rem;
  background: rgba(13, 11, 9, 0.96);
  backdrop-filter: blur(22px);
  display: none;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  z-index: 40;
}

.site-header.menu-open .mobile-menu {
  display: flex;
}

.mobile-menu__logo {
  width: 10.25rem;
  opacity: 0.92;
}

.mobile-menu__nav {
  display: grid;
  gap: 0.85rem;
}

.mobile-menu__nav a {
  padding: 1rem 1.1rem;
  border-radius: 1.25rem;
  color: #fff;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.mobile-menu__actions {
  display: grid;
  gap: 0.8rem;
}

.hero {
  overflow: hidden;
  padding-top: 8rem;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 3rem;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin-top: 1.6rem;
  max-width: 12ch;
  font-size: clamp(4rem, 12vw, 7.25rem);
  line-height: 0.84;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 24rem;
}

.hero-line__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(216, 190, 147, 0.75);
  box-shadow: 0 0 20px rgba(216, 190, 147, 0.3);
}

.hero-line__bar {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(216,190,147,0.65), rgba(255,255,255,0.4), transparent);
}

.hero-brand-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-brand-layer {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(180vw, 118rem);
  max-width: none;
  transform: translate(-51%, -38%) rotate(-4deg) scale(1.06);
  opacity: 0.12;
  will-change: transform;
  animation: drift-primary 18s ease-in-out infinite alternate;
}

.hero-brand-layer--blur {
  transform: translate(-47%, -35%) rotate(-3deg) scale(1.03);
  opacity: 0.05;
  filter: blur(10px);
  animation: drift-secondary 22s ease-in-out infinite alternate;
}

@keyframes drift-primary {
  0% {
    transform: translate(-51%, -38%) rotate(-5deg) scale(1.04);
  }
  100% {
    transform: translate(-49%, -40%) rotate(-2deg) scale(1.09);
  }
}

@keyframes drift-secondary {
  0% {
    transform: translate(-47%, -35%) rotate(-4deg) scale(1.02);
  }
  100% {
    transform: translate(-50%, -38%) rotate(-1deg) scale(1.05);
  }
}

.stats-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 2.25rem;
}

.stat-card {
  padding: 1.2rem 1.3rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.stat-card strong {
  display: block;
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.94rem;
}

.hero-visual {
  width: min(100%, 38rem);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-dark);
}

.hero-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-panel--portrait-main {
  min-height: 28rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-panel--portrait-main > img {
  object-position: center top;
}

.hero-visual__stack {
  display: grid;
  gap: 1rem;
}

.hero-panel__caption {
  position: absolute;
  inset: auto 0 0;
  padding: 1.25rem;
  background: linear-gradient(180deg, transparent, rgba(11, 10, 8, 0.88));
}

.hero-panel__caption span,
.hero-panel__footer span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.56);
}

.hero-panel__caption strong {
  display: block;
  margin-top: 0.6rem;
  font-size: 1.65rem;
}

.hero-panel--tech {
  background: #f7f4ee;
}

.hero-panel__image {
  position: relative;
  aspect-ratio: 1.28 / 1;
  overflow: hidden;
}

.hero-panel__image--light {
  aspect-ratio: 0.9 / 1;
}

.hero-panel__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-panel__meta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 1rem;
}

.hero-panel__meta img {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
}

.hero-panel__meta strong,
.hero-panel__meta span {
  display: block;
  color: var(--text-dark);
}

.hero-panel__meta strong {
  font-size: 0.95rem;
}

.hero-panel__meta span {
  margin-top: 0.2rem;
  font-size: 0.75rem;
  color: #766b5f;
}

.hero-panel--estate {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-panel__footer {
  padding: 1rem 1.15rem 1.2rem;
  background: #11100d;
}

.hero-panel__footer p {
  margin-top: 0.55rem;
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.74);
}

.split-grid,
.founder-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
}

.stack {
  display: grid;
  gap: 1rem;
}

.mini-cards {
  display: grid;
  gap: 1rem;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.card--light {
  border: 1px solid rgba(20, 17, 13, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-light);
  backdrop-filter: blur(18px);
  padding: 1.5rem;
}

.card--dark {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  padding: 1.5rem;
}

.card--dark::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(213,184,135,0.36), transparent);
}

.brand-lockup {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 17, 13, 0.1);
  padding: 1.3rem 1.5rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(238,232,222,0.88));
}

.brand-lockup::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(198,168,116,0.12), transparent 28%),
    linear-gradient(90deg, transparent, rgba(255,255,255,0.44), transparent);
}

.brand-lockup__glow {
  position: absolute;
  right: 1.5rem;
  bottom: 1.2rem;
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  background: rgba(198, 168, 116, 0.1);
  filter: blur(32px);
}

.brand-lockup img {
  position: relative;
}

.mini-cards h3,
.benefits-grid h3,
.brand-card h3,
.quote-card h3 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 0.95;
}

.quote-card h3 {
  color: var(--text-dark);
  max-width: 14ch;
}

.quote-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.quote-grid p {
  margin-top: 0.75rem;
  color: #5d5448;
  line-height: 1.7;
}

.brand-grid,
.principles-grid,
.benefits-grid {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

.brand-card {
  position: relative;
  min-height: 32rem;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0f0d0a;
}

.brand-card__image,
.gallery-card img,
.founder-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card img,
.founder-visual img {
  position: absolute;
  inset: 0;
}

.brand-card__overlay,
.gallery-card::after {
  position: absolute;
  inset: 0;
  content: "";
}

.brand-card__overlay--estate {
  background: linear-gradient(180deg, rgba(9,17,29,0.2), rgba(9,17,29,0.55), rgba(6,7,8,0.92));
}

.brand-card__overlay--tech {
  background: linear-gradient(180deg, rgba(44,42,39,0.08), rgba(21,19,17,0.34), rgba(15,13,10,0.9));
}

.brand-card__overlay--bespoke {
  background: linear-gradient(180deg, rgba(26,23,18,0), rgba(26,23,18,0.24), rgba(18,15,11,0.88));
}

.brand-card__content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-card__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.pill {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.badge-logo {
  padding: 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
}

.badge-logo img {
  width: 4.4rem;
  height: auto;
}

.brand-card p {
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.75;
}

.brand-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.brand-card li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
}

.brand-card li::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--gold);
}

.founder-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(20, 17, 13, 0.08);
  box-shadow: var(--shadow-light);
  min-height: 30rem;
}

.gallery-layout {
  display: grid;
  gap: 1rem;
  width: min(100%, 74rem);
  margin: 3rem auto 0;
}

.gallery-card {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(20, 17, 13, 0.08);
  box-shadow: var(--shadow-light);
  background: #fff;
}

.gallery-card::after {
  background: linear-gradient(180deg, transparent, rgba(20,17,13,0.08), rgba(20,17,13,0.82));
}

.gallery-card__copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 1.4rem 1.5rem;
}

.gallery-card__copy span {
  display: block;
  color: rgba(255,255,255,0.62);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.68rem;
  font-weight: 700;
}

.gallery-card__copy p {
  margin-top: 0.55rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
}

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

.contact-label,
.footer-label {
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.5rem;
}

.contact-list a {
  color: #fff;
  font-weight: 600;
}

.form-header {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

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

.contact-form label {
  display: grid;
  gap: 0.55rem;
}

.contact-form label span {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 1.35rem;
  padding: 1rem 1rem 1.05rem;
  color: #fff;
  background: rgba(255,255,255,0.05);
  outline: none;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(213,184,135,0.58);
  background: rgba(255,255,255,0.08);
}

.contact-form option {
  color: var(--text-dark);
}

.form-footer {
  display: grid;
  gap: 1rem;
  padding-top: 0.4rem;
}

.form-status {
  min-height: 1.25rem;
  color: var(--gold);
  font-size: 0.9rem;
}

.site-footer {
  background: #090806;
  color: #fff;
  padding: 2.5rem 0 2rem;
}

.footer-shell {
  display: grid;
  gap: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.04);
  padding: 1.7rem;
}

.footer-brand img {
  width: 14rem;
  opacity: 0.92;
}

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

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

.footer-links a {
  color: rgba(255,255,255,0.66);
}

.footer-credit {
  margin-top: 1.25rem;
  text-align: center;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
}

.footer-credit a {
  color: rgba(255,255,255,0.72);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

.delay-4 {
  transition-delay: 0.32s;
}

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

  .hero-brand-layer,
  .reveal,
  .button,
  .brand-card img,
  .gallery-card img {
    animation: none;
    transition: none;
  }

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

@media (min-width: 720px) {
  .stats-grid,
  .mini-cards,
  .quote-grid,
  .form-grid,
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 960px) {
  .section {
    padding: 7rem 0;
  }

  .hero-grid,
  .split-grid,
  .founder-grid,
  .contact-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4rem;
    align-items: center;
  }

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

  .founder-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .contact-grid {
    grid-template-columns: 0.92fr 1.08fr;
  }

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

  .hero-visual {
    width: min(100%, 42rem);
    grid-template-columns: minmax(0, 0.98fr) minmax(17rem, 0.72fr);
    align-items: stretch;
    gap: 1.1rem;
  }

  .hero-panel--portrait-main {
    min-height: 40rem;
  }

  .hero-visual__stack {
    grid-template-rows: 0.92fr 1.08fr;
  }

  .gallery-layout {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-flow: dense;
  }

  .gallery-card--portrait {
    grid-column: span 7;
    grid-row: span 2;
    min-height: 38rem;
  }

  .gallery-card--estate {
    grid-column: span 5;
    min-height: 22rem;
  }

  .gallery-card--tech,
  .gallery-card--bespoke {
    grid-column: span 6;
    min-height: 16rem;
  }

  .footer-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }
}

@media (max-width: 959px) {
  .header-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 719px) {
  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .site-header {
    top: 0.75rem;
  }

  .header-shell {
    width: min(100% - 1rem, var(--container));
  }

  .hero-visual {
    width: 100%;
  }

  .section-title--light,
  .section-title--dark {
    max-width: 12ch;
  }

  .section-header--between {
    grid-template-columns: 1fr;
  }

  .section-header__logo {
    display: none;
  }
}
