@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #efe5db;
  --bg-soft: #f7f0e7;
  --bg-cream: #fbf6ef;
  --bg-dark: #14110f;
  --bg-deep: #1b1613;
  --surface-dark: rgba(31, 24, 20, 0.72);
  --surface-dark-strong: rgba(20, 17, 15, 0.82);
  --surface-light: rgba(255, 248, 239, 0.78);
  --line-light: rgba(255, 241, 222, 0.2);
  --line-dark: rgba(54, 38, 28, 0.12);
  --text: #261c16;
  --text-soft: #6e5a4c;
  --text-on-dark: rgba(255, 246, 236, 0.92);
  --text-muted-on-dark: rgba(255, 241, 222, 0.7);
  --accent: #d1ae76;
  --accent-strong: #e0bc82;
  --accent-deep: #9b6e42;
  --shadow-soft: 0 28px 72px rgba(35, 21, 14, 0.12);
  --shadow-strong: 0 36px 120px rgba(8, 6, 5, 0.36);
  --radius: 2rem;
  --radius-lg: 2.4rem;
  --radius-xl: 2.9rem;
  --radius-sm: 1.25rem;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(209, 174, 118, 0.16), transparent 26%),
    radial-gradient(circle at 82% 12%, rgba(155, 110, 66, 0.12), transparent 24%),
    linear-gradient(180deg, #f4ece2 0%, #efe5db 38%, #f7f1e8 100%);
}

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

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

p,
ul {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", "Iowan Old Style", serif;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

h1 {
  font-size: clamp(4.1rem, 5.8vw, 7rem);
}

h2 {
  font-size: clamp(2.8rem, 4vw, 5rem);
}

h3 {
  font-size: clamp(1.65rem, 2vw, 2.15rem);
}

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

.eyebrow {
  margin-bottom: 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.eyebrow-light,
.eyebrow-soft {
  color: rgba(255, 235, 206, 0.76);
}

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

.section-dark {
  background:
    radial-gradient(circle at 20% 10%, rgba(224, 188, 130, 0.08), transparent 24%),
    linear-gradient(180deg, #191512 0%, #12100e 100%);
  color: var(--text-on-dark);
}

.section-warm {
  background:
    radial-gradient(circle at top right, rgba(209, 174, 118, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(244, 234, 221, 0.96), rgba(239, 227, 213, 0.96));
}

.section-frame {
  background: linear-gradient(180deg, #efe4d8 0%, #f4ece2 100%);
}

.section-light {
  background:
    linear-gradient(180deg, rgba(251, 246, 239, 0.92), rgba(246, 239, 231, 0.98));
}

.section-contact {
  position: relative;
  overflow: clip;
  color: var(--text-on-dark);
  background: #161210;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 0.9fr);
  gap: 2.4rem;
  align-items: end;
  margin-bottom: 2.7rem;
}

.section-heading-compact {
  align-items: start;
}

.section-lead {
  color: inherit;
  opacity: 0.82;
  font-size: 1.08rem;
  max-width: 36rem;
}

.section-dark .section-lead,
.section-frame .section-lead {
  color: var(--text-muted-on-dark);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding-top: 0.85rem;
  background: linear-gradient(180deg, rgba(20, 17, 15, 0.5) 0%, rgba(20, 17, 15, 0) 100%);
}

.site-header .container {
  display: flex;
  justify-content: center;
  width: calc(100% - 1.6rem);
  max-width: none;
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.7rem);
  width: 100%;
  min-height: 4.25rem;
  margin: 0 auto;
  padding: 0.6rem 0.9rem 0.6rem 0.8rem;
  border: 1px solid rgba(255, 242, 225, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 251, 246, 0.1), rgba(255, 244, 228, 0.04)),
    rgba(20, 17, 15, 0.74);
  box-shadow: 0 24px 54px rgba(8, 6, 5, 0.28);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(10.6rem, 12.6vw, 12rem);
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

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

.desktop-nav {
  justify-self: center;
  justify-content: center;
  gap: clamp(0.9rem, 1.35vw, 1.25rem);
  min-width: 0;
}

.desktop-nav a,
.lang-link,
.mobile-menu summary {
  color: rgba(255, 244, 228, 0.8);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  transition: color 180ms ease;
  white-space: nowrap;
}

.desktop-nav a,
.lang-link {
  padding: 0.45rem 0;
}

.desktop-nav a {
  position: relative;
  letter-spacing: 0.01em;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.08rem;
  width: 100%;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(224, 188, 130, 0.95), transparent);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.header-actions {
  justify-self: end;
  gap: 0.55rem;
}

.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  min-width: 2.55rem;
  padding: 0 0.78rem;
  border: 1px solid rgba(255, 241, 222, 0.14);
  border-radius: 999px;
  background: rgba(255, 244, 228, 0.05);
}

.site-header .button {
  min-height: 2.45rem;
  padding: 0 1rem;
  font-size: 0.92rem;
  line-height: 1;
}

.desktop-nav a:hover,
.lang-link:hover,
.text-link:hover,
.mobile-menu summary:hover {
  color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button-solid {
  color: #24170f;
  background: linear-gradient(135deg, #eed2a2 0%, var(--accent) 40%, #bc8b53 100%);
  box-shadow: 0 20px 42px rgba(177, 123, 62, 0.24);
}

.button-outline {
  color: var(--text-on-dark);
  border-color: rgba(255, 244, 228, 0.18);
  background: rgba(255, 244, 228, 0.06);
}

.button-ghost {
  color: var(--text-on-dark);
  border-color: rgba(255, 241, 222, 0.22);
  background: rgba(20, 17, 15, 0.2);
  backdrop-filter: blur(12px);
}

.button-wide {
  width: 100%;
}

.mobile-menu {
  display: none;
  position: relative;
  flex: 0 0 auto;
}

.mobile-menu summary {
  display: inline-flex;
  align-items: center;
  list-style: none;
  cursor: pointer;
}

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

.mobile-menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.55rem);
  width: min(18rem, 80vw);
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(20, 17, 15, 0.96);
  border: 1px solid rgba(255, 243, 227, 0.1);
  box-shadow: var(--shadow-strong);
}

.mobile-menu-panel a {
  display: block;
  padding: 0.75rem 0;
  color: rgba(255, 244, 228, 0.82);
}

.glass-card,
.glass-panel {
  border: 1px solid rgba(255, 236, 211, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.12), rgba(255, 244, 228, 0.05)),
    rgba(28, 22, 19, 0.58);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(22px);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: clip;
  background: #12100e;
}

.hero-media,
.contact-media {
  position: absolute;
  inset: 0;
}

.hero-media::after,
.contact-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 8, 7, 0.28) 0%, rgba(10, 8, 7, 0.5) 38%, rgba(10, 8, 7, 0.8) 100%),
    radial-gradient(circle at 20% 22%, rgba(208, 159, 95, 0.24), transparent 26%);
}

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

