/* =========================================================
   AURA GROUP — style.css (CLEAN, FULL FILE)
   - No Courier New
   - One typography system
   - Left-aligned section headers
   - No duplicates
   ========================================================= */

/* =========================
   1) VARIABLES
   ========================= */
:root {
  --titanium: #0a0a0a;
  --clay: #EAE8E4;
  --gold: #C6A87C;
  --gold-dark: #A88C64;
  --white: #ffffff;

  --font-sans: 'Manrope', sans-serif;
  --font-display: 'Syne', sans-serif;

  --border-dark: rgba(0,0,0,0.08);
  --border-light: rgba(255,255,255,0.12);

  --shadow-sm: 0 6px 18px rgba(0,0,0,0.08);
  --shadow-md: 0 18px 45px rgba(0,0,0,0.16);
  --shadow-lg: 0 30px 70px rgba(0,0,0,0.22);

  --r-8: 8px;
  --r-12: 12px;
  --r-16: 16px;
  --r-24: 24px;
}

/* =========================
   2) BASE / RESET
   ========================= */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--clay);
  color: var(--titanium);
  font-family: var(--font-sans);
  overflow-x: hidden;

  /* Subtle noise texture */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: 0.25s ease;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  text-align: left;
}

p { margin: 0; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--clay); }
::-webkit-scrollbar-thumb { background-color: var(--gold); border-radius: 20px; }

/* =========================
   3) LAYOUT UTILS
   ========================= */
.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

.relative { position: relative; }
.z-10 { position: relative; z-index: 10; }

/* =========================
   4) TYPOGRAPHY SYSTEM
   ========================= */

/* Section tag: used by .section-tag / .section-tag-gold / .section-tag-technical */
.section-tag,
.section-tag-gold,
.section-tag-technical {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding: 0;
  border: 0;
  color: var(--gold);
}

.section-tag::before,
.section-tag-gold::before,
.section-tag-technical::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
  display: block;
}

/* Variants */
.section-tag.gold { color: var(--gold); }
.section-tag.dark { color: var(--titanium); }
.section-tag.light { color: rgba(255,255,255,0.85); }

/* Titles: left aligned always */
.section-title {
  font-size: 3.5rem;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--titanium);
}
.section-title.light { color: var(--white); }
.section-title.dark { color: var(--titanium); }

.section-title-light {
  font-size: 3.5rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--white);
}

@media (max-width: 768px) {
  .section-title,
  .section-title-light { font-size: 2.5rem; }
}

.separator {
  width: 6rem;
  height: 4px;
  background-color: var(--gold);
  margin-bottom: 2.5rem;
}

.text-body {
  font-size: 1.1rem;
  color: rgba(20, 20, 20, 0.72);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 620px;
}
.text-body.light { color: rgba(255,255,255,0.7); }

/* =========================
   5) NAVIGATION
   ========================= */
.nav-capsule {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;

  background-color: rgba(20, 20, 20, 0.9);
  backdrop-filter: blur(12px);
  padding: 0.75rem 1.5rem;

  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 2rem;

  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s ease;
}
.nav-capsule:hover {
  transform: translate(-50%, 4px) scale(1.02);
  box-shadow: 0 26px 60px rgba(0,0,0,0.18);
}

.nav-capsule .logo {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--gold);
  font-size: 1.25rem;
}

.nav-links {
  display: none;
  gap: 2rem;
}
@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background-color: var(--gold);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
}
.nav-cta:hover { background-color: var(--gold-dark); }

/* =========================
   6) HERO
   ========================= */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(0,0,0,0.1) 55%, rgba(0,0,0,0.0) 100%);
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 35%, rgba(198,168,124,0.18) 0%, rgba(0,0,0,0) 55%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
}

