@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Noto Serif Display";
  src: url("assets/fonts/NotoSerifDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Noto Serif Display";
  src: url("assets/fonts/NotoSerifDisplay-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

:root {
  --ink: #0d1520;
  --navy: #0b2442;
  --navy-deep: #07172d;
  --navy-soft: #18385e;
  --gold: #d7a564;
  --gold-soft: #f4d59b;
  --cream: #f7f0e5;
  --paper: #fffaf2;
  --sand: #eadfcd;
  --line: rgba(215, 165, 100, 0.28);
  --text: #2e2c29;
  --muted: rgba(46, 44, 41, 0.72);
  --white-soft: rgba(255, 255, 255, 0.78);
  --shadow-lg: 0 36px 80px rgba(7, 23, 45, 0.18);
  --shadow-md: 0 20px 46px rgba(22, 29, 36, 0.14);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --content: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(244, 213, 155, 0.35), transparent 28%),
    linear-gradient(180deg, #f5ead9 0%, #f8f1e6 30%, #fbf8f3 100%);
}

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

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

.site-bg {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.4;
  border-radius: 999px;
}

.site-bg-top {
  width: 32rem;
  height: 32rem;
  left: -10rem;
  top: -8rem;
  background: rgba(215, 165, 100, 0.36);
}

.site-bg-bottom {
  width: 28rem;
  height: 28rem;
  right: -8rem;
  bottom: 8rem;
  background: rgba(11, 36, 66, 0.12);
}

.topbar,
main,
.footer {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0 18px;
}

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

.brand-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(7, 23, 45, 0.22);
}

.brand-text {
  display: grid;
  gap: 4px;
}

.brand-text strong,
.brand-text em {
  font-style: normal;
}

.brand-text strong {
  font-family: "Noto Serif Display", serif;
  font-size: 1.26rem;
  color: var(--navy);
}

.brand-text em {
  color: rgba(46, 44, 41, 0.68);
  font-size: 0.94rem;
}

.topnav {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.78);
  border: 1px solid rgba(12, 26, 44, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 32px rgba(12, 26, 44, 0.06);
}

.topnav a {
  color: var(--navy);
  font-size: 0.95rem;
}

.hero-band {
  margin-top: 8px;
  padding: 18px 0 12px;
}

.hero-frame {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 28px;
  padding: 38px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 15% 10%, rgba(244, 213, 155, 0.18), transparent 24%),
    radial-gradient(circle at 90% 12%, rgba(244, 213, 155, 0.12), transparent 24%),
    linear-gradient(145deg, var(--navy-deep), var(--navy) 62%, #102b4b);
  box-shadow: 0 40px 100px rgba(7, 23, 45, 0.28);
}

.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-frame::before {
  inset: 16px;
  border: 1px solid rgba(244, 213, 155, 0.18);
  border-radius: 28px;
}

.hero-frame::after {
  top: 0;
  bottom: 0;
  left: 52%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(244, 213, 155, 0.16), transparent);
}

.hero-copy {
  padding: 14px 8px 14px 8px;
}

.kicker {
  margin: 0;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.76rem;
  color: rgba(244, 213, 155, 0.86);
}

.hero-copy h1,
.section-intro h2,
.contrast-copy h2,
.contact-copy h2 {
  margin: 18px 0;
  font-family: "Noto Serif Display", serif;
  line-height: 0.98;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 8vw, 6.6rem);
  color: var(--paper);
}

