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

:root {
  --bg: #0a0a0a;
  --card: #111111;
  --gold: #d4a017;
  --gold-dark: #b8880f;
  --muted: rgb(159, 159, 159);
  --faint: rgb(103, 103, 103);
  --line: rgba(255, 255, 255, 0.05);
  --line-strong: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: #fff;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

img,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.header-inner {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  min-width: 0;
}

.logo-link img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav a {
  color: var(--faint);
  white-space: nowrap;
  font-size: 16px;
  font-weight: 400;
  transition: color 300ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: #fff;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 10px 24px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: #1a1a1a;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: all 300ms ease;
}

.header-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

.mobile-menu {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: transparent;
  border: 0;
}

.mobile-menu svg {
  width: 20px;
  height: 20px;
}

.mobile-nav-panel {
  display: none;
}

.hero-section {
  width: 100%;
  padding-top: 32px;
}

.hero-row {
  display: flex;
  gap: 20px;
}

.hero-card {
  position: relative;
  width: 50%;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-shade {
  background: linear-gradient(to top, #0a0a0a 0%, rgba(10, 10, 10, 0.6) 52%, transparent 100%);
}

.gold-glow,
.small-glow {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 999px;
  background: rgba(212, 160, 23, 0.1);
  filter: blur(64px);
}

.gold-glow {
  width: 256px;
  height: 256px;
}

.small-glow {
  width: 160px;
  height: 160px;
  opacity: 0.8;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
}

.hero-card h1 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.25;
}

.hero-card h1 span {
  color: var(--gold);
}

.hero-copy {
  max-width: 384px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.625;
}

.gold-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 16px;
  background: var(--gold);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: all 300ms ease;
}

.gold-button:hover {
  background: var(--gold-dark);
}

.gold-button svg {
  width: 16px;
  height: 16px;
}

.right-stack {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.marquee-card {
  position: relative;
  overflow: hidden;
  padding: 16px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
}

.marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  color: var(--muted);
  font-size: 12px;
  animation: marquee 12s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
}

.marquee-track i {
  width: 6px;
  height: 6px;
  margin: 0 16px;
  border-radius: 999px;
  background: var(--gold);
  opacity: 0.6;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.subcards {
  display: flex;
  flex: 1;
  gap: 16px;
}

.image-card,
.service-card,
.stat-card,
.why-card,
.social-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.image-card {
  position: relative;
  width: 50%;
  min-height: 240px;
  overflow: hidden;
  padding: 24px;
}

.image-wrap {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 120px;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 12px;
}

.image-wrap::after,
.thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.8), transparent);
}

.image-wrap img,
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 300ms ease, transform 300ms ease;
}

.image-card:hover img,
.service-card:hover img {
  opacity: 0.9;
  transform: scale(1.03);
}

.card-bottom,
.service-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.card-bottom small,
.service-bottom small {
  display: block;
  margin-bottom: 8px;
  color: rgb(188, 188, 188);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  opacity: 0.5;
}

.card-bottom strong {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
}

.card-bottom svg {
  width: 38px;
  height: 36px;
  color: var(--gold);
  opacity: 0.2;
  transition: opacity 300ms ease;
  flex-shrink: 0;
}

.image-card:hover .card-bottom svg,
.service-card:hover .service-bottom > svg {
  opacity: 1;
}

.services-strip {
  width: 100%;
  margin-top: 20px;
}

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

.service-card {
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 20px;
}

.icon-box {
  position: relative;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 12px;
  background: rgba(212, 160, 23, 0.1);
  color: var(--gold);
}

.icon-box svg {
  width: 20px;
  height: 20px;
}

.thumb {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 90px;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 12px;
}

.thumb img {
  opacity: 0.6;
}

.service-bottom small {
  margin-bottom: 4px;
  font-size: 10px;
}

.service-bottom strong {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
}

.service-bottom > svg {
  width: 32px;
  height: 30px;
  color: var(--gold);
  opacity: 0.2;
  transition: opacity 300ms ease;
  flex-shrink: 0;
}

.info-section {
  width: 100%;
  margin-top: 20px;
  padding-bottom: 64px;
}

.info-grid {
  display: flex;
  gap: 16px;
}

.stats-col {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  flex: 1;
  padding: 24px;
}

.stat-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
}