.hero-shell,
.contact-shell {
  position: relative;
  z-index: 1;
}

.hero-shell {
  padding: 8.15rem 0 2.55rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.74fr);
  gap: 2.35rem;
  align-items: end;
}

.hero-copy {
  max-width: 44rem;
}

.hero-title,
.hero-aside-copy h2,
.section-dark h2,
.section-contact h2,
.gallery-frame h2 {
  color: var(--text-on-dark);
}

.hero-title {
  max-width: 11.5ch;
  font-size: clamp(3.7rem, 5.1vw, 6rem);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
}

.hero-actions,
.investment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.hero-actions {
  margin-top: 2.5rem;
}

.hero-aside {
  position: relative;
  width: min(100%, 28rem);
  min-height: clamp(21rem, 34vw, 29rem);
  justify-self: end;
  overflow: hidden;
  display: grid;
  border-radius: var(--radius-xl);
  isolation: isolate;
}

.hero-aside::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(16, 12, 10, 0.14) 0%, rgba(16, 12, 10, 0.58) 58%, rgba(16, 12, 10, 0.76) 100%),
    radial-gradient(circle at 18% 12%, rgba(209, 174, 118, 0.18), transparent 36%);
}

.hero-aside::after {
  content: "";
  position: absolute;
  inset: 0.75rem;
  z-index: 2;
  border-radius: calc(var(--radius-xl) - 0.75rem);
  border: 1px solid rgba(209, 174, 118, 0.64);
  box-shadow: inset 0 0 0 1px rgba(255, 241, 222, 0.12);
  pointer-events: none;
}

.hero-aside-image {
  position: absolute;
  inset: 0;
  z-index: -1;
  min-height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.hero-aside-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.42) brightness(0.48) contrast(1.06);
  opacity: 0.52;
  transform: scale(1.06);
}

.hero-aside-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: clamp(2.35rem, 4vw, 3.4rem);
}