.hero .subtitle {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero .main-title {
  font-size: 3.6rem;
  color: var(--white);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
@media(min-width: 768px) {
  .hero .main-title { font-size: 7rem; }
}

.hero .description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;
  line-height: 1.65;
  max-width: 36rem;
  margin: 0 auto;
}

.marquee-container {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  background-color: rgba(10,10,10,0.92);
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.marquee-content {
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  animation: marquee 28s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* =========================
   7) ABOUT
   ========================= */
.section-about {
  padding: 8rem 0;
  overflow: hidden;
  background-color: var(--clay);
}

.grid-layout-about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media(min-width: 1024px) {
  .grid-layout-about { grid-template-columns: 5fr 7fr; }
}

/* Counters row */
.stats-minimal {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 2rem;
}
@media (max-width: 768px) {
  .stats-minimal {
    justify-content: space-between;
    gap: 1rem;
  }
}

.stat-min-item { display: flex; flex-direction: column; }
.stat-min-item .val {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--titanium);
}
.stat-min-item .lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  margin-top: 6px;
  font-weight: 700;
}

/* Images layout */
.about-images {
  position: relative;
  height: 650px;
  margin-top: 3rem;
}
@media(min-width: 1024px) { .about-images { margin-top: 0; } }

.img-large-wrapper {
  position: absolute;
  top: 0; right: 0;
  width: 90%;
  height: 85%;
  border-radius: var(--r-24);
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.15);
  z-index: 1;
}
.img-large {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.8s ease, transform 0.8s ease;
}
.img-large-wrapper:hover .img-large {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.img-small-wrapper {
  position: absolute;
  bottom: 0; left: 0;
  width: 40%;
  height: 45%;
  border-radius: var(--r-16);
  overflow: hidden;
  z-index: 2;
  border: 8px solid var(--clay);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.img-small {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.img-small-wrapper:hover .img-small { transform: scale(1.08); }

.floating-profile-card {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  padding: 20px 22px;
  border-radius: var(--r-16);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 10;
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
  max-width: 290px;
  border: 1px solid rgba(255,255,255,0.55);
  transition: transform 0.25s ease;
}
.floating-profile-card:hover { transform: translateY(-5px); }

.float-avatar {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  object-fit: cover;
}

.float-quote {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--titanium);
  margin-bottom: 4px;
  font-weight: 500;
}
.float-name {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-dark);
  font-weight: 800;
}

.glow-effect {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  width: 15rem;
  height: 15rem;
  background-color: rgba(191, 161, 129, 0.15);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  animation: pulse 4s infinite;
}

@media (max-width: 768px) {
  .img-large-wrapper {
    width: 100%;
    position: relative;
    height: 400px;
    border-radius: var(--r-16);
  }
  .img-small-wrapper { display: none; }
  .floating-profile-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -30px;
    margin-left: 20px;
    width: calc(100% - 40px);
  }
  .about-images { height: auto; }
}

/* =========================
   8) STANDARD PREMIUM (DARK)
   ========================= */
.section-standard-dark {
  padding: 120px 0;
  background-color: var(--titanium);
  color: var(--white);
}

.standard-header {
  /* left by design */
  max-width: 900px;
  margin: 0 0 60px 0;
}

.standard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media(min-width: 1024px) {
  .standard-grid { grid-template-columns: 1fr 1fr; }
}

.standard-image-wrapper {
  position: relative;
  border-radius: var(--r-12);
  overflow: hidden;
  height: 550px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.06);
}
.std-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92);
}