.stat-card span {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.stat-card small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.why-card {
  width: 66%;
  padding: 32px;
}

.why-card h2,
.social-card h2 {
  margin: 0;
  color: #fff;
  font-weight: 500;
}

.why-card h2 {
  margin-bottom: 24px;
  font-size: 24px;
}

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

.feature-grid div {
  display: flex;
  gap: 12px;
}

.feature-grid i {
  width: 6px;
  height: 6px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--gold);
  flex-shrink: 0;
}

.feature-grid strong {
  display: block;
  margin-bottom: 2px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.feature-grid small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.625;
}

.social-card {
  position: relative;
  width: 34%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 32px;
}

.social-card h2 {
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 1.375;
}

.social-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.625;
}

.social-icons {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.social-icons a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  transition: transform 300ms ease;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.social-icons svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.facebook {
  background: #1877f2;
}

.x-icon {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.x-icon svg {
  fill: #fff;
  stroke: none;
}

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.footer-brand img {
  width: auto;
  height: 48px;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 384px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.625;
}

.footer-main h4 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.footer-main a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--faint);
  font-size: 14px;
  transition: color 150ms ease;
}

.footer-main a:hover {
  color: #fff;
}

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

.contact-link svg {
  width: 14px;
  height: 14px;
  color: #0d6efd;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--line);
}

.footer-bottom .container {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.footer-bottom span,
.footer-bottom button {
  color: var(--faint);
  font-size: 14px;
}

.footer-bottom button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 150ms ease;
}

.footer-bottom button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.footer-bottom svg {
  width: 16px;
  height: 16px;
}

.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 96px 16px;
  background: #0f0f0f;
  text-align: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 600px;
  height: 600px;
  border-radius: 999px;
  background: rgba(212, 160, 23, 0.1);
  filter: blur(120px);
  transform: translate(-50%, -50%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 768px;
}

.about-hero {
  min-height: 356px;
  background: #0d131c;
}

.page-hero.about-hero .page-hero-inner {
  max-width: 1120px;
  width: 100%;
  text-align: center;
}

.page-hero.about-hero .eyebrow {
  color: var(--gold);
  text-align: center;
  letter-spacing: 6px;
}

.page-hero.about-hero h1 {
  margin-bottom: 22px;
  font-size: 50px;
  line-height: 1.08;
}

.page-hero.about-hero p:not(.eyebrow) {
  margin: 0 auto;
  max-width: 920px;
  color: #b9c1cf;
  font-size: 19px;
}

.page-hero.about-hero .scroll-cue {
  display: flex;
  width: max-content;
  margin: 46px auto 0;
  color: #b9c1cf;
}

.page-hero.about-hero .scroll-cue svg {
  color: #b9c1cf;
}

.page-hero h1,
.simple-page-head h1 {
  margin: 0 0 24px;
  color: #fff;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.15;
}

.page-hero p:not(.eyebrow),
.simple-page-head p {
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.625;
}

.scroll-cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  color: var(--muted);
  font-size: 14px;
  transition: color 300ms ease;
}

.scroll-cue:hover {
  color: #fff;
}

.scroll-cue svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-4px);
  }
  50% {
    transform: translateY(4px);
  }
}

@keyframes mobileMenuDrop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-dark {
  background: #0f0f0f;
  padding: 80px 0;
}

.section-black {
  background: #0a0a0a;
  padding: 80px 0;
}

.about-story-section {
  padding-bottom: 36px;
}

.about-brand-section {
  padding-top: 36px;
  padding-bottom: 36px;
}

.about-cta-section {
  padding-top: 36px;
}

.story-grid,
.values-grid,
.portfolio-grid {
  display: grid;
  gap: 24px;
}

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

.story-card,
.mission-card,
.brand-meaning-panel,
.brand-panel,
.cta-panel,
.form-card,
.contact-card,
.map-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #161616;
}

.story-card {
  min-height: 220px;
  padding: 32px;
  transition: border-color 300ms ease;
}

.story-number {
  position: absolute;
  top: 10px;
  right: 24px;
  z-index: 0;
  color: transparent;
  font-size: 78px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  opacity: 0.42;
  pointer-events: none;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.22);
  text-stroke: 1px rgba(255, 255, 255, 0.22);
}

