:root {
  --ink: #111111;
  --charcoal: #1a1a1d;
  --charcoal-2: #262626;
  --paper: #ffffff;
  --soft: #f7f5f1;
  --soft-2: #f1eee8;
  --line: #ded8cc;
  --muted: #67625b;
  --gold: #b9822f;
  --gold-light: #e7c16b;
  --blue: #244c7a;
  --teal: #236e68;
  --max: 1160px;
  --header: 104px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Avenir Next, Montserrat, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px 38px;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(222, 216, 204, 0.72);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-mark img {
  width: clamp(190px, 18vw, 270px);
  height: 78px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  position: relative;
  color: var(--charcoal);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--ink);
  display: block;
}

.hero,
.page-hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 92px 24px 112px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    linear-gradient(135deg, #ffffff 0%, #f7f5f1 55%, #ece6da 100%);
}

.page-hero {
  min-height: 64svh;
}

.compact-hero {
  min-height: 42svh;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 28px;
  background: linear-gradient(90deg, var(--gold), var(--blue), var(--teal), var(--gold-light));
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center end;
  pointer-events: none;
  opacity: 0.18;
}

.hero-backdrop img {
  width: min(680px, 50vw);
  max-height: calc(100% - 56px);
  max-width: none;
  margin-right: 4vw;
  object-fit: contain;
  filter: saturate(0.92);
}

.product-backdrop {
  opacity: 0.12;
  place-items: center end;
}

.product-backdrop img {
  width: min(780px, 56vw);
  border-radius: 8px;
}

.about-hero .hero-backdrop,
.contact-hero .hero-backdrop {
  opacity: 0.12;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.hero-content h1 {
  max-width: 820px;
  margin: 12px 0 18px;
  font-family: Georgia, Times New Roman, serif;
  font-size: 74px;
  line-height: 0.98;
  font-weight: 700;
}

.home-hero .hero-content h1 {
  font-family: Inter, Avenir Next, Montserrat, Arial, sans-serif;
  font-size: 86px;
  font-weight: 800;
}

.hero-copy,
.hero-line {
  max-width: 690px;
  margin: 0;
  color: var(--charcoal-2);
  font-size: 22px;
  line-height: 1.45;
}

.hero-line {
  margin-bottom: 16px;
  color: var(--gold);
  font-weight: 800;
  display: block;
  overflow: visible;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 800;
  text-transform: uppercase;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: var(--ink);
  color: white;
}

.button.secondary {
  background: white;
  color: var(--ink);
  border-color: var(--line);
}

.section,
.statement-band,
.cta-band {
  padding: 86px 24px;
}

.statement-band {
  background: var(--charcoal);
  color: white;
}

.statement-band .large-copy,
.dark-section p {
  color: rgba(255, 255, 255, 0.76);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.split,
.two-column {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 64px;
  align-items: start;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 700;
}

h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.18;
}

.section-heading p,
.copy-stack p,
.feature-card p,
.brand-card p,
.capability-row p,
.process-step p,
.contact-panel p,
.legal-copy p {
  color: var(--muted);
}

.section-heading p {
  max-width: 690px;
  margin: 16px 0 0;
  font-size: 18px;
}

.large-copy {
  margin: 0;
  font-size: 25px;
  line-height: 1.48;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.visual-section {
  background: var(--soft);
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.visual-grid.two-up {
  grid-template-columns: 1fr 1fr;
}

.visual-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 58px rgba(16, 16, 18, 0.08);
}

.visual-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  display: block;
}

.visual-card figcaption {
  padding: 20px;
}

.visual-card figcaption span,
.sample-card figcaption {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.visual-card figcaption strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.brand-card,
.process-step,
.contact-panel,
.inquiry-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.feature-card {
  min-height: 260px;
  padding: 26px;
}

.feature-number {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 28px;
}

.dark-section {
  background:
    linear-gradient(135deg, rgba(36, 76, 122, 0.18), rgba(35, 110, 104, 0.08)),
    var(--charcoal);
  color: white;
}

.brand-system {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: end;
}

.brand-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(231, 193, 107, 0.34);
  border-radius: 8px;
  background: rgba(231, 193, 107, 0.28);
}

.brand-panel div {
  padding: 34px;
  background: rgba(255, 255, 255, 0.06);
}

.brand-panel h3,
.brand-panel p {
  color: white;
}

.mini-label {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dark-section .mini-label {
  color: var(--gold-light);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.timeline strong {
  color: var(--gold);
  font-size: 18px;
}

.timeline span {
  color: var(--muted);
}

.cta-band {
  background: var(--soft);
}

.cta-inner {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 34px;
  align-items: center;
}

.cta-inner img {
  width: 160px;
  height: 96px;
  object-fit: contain;
}

.cta-inner h2 {
  font-size: 38px;
}

.muted-section {
  background: var(--soft);
}

.copy-stack {
  display: grid;
  gap: 18px;
}

.copy-stack p {
  margin: 0;
  font-size: 18px;
}

.copy-stack .button {
  width: fit-content;
  margin-top: 6px;
}

.visual-split-section {
  background: linear-gradient(180deg, white 0%, var(--soft) 100%);
}

.image-split {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 42px;
  align-items: center;
}

.image-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 22px 70px rgba(16, 16, 18, 0.10);
}

.image-frame img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.collage-frame {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
}

.collage-frame img {
  min-height: 340px;
  border-radius: 6px;
}

.launch-preview {
  background: white;
}

.preview-copy {
  color: var(--muted);
  font-size: 18px;
}

.product-rail {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 12px;
  align-items: stretch;
}

.product-rail img {
  width: 100%;
  min-height: 210px;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 54px rgba(16, 16, 18, 0.08);
}

.product-rail img:first-child {
  grid-row: span 2;
}

.concepts-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.86)),
    linear-gradient(135deg, #ffffff 0%, #f5f2ea 50%, #ece6da 100%);
}