.hero-aside-label {
  margin-bottom: 1.35rem;
  color: var(--text-on-dark);
  font-family: "Cormorant Garamond", "Iowan Old Style", serif;
  font-size: clamp(2rem, 2.35vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.94;
  text-align: left;
}

.hero-aside-copy h2 {
  width: min(56%, 15rem);
  margin-top: 0.25rem;
  font-size: clamp(1.32rem, 1.26vw, 1.62rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  text-align: left;
  text-wrap: pretty;
}

.hero-aside-copy p:last-child {
  max-width: none;
  width: 100%;
  margin-top: auto;
  color: rgba(255, 241, 222, 0.8);
  font-size: 0.95rem;
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  min-height: 10.5rem;
  padding: 1.35rem 1.45rem;
  border-radius: var(--radius);
}

.hero-note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(255, 232, 199, 0.08);
  border: 1px solid rgba(255, 232, 199, 0.14);
}

.hero-note-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.hero-note-copy {
  display: grid;
  gap: 0.45rem;
}

.hero-note strong {
  display: block;
  color: var(--text-on-dark);
  font-size: 1.28rem;
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
}

.hero-note span {
  color: var(--text-muted-on-dark);
  font-size: 0.92rem;
}

.value-grid,
.progress-layout,
.contact-points,
.spec-grid,
.footer-grid {
  display: grid;
  gap: 1.2rem;
}

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

.value-card {
  padding: 2rem 1.8rem 1.9rem;
  border-radius: var(--radius-lg);
  color: var(--text-on-dark);
}

.value-card p {
  margin-top: 0.85rem;
  color: var(--text-muted-on-dark);
}

.icon-badge,
.spec-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.icon-badge {
  width: 3.3rem;
  height: 3.3rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(255, 232, 199, 0.08);
  border: 1px solid rgba(255, 232, 199, 0.14);
}

.icon-badge svg,
.spec-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.investment-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(1.25rem, 2vw, 1.7rem);
  padding:
    clamp(1.25rem, 2vw, 1.7rem)
    clamp(1.25rem, 2vw, 1.7rem)
    clamp(1.8rem, 2.6vw, 2.35rem);
  border: 5px solid #0b0908;
  border-radius: calc(var(--radius-xl) + 0.2rem);
  background: linear-gradient(135deg, #191613, #12100f);
  box-shadow: 0 36px 120px rgba(18, 12, 9, 0.22);
}

.investment-visual {
  min-height: 100%;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 0.1rem);
}

.investment-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.investment-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.1rem, 3.3vw, 3.4rem) clamp(1.65rem, 2.8vw, 2.8rem);
  color: var(--text-on-dark);
}

.investment-summary {
  margin-top: 1.1rem;
  color: var(--text-muted-on-dark);
  font-size: 1.06rem;
}

.spec-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
}

.spec-item {
  padding: 1rem 0;
  text-align: center;
}

.spec-item strong {
  display: block;
  margin-top: 0.55rem;
  font-size: 1.1rem;
}

.spec-item span {
  display: block;
  color: var(--text-muted-on-dark);
  font-size: 0.95rem;
}

.text-link {
  align-self: center;
  font-weight: 800;
  color: var(--accent-deep);
}

.gallery-frame {
  padding: clamp(2rem, 4vw, 3.2rem);
  border: 6px solid #050505;
  border-radius: calc(var(--radius-xl) + 0.2rem);
  background:
    radial-gradient(circle at top left, rgba(209, 174, 118, 0.08), transparent 24%),
    linear-gradient(180deg, #191715 0%, #12100f 100%);
  box-shadow: var(--shadow-strong);
}

.gallery-frame-copy {
  margin-bottom: 2rem;
}

.gallery-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.7fr);
  gap: 1.3rem;
}

.gallery-primary,
.gallery-secondary,
.progress-card figure {
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 0.15rem);
}

.gallery-primary {
  min-height: 24rem;
}

.gallery-stack {
  display: grid;
  gap: 1.3rem;
}

.gallery-secondary {
  min-height: 11.35rem;
}

.gallery-primary img,
.gallery-secondary img,
.progress-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.progress-card img {
  object-position: center center;
}

.progress-card-wide img {
  object-position: left center;
}

.progress-layout {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
}

.progress-card {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 1rem;
  padding:
    1rem
    1rem
    1.25rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 247, 0.8);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-soft);
}

.progress-card-wide {
  grid-column: span 7;
  grid-row: span 2;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.progress-layout > .progress-card:not(.progress-card-wide) {
  grid-column: 8 / -1;
  min-height: 17.5rem;
}

.progress-card figure {
  min-height: 100%;
}

.progress-copy {
  padding: 0.35rem 0.25rem 0;
  align-self: center;
}

.progress-copy p:last-child {
  margin-top: 0.8rem;
  color: var(--text-soft);
}

@media (min-width: 2200px) {
  .progress-layout {
    grid-template-columns: repeat(14, minmax(0, 1fr));
  }

  .progress-card-wide {
    grid-column: span 8;
  }

  .progress-layout > .progress-card:not(.progress-card-wide) {
    grid-column: 9 / -1;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .progress-layout > .progress-card:not(.progress-card-wide) figure {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .progress-layout > .progress-card:not(.progress-card-wide) img {
    object-position: center center;
  }

  .investment-visual img {
    object-position: left center;
  }
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.92fr);
  gap: 2.3rem;
  padding: 6.8rem 0;
  align-items: center;
}

.contact-copy-block {
  max-width: 38rem;
}

.contact-copy {
  margin-top: 1.25rem;
  color: var(--text-muted-on-dark);
}

.contact-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
}

.contact-point {
  display: grid;
  align-content: space-between;
  gap: 0.65rem;
  min-height: 8.4rem;
  padding: 1.35rem 1.45rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 238, 214, 0.16);
  background: rgba(22, 18, 16, 0.44);
  backdrop-filter: blur(12px);
}