.story-card .card-heading,
.story-card p {
  position: relative;
  z-index: 1;
}

.story-number-04 {
  color: rgba(255, 255, 255, 0.018);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.2);
  text-stroke-color: rgba(255, 255, 255, 0.2);
}

.story-card:hover,
.mission-card:hover,
.value-card:hover,
.portfolio-card:hover {
  border-color: rgba(212, 160, 23, 0.22);
}

.card-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.round-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(212, 160, 23, 0.1);
  color: var(--gold);
  flex-shrink: 0;
}

.round-icon svg {
  width: 20px;
  height: 20px;
}

.card-heading h2,
.mission-card h2 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.story-card p,
.mission-card p,
.brand-panel p,
.cta-panel p,
.value-card p,
.portfolio-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.625;
}

.story-card p {
  margin-top: 28px;
  text-align: justify;
  text-align-last: left;
}

.brand-meaning-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.6fr);
  gap: 40px;
  padding: 40px;
}

.brand-meaning-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  width: 96px;
  height: 2px;
  background: var(--gold);
}

.brand-meaning-head,
.brand-meaning-copy {
  position: relative;
  z-index: 1;
}

.brand-meaning-head .eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
}

.brand-meaning-head h2 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.15;
}

.brand-meaning-lines {
  display: grid;
  gap: 8px;
  margin-top: 32px;
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
  text-shadow:
    0 0 6px rgba(212, 160, 23, 0.42),
    0 0 14px rgba(212, 160, 23, 0.3),
    0 0 28px rgba(212, 160, 23, 0.16);
}

.brand-meaning-lines span {
  position: relative;
  width: max-content;
  max-width: 100%;
  color: transparent;
  background: linear-gradient(100deg, var(--gold) 0%, #d4a017 28%, #fff2b8 45%, #d4a017 62%, var(--gold-dark) 100%);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: quoteTextShine 2.8s ease-in-out infinite alternate;
}

.brand-meaning-lines span:nth-child(2) {
  animation-delay: 0.7s;
}

@keyframes quoteTextShine {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 100% 50%;
  }
}

.brand-meaning-copy {
  display: grid;
  gap: 14px;
}

.brand-meaning-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
  text-align: justify;
  text-align-last: left;
}

.brand-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.brand-left,
.brand-right {
  position: relative;
  z-index: 1;
  padding: 48px;
}

.brand-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  text-align: center;
}

.brand-left img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  margin-bottom: 24px;
}

.brand-left h2,
.cta-panel h2 {
  margin: 0 0 24px;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
}

.brand-left em {
  display: block;
  color: rgba(212, 160, 23, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

.brand-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.brand-quote {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.brand-quote strong {
  color: #fff;
  font-weight: 500;
}

.cta-panel {
  padding: 48px;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.1), rgba(212, 160, 23, 0.05));
  border-color: rgba(212, 160, 23, 0.2);
  text-align: center;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.outline-button svg {
  width: 16px !important;
  height: 16px !important;
  flex: 0 0 16px;
  max-width: 16px;
  max-height: 16px;
}

.simple-page {
  min-height: 100vh;
  padding: 64px 0;
  background: #0a0a0a;
}

.simple-page-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.simple-page-head .eyebrow {
  color: rgb(188, 188, 188);
  opacity: 0.6;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.mission-card {
  padding: 32px;
  background: #111;
}

.mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  width: 64px;
  height: 2px;
  background: var(--gold);
}

.mission-card .card-heading {
  margin-bottom: 20px;
}

.mission-card .round-icon {
  width: 48px;
  height: 48px;
}

.goals-card {
  grid-column: 1 / -1;
}

.goals-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
}

.goals-list p {
  margin: 0;
}

.goals-list strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-weight: 600;
}

.values-label {
  margin: 0 0 24px;
  color: rgb(188, 188, 188);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  opacity: 0.6;
}

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

.value-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #111;
  text-align: center;
  transition: border-color 300ms ease;
}

.value-card .round-icon {
  margin: 0 auto 16px;
}

.value-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

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

