:root {
  --bg: #0e0e0e;
  --bg-alt: #131313;
  --surface: #1a1a1a;
  --surface-2: #202020;
  --surface-3: #262626;
  --text: #e7e5e4;
  --muted: rgba(231, 229, 228, 0.68);
  --faint: rgba(231, 229, 228, 0.34);
  --gold: #e9c176;
  --gold-deep: #5d4201;
  --gold-text: #553c00;
  --line: rgba(118, 117, 117, 0.3);
  --soft-line: rgba(118, 117, 117, 0.15);
  --max: 1480px;
  --pad: clamp(1.25rem, 3vw, 5rem);
  --display: "Georgia", "Times New Roman", serif;
  --body: "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button,
input {
  font: inherit;
}

::selection {
  background: var(--gold);
  color: var(--gold-text);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem var(--pad);
  background: rgba(32, 32, 32, 0.66);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.brand {
  letter-spacing: 0.38em;
  font-size: 0.8rem;
  color: var(--text);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.5rem);
}

.nav-link {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(231, 229, 228, 0.7);
  transition: color 180ms ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  min-height: 2.85rem;
  padding: 0.9rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.68rem;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

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

.button--ghost {
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(233, 193, 118, 0.24);
}

.button--ghost:hover {
  background: var(--gold);
  color: var(--gold-text);
}

.button--solid {
  color: var(--gold-text);
  background: var(--gold);
}

.button--solid:hover {
  background: #f2d08d;
}

main {
  padding-top: 4.8rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 6rem var(--pad) 5rem;
}

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

.hero-image {
  filter: grayscale(1) brightness(0.55) contrast(1.02);
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(14, 14, 14, 0.25), rgba(14, 14, 14, 0.82)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.03), transparent 65%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 54rem;
}

.hero h1 {
  margin: 0;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(3.5rem, 11vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 400;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.12);
}

.hero h1 span {
  display: inline-block;
  font-style: italic;
}

.hero p {
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2.5rem;
  z-index: 1;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.scroll-indicator div {
  width: 1px;
  height: 4.5rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.section {
  padding: clamp(4.5rem, 10vw, 8rem) var(--pad);
  scroll-margin-top: 5.75rem;
}

.section--feature {
  background: var(--bg-alt);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 5vw, 4.5rem);
}

.eyebrow {
  display: block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.section-header h2,
.newsletter h2,
.philosophy-panel h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.section-header h2 {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 1;
}

.section-copy {
  max-width: 20rem;
}

.section-copy p,
.philosophy-panel p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  padding-bottom: 0.3rem;
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(233, 193, 118, 0.18);
  transition: border-color 180ms ease;
}

.text-link:hover {
  border-color: var(--gold);
}

.feature-grid,
.philosophy-grid,
.portfolio-grid {
  display: grid;
  gap: clamp(1.25rem, 2vw, 2rem);
}

.feature-grid {
  grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.9fr);
  align-items: stretch;
}

.feature-aside {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1.5rem;
}

.image-card {
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
}

.image-card img {
  transition: transform 500ms ease, filter 500ms ease;
}

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

.image-card--tall {
  aspect-ratio: 3 / 4;
}

.image-card--square {
  aspect-ratio: 1;
}

.image-card--portrait {
  aspect-ratio: 4 / 5;
}

.image-card--mid {
  aspect-ratio: 4 / 5;
}

.feature-quote {
  margin: 0;
  padding-top: 1rem;
  color: var(--text);
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.35;
}

.feature-quote cite {
  display: block;
  margin-top: 0.7rem;
  color: var(--muted);
  font-family: var(--body);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-style: normal;
}

.section--philosophy {
  background: var(--bg);
}

.philosophy-grid {
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.86fr);
  align-items: center;
}

.philosophy-panel {
  position: relative;
  padding: clamp(1.75rem, 4vw, 4rem);
  background: var(--surface-2);
  overflow: hidden;
}

.philosophy-number {
  position: absolute;
  top: -0.3rem;
  left: 0.7rem;
  color: rgba(233, 193, 118, 0.07);
  font-family: var(--display);
  font-size: clamp(6rem, 14vw, 11rem);
  line-height: 1;
  pointer-events: none;
}

.philosophy-panel .eyebrow {
  position: relative;
  z-index: 1;
}

.philosophy-panel h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 1.4rem;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.08;
}

.philosophy-panel p {
  position: relative;
  z-index: 1;
  max-width: 26rem;
}

.section--quote {
  text-align: center;
  background: #000;
  padding-top: clamp(5rem, 12vw, 9rem);
  padding-bottom: clamp(5rem, 12vw, 9rem);
}

.quote-mark {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0 auto 1.6rem;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--gold) 0 30%, transparent 31%),
    radial-gradient(circle at center, rgba(233, 193, 118, 0.55) 0 55%, transparent 56%);
  box-shadow: 0 0 0 2px rgba(233, 193, 118, 0.12);
}

.section--quote blockquote {
  margin: 0 auto;
  max-width: 40rem;
  font-family: var(--display);
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.section--quote cite {
  display: block;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-style: normal;
}

.section--portfolio {
  background: var(--bg-alt);
}

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

.portfolio-column {
  display: grid;
  gap: clamp(1rem, 1.8vw, 1.5rem);
}

.portfolio-column--offset {
  padding-top: clamp(0rem, 6vw, 4rem);
}

.section--newsletter {
  background: var(--surface);
}

.newsletter {
  max-width: 54rem;
  margin: 0 auto;
  text-align: center;
}

.newsletter h2 {
  margin-bottom: 2rem;
  font-size: clamp(2.6rem, 6vw, 4.7rem);
  line-height: 1.02;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1rem;
}

.newsletter-form input {
  width: 100%;
  padding: 1rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  outline: none;
  transition: border-color 180ms ease;
}

.newsletter-form input::placeholder {
  color: rgba(231, 229, 228, 0.32);
}

.newsletter-form input:focus {
  border-bottom-color: var(--gold);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.8rem var(--pad) 2.2rem;
  background: var(--bg);
}

.footer-copy,
.footer-links a {
  color: var(--faint);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.7rem;
}

.footer-links a {
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .feature-grid,
  .philosophy-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-column--offset {
    padding-top: 0;
  }
}

@media (max-width: 720px) {
  .topbar {
    padding-inline: 1rem;
  }

  .brand {
    letter-spacing: 0.26em;
    font-size: 0.72rem;
  }

  .button {
    padding-inline: 1rem;
  }

  .hero {
    min-height: 92vh;
    padding-inline: 1rem;
  }

  .hero p {
    letter-spacing: 0.22em;
  }

  .section {
    padding-inline: 1rem;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-form,
  .footer {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 1rem 1.25rem;
  }
}