.contact-point span {
  display: block;
  color: var(--text-muted-on-dark);
  font-size: 0.92rem;
}

.contact-point:last-child {
  grid-column: 1 / -1;
}

.contact-point strong {
  font-size: 1rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-panel {
  padding: clamp(1.6rem, 3vw, 2.6rem);
  border-radius: var(--radius-xl);
}

.panel-title {
  margin-bottom: 1rem;
  color: var(--text-on-dark);
  font-size: clamp(2rem, 3vw, 3rem);
}

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

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

.contact-form span {
  color: rgba(255, 241, 222, 0.78);
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 241, 222, 0.2);
  border-radius: 1rem;
  background: rgba(255, 250, 244, 0.12);
  color: var(--text-on-dark);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.65rem;
}

.consent input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.2rem;
}

.honeypot {
  display: none;
}

.form-status {
  min-height: 1.4rem;
  color: #f5d19b;
}

.site-footer {
  padding: 2.7rem 0 3.2rem;
  color: rgba(255, 244, 228, 0.88);
  background: #0f0c0b;
}

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

.footer-brand {
  width: clamp(10rem, 17vw, 13rem);
  margin-bottom: 1rem;
}

.footer-note,
.footer-heading {
  color: rgba(255, 244, 228, 0.62);
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin-bottom: 0.42rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-hero-title],
[data-hero-lead],
[data-stat] {
  opacity: 0;
  transform: translateY(1.4rem);
}

[data-hero-title].is-visible,
[data-hero-lead].is-visible,
[data-stat].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 780ms ease, transform 780ms ease;
}

@media (max-width: 1180px) {
  .hero-grid,
  .section-heading,
  .contact-shell,
  .investment-stage,
  .gallery-showcase,
  .progress-layout,
  .progress-card,
  .progress-card-wide {
    grid-template-columns: 1fr;
  }

  .hero-aside {
    width: min(100%, 34rem);
    justify-self: start;
  }

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

  .progress-layout > .progress-card:not(.progress-card-wide) {
    grid-column: auto;
    min-height: 0;
  }

  .progress-card-wide {
    grid-column: 1 / -1;
    grid-row: auto;
  }

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

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

  .site-header .container {
    width: min(calc(100% - 1.1rem), 1100px);
  }

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

  .header-inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
    min-height: 3.6rem;
    gap: 0.7rem;
    padding: 0.45rem 0.8rem 0.45rem 0.75rem;
  }

  .brand {
    width: 9.7rem;
  }

  .mobile-menu {
    display: block;
    margin-left: auto;
    padding-left: 0.3rem;
  }

  .mobile-menu summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.55rem;
    padding: 0 0.95rem;
    border: 1px solid rgba(255, 241, 222, 0.14);
    border-radius: 999px;
    background: rgba(255, 244, 228, 0.05);
  }

  .mobile-menu summary::after {
    content: "≡";
    margin-left: 0.45rem;
    font-size: 1.15rem;
    line-height: 1;
  }

  .section {
    padding: 5rem 0;
  }

  .hero-shell {
    padding-top: 6.6rem;
  }

  .hero-notes,
  .value-grid-editorial,
  .spec-grid,
  .progress-layout,
  .progress-card,
  .contact-points,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-primary,
  .gallery-secondary,
  .progress-card figure {
    min-height: 18rem;
  }

  .investment-panel,
  .gallery-frame,
  .contact-panel {
    padding: 1.6rem;
  }

  h1 {
    font-size: clamp(3.15rem, 13vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
}

@media (max-width: 640px) {
  .site-header .container {
    width: min(calc(100% - 0.8rem), 1100px);
  }

  .header-inner {
    min-height: 3.35rem;
    padding: 0.4rem 0.7rem 0.4rem 0.65rem;
  }

  .brand {
    width: 8.8rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-title {
    max-width: 10.8ch;
  }

  .hero-note,
  .value-card,
  .contact-point,
  .progress-copy {
    padding: 1.2rem;
  }

  .hero-note {
    grid-template-columns: 1fr;
  }

  .button,
  .button-wide {
    width: 100%;
  }

  .hero-actions,
  .investment-actions {
    align-items: stretch;
  }
}