.portfolio-card {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.portfolio-card:nth-child(2) { background: linear-gradient(135deg, #1a2e1a, #0f3460); }
.portfolio-card:nth-child(3) { background: linear-gradient(135deg, #2e1a1a, #1a0a0a); }
.portfolio-card:nth-child(4) { background: linear-gradient(135deg, #1a1a2e, #2e1a2e); }
.portfolio-card:nth-child(5) { background: linear-gradient(135deg, #2e2a1a, #1a1a0a); }
.portfolio-card:nth-child(6) { background: linear-gradient(135deg, #1a2e2e, #0a1a1a); }

.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent 70%);
}

.portfolio-card::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 999px;
}

.portfolio-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 1;
}

.portfolio-content small {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

.portfolio-content strong {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.portfolio-content svg {
  width: 36px;
  height: 36px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
  opacity: 0;
  transition: opacity 300ms ease;
}

.portfolio-card:hover svg {
  opacity: 1;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 70px);
}

.contact-left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 48px;
  background: #0a0a0a;
}

.contact-inner {
  width: 100%;
  max-width: 520px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 40px 0;
}

.contact-info-grid.detailed {
  margin: 32px 0 40px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

a.contact-card:hover {
  border-color: rgba(212, 160, 23, 0.35);
  background: rgba(212, 160, 23, 0.06);
  transform: translateY(-2px);
}

.contact-card.wide {
  grid-column: 1 / -1;
}

.address-card {
  align-items: flex-start;
  padding: 20px;
}

.email-card strong {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-card small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.contact-card strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.contact-card em {
  display: block;
  margin-top: 3px;
  color: var(--faint);
  font-size: 12px;
  font-style: normal;
  line-height: 1.4;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.field label {
  color: rgb(188, 188, 188);
  font-size: 13px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: #111;
  color: #fff;
  font: inherit;
  font-size: 14px;
  outline: none;
  padding: 12px 14px;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.map-panel {
  min-height: 420px;
  border-radius: 0;
  border-width: 0 0 0 1px;
  background: #111;
}

.map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: none;
}

.map-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10,10,10,0.02), rgba(10,10,10,0.08));
}

.map-pin {
  position: absolute;
  left: 32px;
  bottom: 32px;
  z-index: 3;
  width: min(260px, calc(100% - 64px));
  border: 1px solid rgba(212, 160, 23, 0.22);
  border-radius: 24px;
  background: rgba(17, 17, 17, 0.92);
  padding: 24px;
  text-align: left;
  box-shadow: 0 30px 90px rgba(0,0,0,0.45);
  backdrop-filter: blur(14px);
}

.map-pin strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
}

.map-pin span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.map-pin a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 9px 14px;
  border: 1px solid rgba(212, 160, 23, 0.25);
  border-radius: 12px;
  background: rgba(212, 160, 23, 0.08);
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  transition: all 200ms ease;
}

.map-pin a:hover {
  background: rgba(212, 160, 23, 0.14);
  border-color: rgba(212, 160, 23, 0.45);
}

.quote-layout {
  min-height: 100vh;
  padding: 64px 16px;
  background: #0a0a0a;
}

.quote-wrap {
  max-width: 672px;
  margin: 0 auto;
}

.quote-wrap-wide {
  max-width: 672px;
}

.quote-head {
  margin-bottom: 40px;
  text-align: center;
}

.quote-head h1 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
}

.quote-head p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.preview-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  transition: all 200ms ease;
}

.preview-toggle:hover {
  border-color: rgba(212, 160, 23, 0.6);
  color: var(--gold);
  background: rgba(212, 160, 23, 0.1);
}

.preview-toggle svg {
  width: 14px;
  height: 14px;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--faint);
  font-size: 12px;
}

.progress-meta span:last-child {
  color: var(--gold);
}

.progress-bar {
  overflow: hidden;
  height: 4px;
  width: calc(100% - 8px);
  margin: 0 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
}

.progress-bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
}

.progress-full span {
  width: 100%;
}

.step-dots {
  display: flex;
  justify-content: space-between;
  margin: 12px 0 32px;
}

.step-dots i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  cursor: pointer;
  transition: all 200ms ease;
}

.step-dots i.active {
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(212, 160, 23, 0.12);
}

.step-dots i:hover {
  transform: scale(1.5);
}

.form-card {
  padding: 32px;
  border-radius: 20px;
  background: #111;
  border-color: var(--line-strong);
}

.quote-preview-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 32px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: #111;
}

