﻿:root {
  --bg: #06070b;
  --panel: #11131a;
  --panel-soft: #0d1016;
  --text: #e8eaf0;
  --muted: #afb6c7;
  --line: #2a2f3e;
  --gold: #d8b07a;
  --gold-soft: #f1d4a9;
  --teal: #17b4aa;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 500px at 80% -20%, rgba(216, 176, 122, 0.14), transparent 50%),
    linear-gradient(180deg, #090b10 0%, #06070b 60%);
  min-height: 100vh;
}

.bg-aura {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(216, 176, 122, 0.13), transparent 30%),
    radial-gradient(circle at 82% 34%, rgba(23, 180, 170, 0.08), transparent 34%);
  z-index: -1;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.section {
  padding: 4.8rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(216, 176, 122, 0.2);
  background: rgba(8, 10, 14, 0.86);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--gold-soft);
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand strong,
.brand span {
  display: block;
  line-height: 1;
}

.brand strong {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: 0.03em;
}

.brand span {
  margin-top: 0.3rem;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.main-nav a:hover {
  color: var(--gold-soft);
}

.cta,
.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0.88rem 1.3rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta {
  color: #17140f;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  box-shadow: 0 8px 24px rgba(216, 176, 122, 0.28);
}

.cta.small {
  padding: 0.66rem 1rem;
}

.ghost {
  border: 1px solid rgba(216, 176, 122, 0.45);
  color: var(--gold-soft);
}

.cta:hover,
.ghost:hover {
  transform: translateY(-2px);
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  height: 2px;
  width: 20px;
  margin: 4px auto;
  background: var(--gold-soft);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2rem;
  align-items: stretch;
}

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

.eyebrow {
  width: fit-content;
  border: 1px solid rgba(216, 176, 122, 0.38);
  border-radius: 999px;
  color: var(--gold);
  padding: 0.4rem 0.9rem;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  margin: 0;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  margin: 1rem 0 1rem;
  line-height: 1.04;
}

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

.hero-copy p {
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.65;
  max-width: 68ch;
}

.hero-single .hero-copy {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.hero-single .hero-copy .eyebrow {
  margin: 0 auto;
}

.hero-single .hero-copy p {
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.hero-single .hero-actions {
  justify-content: center;
}

.hero-card,
.about-panel,
.project-card,
.stats-grid,
.coming {
  border: 1px solid rgba(216, 176, 122, 0.22);
  background: linear-gradient(165deg, rgba(25, 29, 40, 0.75), rgba(11, 13, 19, 0.75));
  border-radius: 20px;
}

.hero-card {
  padding: 1.6rem;
}

.hero-card h2 {
  font-size: 2rem;
  color: var(--gold-soft);
}

.hero-card p {
  margin: 0.4rem 0 1rem;
  color: var(--gold);
  font-weight: 600;
}

.hero-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.65;
}

.hero-card a {
  margin-top: 1rem;
  display: inline-block;
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
}

.stats {
  padding-top: 1rem;
}

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

.stats-grid article {
  text-align: center;
  padding: 1.4rem 1rem;
  border-right: 1px solid rgba(216, 176, 122, 0.18);
}

.stats-grid article:last-child {
  border-right: 0;
}

.stats-grid h3 {
  font-size: clamp(1.4rem, 3.2vw, 2.4rem);
  color: var(--gold);
}

.stats-grid p {
  margin: 0.3rem 0 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.about h2,
.projects h2 {
  font-size: clamp(1.7rem, 4vw, 3rem);
  margin: 0.9rem 0 1rem;
}

.about p {
  color: var(--muted);
  line-height: 1.7;
}

.about-panel {
  min-height: 320px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 10% 82%, rgba(216, 176, 122, 0.18), transparent 50%),
    linear-gradient(145deg, rgba(21, 25, 34, 0.8), rgba(11, 13, 19, 0.9));
}

.about-panel img {
  width: min(260px, 70%);
}

.section-head {
  max-width: 800px;
}

.section-head p {
  margin-bottom: 0.9rem;
}

.project-card {
  margin-top: 1.6rem;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: center;
}

.project-card-alt {
  margin-top: 1.1rem;
  grid-template-columns: 1.12fr auto;
}

.label {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-copy h3 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 0.4rem 0;
}

.project-copy h3::after {
  content: "";
  color: inherit;
}

.project-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
  margin: 1rem 0 1.3rem;
}

.chips span {
  border: 1px solid rgba(216, 176, 122, 0.32);
  color: #d0d6e8;
  border-radius: 999px;
  font-size: 0.82rem;
  padding: 0.38rem 0.75rem;
}

.project-copy a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
}

.project-copy .launch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.74rem 1.2rem;
  border-radius: 12px;
  color: #17140f;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  border: 1px solid rgba(216, 176, 122, 0.82);
  box-shadow: 0 8px 24px rgba(216, 176, 122, 0.28);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-copy .launch-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(216, 176, 122, 0.36);
}