.launch-feature {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: center;
}

.feature-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.feature-images {
  display: grid;
  grid-template-columns: 1fr 0.84fr;
  gap: 14px;
}

.feature-images img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 58px rgba(16, 16, 18, 0.08);
}

.concept-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.concept-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 58px rgba(16, 16, 18, 0.08);
}

.concept-card.wide {
  grid-column: span 2;
}

.concept-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: #f7f7f7;
}

.concept-card.wide img {
  aspect-ratio: 16 / 10;
}

.concept-card div {
  padding: 22px;
}

.concept-card h3 {
  margin-bottom: 8px;
}

.concept-card p {
  margin: 0;
  color: var(--muted);
}

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

.sample-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(231, 193, 107, 0.30);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.sample-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.sample-card figcaption {
  padding: 15px;
  color: rgba(255, 255, 255, 0.82);
}

.quote-block {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote-block p {
  margin: 0 0 18px;
  font-family: Georgia, Times New Roman, serif;
  font-size: 31px;
  line-height: 1.24;
}

.quote-block span {
  color: var(--muted);
  font-weight: 800;
}

.capability-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.capability-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.capability-row > span {
  color: var(--gold);
  font-weight: 900;
}

.capability-row p {
  max-width: 820px;
  margin: 0;
  font-size: 18px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-step {
  min-height: 220px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(231, 193, 107, 0.34);
}

.process-step strong {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 20px;
}

.brand-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.brand-card {
  min-height: 440px;
  padding: 38px;
  position: relative;
  overflow: hidden;
}

.brand-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--gold), var(--blue), var(--teal));
}

.brand-card h2 {
  margin-bottom: 18px;
}

.clean-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  padding-left: 24px;
  position: relative;
  color: var(--charcoal);
  font-weight: 750;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
  align-items: start;
}

.contact-panel,
.inquiry-form {
  padding: 34px;
}

.contact-link {
  display: block;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
}

.contact-link + .contact-link {
  margin-top: 8px;
}

.contact-panel p {
  margin: 26px 0 0;
}

.inquiry-form {
  display: grid;
  gap: 18px;
}

.field-group {
  display: grid;
  gap: 8px;
}

label {
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(185, 130, 47, 0.28);
  border-color: var(--gold);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h2 {
  margin: 34px 0 8px;
  font-size: 28px;
}

.site-footer {
  padding: 42px 24px;
  background: #0f0f10;
  color: white;
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.footer-inner img {
  width: 150px;
  height: 88px;
  object-fit: contain;
  display: block;
}

.footer-inner p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-weight: 800;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    padding: 12px 22px;
  }

  .hero-content h1,
  .home-hero .hero-content h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 38px;
  }

  .split,
  .two-column,
  .brand-system,
  .contact-layout,
  .brand-showcase,
  .image-split,
  .launch-feature {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .card-grid.four,
  .card-grid.three,
  .process-grid,
  .visual-grid,
  .concept-gallery,
  .sample-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .visual-grid.two-up,
  .feature-images {
    grid-template-columns: 1fr 1fr;
  }

  .concept-card.wide {
    grid-column: span 2;
  }

  .cta-inner {
    grid-template-columns: 140px 1fr;
  }

  .cta-inner .button {
    grid-column: 1 / -1;
    width: fit-content;
  }
}

@media (max-width: 720px) {
  :root {
    --header: 88px;
  }

  .site-header {
    padding: 8px 14px;
  }

  .brand-mark img {
    width: 176px;
    height: 68px;
  }

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

  .site-nav {
    position: fixed;
    top: var(--header);
    left: 0;
    right: 0;
    min-height: calc(100svh - var(--header));
    display: none;
    align-items: stretch;
    justify-content: start;
    flex-direction: column;
    gap: 0;
    padding: 18px;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--line);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 18px 4px;
    font-size: 20px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .hero,
  .page-hero {
    min-height: 78svh;
    padding: 64px 18px 88px;
  }

  .compact-hero {
    min-height: 36svh;
  }

  .hero-backdrop {
    place-items: center;
    opacity: 0.1;
  }

  .hero-backdrop img {
    width: min(480px, 94vw);
    max-height: calc(100% - 44px);
    margin-right: 0;
  }

  .hero-content h1,
  .home-hero .hero-content h1 {
    font-size: 43px;
    line-height: 1.04;
  }

  .hero-copy,
  .hero-line {
    font-size: 18px;
    line-height: 1.55;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section,
  .statement-band,
  .cta-band {
    padding: 58px 18px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 20px;
  }

  .large-copy {
    font-size: 19px;
  }

  .card-grid.four,
  .card-grid.three,
  .brand-panel,
  .process-grid,
  .visual-grid,
  .visual-grid.two-up,
  .concept-gallery,
  .sample-grid,
  .feature-images,
  .product-rail,
  .collage-frame {
    grid-template-columns: 1fr;
  }

  .concept-card.wide {
    grid-column: auto;
  }

  .image-frame img,
  .feature-images img,
  .collage-frame img {
    min-height: 260px;
  }

  .product-rail img:first-child {
    grid-row: auto;
  }

  .feature-card,
  .brand-card {
    min-height: auto;
    padding: 24px;
  }

  .timeline div,
  .capability-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .quote-block p {
    font-size: 24px;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .cta-inner img {
    width: 160px;
    height: 90px;
  }

  .cta-inner h2 {
    font-size: 30px;
  }

  .contact-panel,
  .inquiry-form {
    padding: 24px;
  }

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

  .footer-links {
    justify-content: start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