.preview-section {
  display: none;
  flex-direction: column;
  gap: 18px;
  min-height: 430px;
  padding-bottom: 0;
  border-bottom: 0;
}

.preview-section.active {
  display: flex;
  animation: rise 420ms ease both;
}

.quote-preview-form:has(.preview-section.active + .preview-section.active) .preview-section,
.quote-preview-form.preview-all .preview-section {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-section:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.preview-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 2px;
}

.preview-section h2,
.preview-section-head h2 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.preview-section-head span {
  flex-shrink: 0;
  padding: 5px 9px;
  border: 1px solid rgba(212, 160, 23, 0.18);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(212, 160, 23, 0.08);
  font-size: 10px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-group p {
  margin: 0;
  color: rgb(188, 188, 188);
  font-size: 14px;
}

.field b,
.field-group b {
  color: var(--gold);
  font-weight: 500;
}

.field small {
  color: var(--faint);
  font-size: 12px;
  line-height: 1.5;
}

.form-card h2 {
  margin: 0 0 24px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

.chip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}

.quote-preview-form .chip-grid {
  margin-bottom: 0;
}

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

.chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  cursor: pointer;
  transition: all 200ms ease;
}

.chip:hover,
.route-option:hover {
  border-color: rgba(212, 160, 23, 0.45);
  color: #fff;
  background: rgba(212, 160, 23, 0.08);
}

.chip input,
.route-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chip:has(input:checked),
.route-option:has(input:checked) {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 160, 23, 0.11);
}

.stack-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.route-option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 50px;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #1a1a1a;
  color: var(--muted);
  font-size: 14px;
  cursor: pointer;
  transition: all 200ms ease;
}

.route-option em {
  flex-shrink: 0;
  padding: 3px 8px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--faint);
  font-size: 12px;
  font-style: normal;
}

.review-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(212, 160, 23, 0.18);
  border-radius: 16px;
  background: rgba(212, 160, 23, 0.07);
}

.review-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(212, 160, 23, 0.1);
  color: var(--gold);
}

.review-icon svg {
  width: 24px;
  height: 24px;
}

.review-box strong {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.review-box p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}

.sticky-actions {
  position: sticky;
  bottom: 0;
  z-index: 5;
  margin: 0 -32px -32px;
  padding: 18px 32px 32px;
  background: linear-gradient(to top, #111 78%, rgba(17,17,17,0));
}

.sticky-actions button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.quote-preview-form #prevStep[hidden] {
  display: none !important;
}

.quote-preview-form #prevStep {
  height: 46px;
  min-height: 46px;
  max-height: 46px;
  overflow: hidden;
  white-space: nowrap;
}

.text-arrow-button {
  gap: 10px;
}

.text-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 18px;
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  transform: translateY(-1px);
}

#prevStep .text-arrow {
  margin-right: 2px;
}

#nextStep .text-arrow {
  margin-left: 2px;
}

.quote-preview-form #prevStep svg {
  display: none !important;
}

.quote-preview-form #prevStep svg,
.quote-preview-form #nextStep svg {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px;
  max-height: 16px;
  flex: 0 0 16px;
}

.submit-status {
  display: none;
}

.submit-status.success {
  display: none;
}

.submit-status.warning {
  display: none;
}

.submit-status.error {
  display: none;
}

.form-toast {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 9999;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 12px;
  width: min(680px, calc(100% - 28px));
  min-height: 58px;
  padding: 14px 14px 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0 0 8px 8px;
  background: rgba(18, 18, 18, 0.98);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -110%);
  transition: opacity 260ms ease, transform 260ms ease;
}

.form-toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.form-toast p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.form-toast-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.18);
}

.form-toast.success .form-toast-icon {
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

.form-toast.warning .form-toast-icon,
.form-toast.info .form-toast-icon {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.18);
}

.form-toast.error .form-toast-icon {
  background: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2);
}

.form-toast button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.form-toast button:hover {
  background: rgba(255, 255, 255, 0.16);
}

.reveal {
  animation: rise 800ms ease both;
}

.delay-1 {
  animation-delay: 100ms;
}

.delay-2 {
  animation-delay: 200ms;
}