.hero-body {
  max-width: 57ch;
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.85;
  color: rgba(255, 250, 242, 0.78);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

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

.button-gold {
  color: var(--navy-deep);
  background: linear-gradient(135deg, #f6ddb0, #d8a25f);
  box-shadow: 0 18px 34px rgba(215, 165, 100, 0.28);
}

.button-ghost {
  color: rgba(255, 250, 242, 0.94);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.button-ghost.dark {
  color: var(--navy);
  background: rgba(255, 250, 242, 0.78);
  border: 1px solid rgba(11, 36, 66, 0.14);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.meta-card {
  padding: 16px 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-number {
  display: block;
  font-family: "Noto Serif Display", serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  color: var(--paper);
}

.meta-label {
  display: block;
  margin-top: 8px;
  color: rgba(255, 250, 242, 0.66);
  line-height: 1.55;
  font-size: 0.94rem;
}

.hero-stage {
  position: relative;
  min-height: 700px;
}

.hero-main-card,
.hero-float {
  position: absolute;
  border-radius: 28px;
  border: 1px solid rgba(244, 213, 155, 0.18);
  box-shadow: var(--shadow-lg);
}

.hero-main-card {
  top: 2%;
  right: 8%;
  width: 62%;
  min-width: 280px;
  padding: 16px 16px 18px;
  background: rgba(255, 252, 247, 0.08);
  backdrop-filter: blur(10px);
}

.stage-label {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 250, 242, 0.72);
}

.stage-main-image {
  width: 100%;
  border-radius: 22px;
}

.hero-float {
  width: 36%;
  min-width: 180px;
  padding: 14px;
  background: rgba(255, 252, 247, 0.9);
}

.hero-float p {
  margin: 0 0 10px;
  font-family: "Noto Serif Display", serif;
  font-size: 1rem;
  color: var(--navy);
}

.hero-float img {
  border-radius: 18px;
}

.hero-float-left {
  left: 0;
  bottom: 15%;
  transform: rotate(-7deg);
}

.hero-float-right {
  right: 0;
  bottom: 2%;
  transform: rotate(5deg);
}

.hero-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-rail span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(11, 36, 66, 0.08);
  background: rgba(255, 250, 242, 0.74);
  color: var(--navy);
  box-shadow: 0 12px 24px rgba(11, 36, 66, 0.05);
}

.editorial-section {
  margin-top: 28px;
}

.section-intro {
  margin-bottom: 20px;
}

.section-intro.compact {
  margin-bottom: 28px;
}

.section-intro h2,
.contrast-copy h2,
.contact-copy h2 {
  max-width: 11ch;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  color: var(--navy);
}

.story-layout {
  display: grid;
  gap: 18px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 0.92fr;
  gap: 18px;
}

.story-card,
.rhythm-panel,
.showcase-card,
.contact-panel {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.story-card {
  padding: 28px;
  background: rgba(255, 250, 242, 0.86);
  border: 1px solid rgba(11, 36, 66, 0.08);
}

.story-card-dark {
  background: linear-gradient(145deg, #102a48, #16385f);
  color: var(--paper);
  border-color: rgba(244, 213, 155, 0.16);
}

.story-index {
  display: inline-flex;
  margin-bottom: 42px;
  color: rgba(46, 44, 41, 0.46);
  font-family: "Noto Serif Display", serif;
  font-size: 2.1rem;
}

.story-card-dark .story-index {
  color: rgba(244, 213, 155, 0.72);
}

.story-card h3,
.rhythm-steps h3,
.showcase-copy h3 {
  margin: 0 0 10px;
  font-family: "Noto Serif Display", serif;
  color: var(--navy);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.story-card-dark h3 {
  color: var(--paper);
}

.story-card p,
.rhythm-steps p,
.showcase-copy p,
.contrast-copy p,
.contact-copy p {
  margin: 0;
  line-height: 1.82;
  color: var(--muted);
}

.story-card-dark p {
  color: rgba(255, 250, 242, 0.76);
}

.rhythm-panel {
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(247, 240, 229, 0.92));
  border: 1px solid rgba(215, 165, 100, 0.18);
}

.rhythm-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.rhythm-steps article {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(11, 36, 66, 0.08);
}

.rhythm-steps span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  color: var(--navy);
  background: linear-gradient(135deg, #f6ddb0, #d8a25f);
}

.showcase-list {
  display: grid;
  gap: 18px;
}

.showcase-card {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.86fr);
  gap: 22px;
  align-items: center;
  overflow: hidden;
  padding: 22px;
  background: rgba(255, 250, 242, 0.88);
  border: 1px solid rgba(11, 36, 66, 0.08);
}

.showcase-card.reverse {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 0.94fr);
}

.showcase-card.reverse .showcase-copy {
  order: 2;
}

.showcase-card.reverse img {
  order: 1;
}

.showcase-copy {
  padding: 12px 12px 12px 10px;
}

.showcase-tag {
  margin: 0 0 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--navy-soft);
}

.showcase-card img {
  width: min(100%, 400px);
  justify-self: center;
  border-radius: 28px;
  box-shadow: 0 24px 56px rgba(7, 23, 45, 0.18);
}

.contrast-band {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 20px;
  padding: 32px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(244, 213, 155, 0.16), transparent 25%),
    linear-gradient(135deg, #09172d, #102a48 72%, #17375f);
  box-shadow: 0 34px 80px rgba(7, 23, 45, 0.2);
}

.light {
  color: rgba(244, 213, 155, 0.86);
}

.contrast-copy h2 {
  color: var(--paper);
}

.contrast-copy p {
  max-width: 54ch;
  color: rgba(255, 250, 242, 0.76);
}

.contrast-points {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 14px;
}

.contrast-points span {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(244, 236, 221, 0.92));
  border: 1px solid rgba(215, 165, 100, 0.18);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0 42px;
  color: rgba(46, 44, 41, 0.62);
}

.footer p,
.footer span {
  margin: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 720ms ease, transform 720ms ease;
}

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

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

  * {
    transition: none !important;
    animation: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .hero-frame {
    grid-template-columns: 1fr;
  }

  .hero-frame::after {
    display: none;
  }

  .hero-stage {
    min-height: 620px;
  }

  .story-grid,
  .contrast-band,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .story-card:first-child {
    grid-column: span 2;
  }

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

@media (max-width: 900px) {
  .topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .topnav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-frame {
    padding: 24px;
  }

  .hero-copy h1 {
    max-width: 12ch;
    font-size: 3.2rem;
  }

  .hero-meta,
  .story-grid,
  .rhythm-steps,
  .showcase-card,
  .showcase-card.reverse {
    grid-template-columns: 1fr;
  }

  .showcase-card.reverse .showcase-copy,
  .showcase-card.reverse img {
    order: initial;
  }

  .hero-main-card {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
  }

  .hero-float {
    width: 42%;
  }

  .story-card:first-child {
    grid-column: auto;
  }

  .contact-actions {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .topbar,
  main,
  .footer {
    width: min(calc(100% - 24px), var(--content));
  }

  .hero-frame {
    border-radius: 30px;
  }

  .hero-stage {
    min-height: 560px;
  }

  .hero-float {
    width: 44%;
    min-width: 140px;
  }

  .hero-float-left {
    left: -2%;
  }

  .hero-float-right {
    right: -2%;
  }

  .contrast-band,
  .contact-panel,
  .rhythm-panel {
    padding: 22px;
  }

  .section-intro h2,
  .contrast-copy h2,
  .contact-copy h2 {
    max-width: none;
    font-size: 2.25rem;
  }
}

@media (max-width: 520px) {
  .topnav {
    gap: 14px;
    padding: 10px 12px;
  }

  .hero-copy h1 {
    font-size: 2.72rem;
  }

  .hero-body {
    font-size: 0.98rem;
  }

  .hero-stage {
    min-height: 460px;
  }

  .hero-main-card {
    padding: 12px;
  }

  .hero-float {
    display: none;
  }

  .showcase-card,
  .story-card {
    padding: 18px;
  }

  .showcase-card img {
    width: 100%;
  }

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