.project-copy .soon-btn {
  cursor: default;
  pointer-events: none;
  opacity: 0.95;
}

.project-copy .soon-btn:hover {
  transform: none;
  box-shadow: 0 8px 24px rgba(216, 176, 122, 0.28);
}

.project-visual-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 0;
  background: transparent;
  padding: 0.2rem 0;
}

.project-shot-phone {
  width: 48%;
  max-width: 170px;
  max-height: 250px;
  object-fit: contain;
  border-radius: 12px;
  border: 0;
}

.project-visual {
  border: 1px solid rgba(216, 176, 122, 0.24);
  border-radius: 16px;
  padding: 0.72rem;
  background: linear-gradient(180deg, #1b1d27, #11131b);
}

.project-shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(132, 140, 170, 0.35);
}

.coming {
  margin-top: 1.5rem;
  text-align: center;
  padding: 1.1rem;
}

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

.contact-section {
  padding-top: 2.8rem;
}

.contact-shell {
  border: 1px solid rgba(216, 176, 122, 0.26);
  background:
    radial-gradient(circle at 86% 18%, rgba(216, 176, 122, 0.16), transparent 38%),
    linear-gradient(170deg, rgba(22, 26, 35, 0.9), rgba(10, 12, 18, 0.92));
  border-radius: 24px;
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.contact-head h2 {
  font-size: clamp(1.7rem, 4.2vw, 3rem);
  margin-top: 1rem;
}

.contact-head p {
  max-width: 68ch;
  color: var(--muted);
  line-height: 1.7;
}

.contact-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.contact-grid article {
  border: 1px solid rgba(216, 176, 122, 0.2);
  border-radius: 16px;
  background: rgba(9, 11, 18, 0.72);
  padding: 1rem;
}

.contact-grid h3 {
  font-size: 1.5rem;
  color: var(--gold-soft);
}

.contact-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.contact-grid a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  word-break: break-word;
}

.hours-strip {
  margin-top: 1rem;
  border: 1px solid rgba(216, 176, 122, 0.2);
  border-radius: 14px;
  background: rgba(9, 11, 18, 0.72);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hours-strip div {
  padding: 1rem;
  text-align: center;
  border-right: 1px solid rgba(216, 176, 122, 0.14);
}

.hours-strip div:last-child {
  border-right: 0;
}

.hours-strip span {
  display: block;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.hours-strip strong {
  color: var(--gold-soft);
  font-size: 1.05rem;
}

.site-footer {
  padding-top: 2rem;
}

.footer-grid {
  border-top: 1px solid rgba(216, 176, 122, 0.2);
  padding-top: 2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.9fr;
  gap: 1.6rem;
}

.footer-brand {
  margin-bottom: 1rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer h4 {
  margin-bottom: 0.7rem;
  color: var(--gold-soft);
  font-size: 1.3rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.site-footer a:hover {
  color: #d9dfef;
}

.footer-bottom {
  border-top: 1px solid rgba(216, 176, 122, 0.12);
  margin-top: 1.6rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 0.72s ease forwards;
}

.delay-1 {
  animation-delay: 0.14s;
}

.delay-2 {
  animation-delay: 0.28s;
}

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

@media (max-width: 960px) {
  .main-nav {
    position: absolute;
    right: 4%;
    top: 84px;
    width: min(270px, 92vw);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    border: 1px solid rgba(216, 176, 122, 0.26);
    border-radius: 12px;
    background: #0f1118;
    padding: 1rem;
  }

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

  .menu-btn {
    display: block;
  }

  .hero-grid,
  .about-grid,
  .project-card,
  .footer-grid,
  .contact-grid,
  .hours-strip {
    grid-template-columns: 1fr;
  }

  .project-card-alt {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(216, 176, 122, 0.18);
  }

  .stats-grid article:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 3.8rem 0;
  }

  .project-shot-phone {
    width: 48%;
    max-width: 220px;
    max-height: 360px;
  }

  .hours-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(216, 176, 122, 0.14);
  }

  .hours-strip div:last-child {
    border-bottom: 0;
  }
}