.delay-3 {
  animation-delay: 300ms;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1023px) {
  .container {
    padding: 0 16px;
  }

  .story-card .card-heading {
    max-width: 150px;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .story-card .card-heading h2 {
    max-width: 100%;
    line-height: 1.25;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

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

  .mobile-nav-panel {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 8px);
    display: block !important;
    overflow: hidden;
    padding: 8px;
    border: 1px solid rgba(212, 160, 23, 0.22);
    border-radius: 18px;
    background: #111;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.62);
    animation: mobileMenuDrop 180ms ease both;
  }

  .mobile-nav-panel[hidden] {
    display: none !important;
  }

  .mobile-nav-links {
    display: grid;
    gap: 0;
  }

  .mobile-nav-links a,
  .mobile-nav-cta {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .mobile-nav-links a:last-child {
    border-bottom: 0;
  }

  .mobile-nav-links a.active,
  .mobile-nav-links a:hover {
    background: rgba(212, 160, 23, 0.13);
    color: #fff;
  }

  .mobile-nav-cta {
    justify-content: center;
    min-height: 46px;
    margin-top: 8px;
    border: 1px solid rgba(212, 160, 23, 0.35);
    background: var(--gold);
    color: #000;
    font-weight: 600;
  }

  .mobile-nav-open .mobile-menu {
    border-color: rgba(212, 160, 23, 0.4);
    background: rgba(212, 160, 23, 0.1);
    color: var(--gold);
  }

  .hero-row,
  .info-grid {
    flex-direction: column;
  }

  .hero-card,
  .right-stack,
  .stats-col,
  .why-card,
  .social-card {
    width: 100%;
  }

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

  .stats-col {
    flex-direction: row;
  }

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

  .contact-split,
  .brand-meaning-panel,
  .brand-panel {
    grid-template-columns: 1fr;
  }

  .brand-left {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .logo-link img {
    height: 32px;
  }

  .hero-card {
    min-height: 320px;
    padding: 28px;
  }

  .hero-card h1 {
    font-size: 30px;
  }

  .subcards,
  .stats-col {
    flex-direction: column;
  }

  .image-card {
    width: 100%;
  }

  .services-grid,
  .feature-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom .container {
    flex-direction: column;
    align-items: center;
  }

  .page-hero h1,
  .simple-page-head h1 {
    font-size: 36px;
  }

  .page-hero.about-hero h1 {
    font-size: 34px;
  }

  .page-hero.about-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .story-grid,
  .mission-grid,
  .values-grid,
  .portfolio-grid,
  .contact-info-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .goals-list {
    grid-template-columns: 1fr;
  }

  .story-number-04 {
    top: 14px;
    right: 22px;
    font-size: 70px;
    font-weight: 600;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    text-stroke: 1px rgba(255, 255, 255, 0.2);
  }

  .story-card .card-heading {
    max-width: 150px;
  }

  .brand-left,
  .brand-right,
  .cta-panel,
  .contact-left,
  .form-card {
    padding: 28px;
  }

  .cta-actions,
  .form-actions {
    flex-direction: column;
  }

  .quote-layout {
    padding: 24px 14px;
  }

  .quote-head {
    margin-bottom: 28px;
  }

  .quote-preview-form {
    gap: 24px;
    padding: 28px;
  }

  .preview-section {
    min-height: 0;
  }

  .quote-preview-form .form-actions {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .sticky-actions {
    margin: 0 -28px -28px;
    padding: 14px 28px 24px;
  }

  .sticky-actions .outline-button {
    flex: 1 1 0;
    width: auto;
    min-height: 46px;
    padding: 11px 14px;
  }

  .sticky-actions .gold-button {
    flex: 1 1 0;
    min-height: 46px;
    padding: 11px 16px;
  }

  .sticky-actions #prevStep[hidden] + #nextStep {
    flex-basis: 100%;
  }
}

@media (max-width: 1023px) {
  .quote-preview-form .sticky-actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
  }

  .quote-preview-form .sticky-actions #prevStep,
  .quote-preview-form .sticky-actions #nextStep {
    width: 100% !important;
    min-width: 0;
    height: 46px;
    min-height: 46px;
    max-height: 46px;
  }

  .quote-preview-form .sticky-actions #prevStep[hidden] {
    display: none !important;
  }

  .quote-preview-form .sticky-actions #prevStep[hidden] + #nextStep {
    grid-column: 1 / -1;
  }
}