.energy-badge-dark {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(0, 0, 0, 0.86);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  border-radius: var(--r-12);
}
.energy-badge-dark i {
  font-size: 1.4rem;
  color: var(--gold);
}
.energy-badge-dark .block {
  display: block;
  font-weight: 800;
  font-size: 0.9rem;
  font-family: var(--font-display);
}
.energy-badge-dark .text-xs {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.features-wrapper-dark {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-item-dark {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.feature-item-dark:last-child { border-bottom: none; }

.feat-icon-gold {
  font-size: 1.5rem;
  color: var(--gold);
  min-width: 40px;
  margin-top: 4px;
}
.feature-item-dark h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.feature-item-dark p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  font-family: var(--font-sans);
}

/* =========================
   9) PROJECTS (MAIN)
   ========================= */
.section-projects-white {
  background-color: var(--white);
  padding: 140px 0;
  position: relative;
  z-index: 10;
}

/* header block for tag */
.project-header { margin-bottom: 60px; }

.project-row {
  display: flex;
  align-items: center;
  margin-bottom: 120px;
  position: relative;
}
.project-row.reverse { flex-direction: row-reverse; }
.project-row:last-of-type { margin-bottom: 0; }

.proj-img-wrap {
  position: relative;
  width: 60%;
  height: 700px;
  overflow: hidden;
  border-radius: var(--r-16);
  filter: grayscale(100%);
  transition: filter 0.5s ease;
  box-shadow: var(--shadow-md);
}
.project-row:hover .proj-img-wrap { filter: grayscale(0%); }

.proj-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stamp */
.photo-stamp {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 20;

  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;

  padding: 12px 18px;
  border-radius: 0;
  box-shadow: 5px 5px 0px rgba(0,0,0,1);
}

.stamp-active { background-color: var(--gold); color: var(--titanium); }
.stamp-coming {
  background-color: var(--white);
  color: var(--titanium);
  border: 2px solid var(--titanium);
  box-shadow: 5px 5px 0px var(--titanium);
}
.stamp-sold {
  background-color: #333;
  color: #aaa;
  text-decoration: line-through;
  box-shadow: 5px 5px 0px rgba(0,0,0,0.5);
}

.proj-info-wrap {
  width: 40%;
  padding: 42px;
  background: var(--titanium);
  color: white;
  margin-left: -100px;
  z-index: 10;
  position: relative;
  border-radius: var(--r-16);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,0.08);
}
.project-row.reverse .proj-info-wrap {
  margin-left: 0;
  margin-right: -100px;
}

.proj-title {
  font-size: 3.2rem;
  line-height: 0.9;
  margin-bottom: 18px;
  font-weight: 800;
  text-transform: uppercase;
}
.proj-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 22px;
  max-width: 420px;
  font-family: var(--font-sans);
}

.proj-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  gap: 18px;

  font-family: var(--font-sans);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  font-variant-numeric: tabular-nums;
}
.proj-specs li::before {
  content: "• ";
  color: var(--gold);
}

.proj-link {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  border-bottom: 1px solid rgba(255,255,255,0.85);
  padding-bottom: 6px;
}
.proj-link:hover { color: var(--gold); border-color: var(--gold); }

/* Sold row (if you ever add status-sold on .project-row) */
.status-sold .proj-img-wrap {
  filter: grayscale(100%) contrast(1.1) brightness(0.8) !important;
  opacity: 0.92;
}
.status-sold .proj-title,
.status-sold .proj-desc { color: #666 !important; }

/* RWD */
@media (max-width: 1024px) {
  .project-row,
  .project-row.reverse {
    flex-direction: column;
    margin-bottom: 80px;
  }
  .proj-img-wrap { width: 100%; height: 420px; border-radius: var(--r-16); }
  .proj-info-wrap {
    width: 92%;
    margin: -50px auto 0 auto !important;
    border-radius: var(--r-16);
  }
}

/* =========================
   10) ARCHIVE
   ========================= */
.section-archive-clay {
  background-color: var(--clay);
  padding: 100px 0;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.archive-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}
.archive-line {
  flex-grow: 1;
  height: 1px;
  background-color: rgba(0,0,0,0.12);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  opacity: 0.9;
  transition: opacity 0.25s ease;
}
.archive-grid:hover { opacity: 1; }

@media (max-width: 768px) {
  .archive-grid { grid-template-columns: 1fr; }
}

.archive-item { cursor: pointer; }

.archive-img {
  height: 250px;
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: var(--r-16);
  filter: grayscale(100%) contrast(0.95);
  transition: transform 0.45s ease, filter 0.45s ease;
  box-shadow: var(--shadow-sm);
}
.archive-item:hover .archive-img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.02);
}
.archive-img img { width: 100%; height: 100%; object-fit: cover; }

.archive-info h4 {
  font-size: 1.25rem;
  color: var(--titanium);
  margin-bottom: 6px;
  font-weight: 800;
  text-transform: uppercase;
}
.archive-info p {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-variant-numeric: tabular-nums;
}

.projects-footer {
  margin-top: 80px;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 50px;
}
.link-simple-dark {
  color: var(--titanium);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  padding-bottom: 5px;
  font-weight: 700;
}
.link-simple-dark:hover { color: var(--gold); border-color: var(--gold); }

/* =========================
   11) PROCESS LIST
   ========================= */
.section-process-list {
  background-color: var(--white);
  padding: 140px 0;
}

.process-table { border-top: 2px solid var(--titanium); }

.proc-row {
  display: grid;
  grid-template-columns: 0.5fr 1fr 2fr;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 30px 0;
  transition: background 0.25s ease, padding-left 0.25s ease;
}

.proc-row:hover {
  background: #fff;
  padding-left: 18px;
}

.proc-idx {
  font-family: var(--font-sans);
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}

.proc-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--titanium);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.proc-desc {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #666;
  max-width: 520px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .proc-row { grid-template-columns: 1fr; gap: 10px; }
  .proc-name { font-size: 1.5rem; }
}

/* =========================
   12) LAND (TOPography)
   ========================= */
.section-land {
  padding: 120px 0;
  background-color: #111;
  color: white;
  position: relative;
  overflow: hidden;
}

.topo-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://www.transparenttextures.com/patterns/dark-matter.png');
  opacity: 0.4;
  z-index: 0;
}

.land-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  position: relative;
  z-index: 10;
  align-items: center;
}
@media(min-width: 1024px) {
  .land-grid { grid-template-columns: 1.2fr 0.8fr; }
}

.land-list {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
}
.land-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
}
.land-list li i { color: var(--gold); font-size: 0.95rem; }

.land-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.btn-primary {
  display: inline-block;
  background-color: var(--gold);
  color: white;
  padding: 1rem 2.2rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 18px rgba(198,168,124,0.18);
}
.btn-primary:hover {
  background-color: var(--gold-dark);
  transform: translateY(-2px);
}

.decision-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 10px;
}

.land-contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--r-24);
  padding: 40px;
  transition: transform 0.25s ease, border-color 0.25s ease;
  box-shadow: var(--shadow-md);
}
.land-contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(198,168,124,0.3);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.icon-bg {
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--titanium);
  font-size: 1.5rem;
}

.card-header h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 6px 0;
  color: white;
  text-transform: uppercase;
  font-weight: 800;
}
.card-header p {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 26px;
}

.phone-link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
}
.phone-link:hover { color: var(--gold); }

.email-link {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  font-weight: 600;
}
.email-link:hover { color: white; }

.card-footer p {
  font-size: 0.85rem;
  color: var(--gold);
  background: rgba(198,168,124,0.1);
  padding: 10px 14px;
  border-radius: var(--r-12);
  display: inline-block;
  font-weight: 700;
}

/* =========================
   13) FOOTER (LIGHT)
   ========================= */
.footer-light {
  background-color: #fff;
  color: var(--titanium);
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  position: relative;
  z-index: 10;
  margin-bottom: 80px;
}
@media(min-width: 1024px) {
  .footer-content {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}

.footer-title {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  line-height: 0.9;
  margin: 0 0 40px 0;
  color: var(--titanium);
  text-transform: uppercase;
}
.footer-title .text-gold { color: var(--gold); }

.footer-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.link-simple {
  font-weight: 800;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(20,20,20,0.22);
  padding-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.link-simple:hover { border-color: var(--gold); color: var(--gold); }

.footer-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media(min-width: 768px) {
  .footer-info-grid { grid-template-columns: repeat(3, 1fr); }
}

.info-col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #999;
  margin: 0 0 18px 0;
  font-weight: 800;
  font-family: var(--font-sans);
}
.info-col p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--titanium);
  font-weight: 600;
  margin: 0;
}
.info-col p + p { margin-top: 6px; }

.map-link {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 800;
  display: inline-block;
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.map-link:hover { color: var(--gold-dark); }

.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.social-links li { margin-bottom: 10px; }
.social-links a {
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.social-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.8rem;
  color: #888;
  position: relative;
  z-index: 10;
}
@media(min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.bottom-right { display: flex; gap: 20px; }
.bottom-right a:hover { color: var(--titanium); }

.footer-watermark {
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-family: var(--font-display);
  font-size: 15rem;
  font-weight: 800;
  color: rgba(0,0,0,0.02);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  user-select: none;
  text-transform: uppercase;
}

/* =========================
   14) ANIMATIONS / REVEAL
   ========================= */
.animate-pulse { animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.delay-200 { transition-delay: 0.2s; }
.hero .main-title{
  font-weight: 800;
  letter-spacing: -0.04em;
  max-width: 10ch;
  margin-left:auto;
  margin-right:auto;
}
/* =========================
   AURA FIX PACK (override)
   ========================= */

/* HERO: mniej plakatu, więcej premium */
.hero .main-title{
  letter-spacing:-0.04em;
  max-width:10ch;
  margin-left:auto;
  margin-right:auto;
}
.hero .description{ max-width:30rem; }

/* NAV: trochę lżej */
.nav-capsule{
  top:1rem;
  padding:.6rem 1.2rem;
}

/* PROJECTS: mniej brutal, mniej overlap */
.proj-info-wrap{
  margin-left:-55px;
  border-radius:16px;
  box-shadow:0 18px 45px rgba(0,0,0,.14);
}
.project-row.reverse .proj-info-wrap{
  margin-right:-55px;
}

/* Stemple: badge zamiast "pieczątka" */
.photo-stamp{
  border-radius:999px;
  box-shadow:none;
  padding:10px 14px;
  font-size:.78rem;
  letter-spacing:.08em;
}
.stamp-coming{
  border:1px solid rgba(10,10,10,.25);
}

/* Harmonogram: mniej tabelka, więcej hierarchii */
.section-process-list .section-title{
  font-size:2.6rem;
  margin-bottom:18px;
}
.process-table{ border-top:1px solid rgba(0,0,0,.14); }
.proc-row{ padding:26px 0; }
.proc-name{ font-size:1.6rem; }
.proc-row:hover{ padding-left:10px; }

/* Footer: dół nie taki "biedny" */
.footer-bottom{ font-weight:600; letter-spacing:.02em; }
.footer-watermark{ opacity:.015; font-size:12rem; }
/* =========================
   AURA COMPACT PACK
   (zmniejsza skalę + szerokość)
   ========================= */

/* 1) Container: mniej szeroko */
.container{
  max-width: 1280px;
  padding: 0 28px;
}
@media (max-width: 768px){
  .container{ padding: 0 18px; }
}

/* 2) Sekcje: mniej powietrza */
.section-about{ padding: 6rem 0; }
.section-standard-dark{ padding: 90px 0; }
.section-projects-white{ padding: 110px 0; }
.section-archive-clay{ padding: 80px 0; }
.section-process-list{ padding: 100px 0; }
.section-land{ padding: 95px 0; }
.footer-light{ padding: 80px 0 35px; }

/* 3) Typografia: trochę mniejsza */
.section-title,
.section-title-light{ font-size: 3rem; }
@media (max-width: 768px){
  .section-title,
  .section-title-light{ font-size: 2.2rem; }
}

/* 4) Projekty: mniej “gigantów” */
.proj-title{ font-size: 2.6rem; }
.proj-img-wrap{ height: 620px; }
@media (max-width: 1024px){
  .proj-img-wrap{ height: 380px; }
}

/* 5) Harmonogram: mniej wielkie nazwy */
.proc-name{ font-size: 1.45rem; }

/* 6) Footer: tytuł mniej plakatowy */
.footer-title{ font-size: 3.2rem; }
@media (max-width: 768px){
  .footer-title{ font-size: 2.6rem; }
}
/* =========================
   AURA TYPO FIX PACK
   (Syne tylko dla display,
    reszta Manrope i lżej)
   ========================= */

/* 1) Globalnie: tekst = Manrope */
body{
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0;
}

/* 2) Display tylko tam gdzie ma sens */
.hero .main-title{
  font-family: var(--font-display);
  font-weight: 800;              /* było "za grubo" — zostawiam 800, ale... */
  letter-spacing: -0.045em;      /* ...bardziej elegancko */
}
.section-title,
.section-title-light,
.section-title-white,
.footer-title{
  font-family: var(--font-display);
  font-weight: 700;              /* KLUCZ: mniej toporne */
  letter-spacing: -0.03em;
}

/* 3) Wszystkie mniejsze nagłówki i UI = Manrope */
h3, h4,
.proc-name,
.proj-desc, .proj-desc-small,
.proc-desc,
.feature-item-dark h3,
.feature-item h3,
.land-contact-card h4,
.info-col h4{
  font-family: var(--font-sans);
}

/* 4) Harmonogram: wygląda teraz “premium editorial” */
.section-process-list .section-title{
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.proc-idx{
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  opacity: .75;
}
.proc-name{
  font-weight: 700;
  letter-spacing: -0.01em;
}
.proc-desc{
  font-weight: 500;
  color: rgba(20,20,20,.62);
}

/* 5) Grunty: mniej “krzyk”, więcej luksusu */
.section-land .section-title{
  font-weight: 700;
}
.land-list li{
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0;
}
.phone-link{
  font-family: var(--font-sans); /* BYŁ display -> robiło "napompowane" */
  font-weight: 800;
  letter-spacing: -0.02em;
}
.decision-text,
.card-header p,
.card-footer p{
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* 6) Stopka: tytuł zostaje display, ale reszta “clean” */
.footer-light{
  font-family: var(--font-sans);
}
.footer-actions .btn-primary,
.footer-actions .link-simple,
.bottom-right a{
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.info-col h4{
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}
.info-col p,
.social-links a{
  font-family: var(--font-sans);
  font-weight: 600;
}

/* 7) Badge / tagi: żadnego "Courier vibe" i mniej agresji */
.section-tag,
.section-tag-gold,
.section-tag-technical{
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}

/* 8) Projekty: tytuły wciąż mogą być display, ale lżej */
.proj-title{
  font-weight: 800;     /* może zostać, ale... */
  letter-spacing: -0.03em;
}
.proj-desc{
  font-family: var(--font-sans);
  font-weight: 500;
  color: rgba(255,255,255,.72);
}

/* 9) Mały ogólny “oddech” — mniej toporne wrażenie */
p{ font-weight: 400; }
/* =========================
   HERO MOBILE — NO CUT
   ========================= */
.hero-content{ padding: 0 18px !important; }

.hero .main-title{
  max-width: 100% !important;
  font-size: clamp(2.4rem, 12vw, 3.6rem) !important; /* klucz */
  line-height: 0.92 !important;
  letter-spacing: -0.03em !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
  text-align: center !important;
}

/* jeszcze ciaśniej na bardzo małych */
@media (max-width: 360px){
  .hero .main-title{
    font-size: clamp(2.1rem, 13vw, 3.2rem) !important;
    letter-spacing: -0.02em !important;
  }
}
