@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&family=Bebas+Neue&display=swap');

/* =========================================
   CSS VARIABLES
   ========================================= */
:root {
  --gold: #C9A84C;
  --gold-light: #E8CC7A;
  --gold-dark: #A07830;
  --black: #000000;
  --dark: #0A0A0A;
  --dark2: #111111;
  --dark3: #1A1A1A;
  --mid: #2A2A2A;
  --smoke: #F7F5F0;
  --cream: #FAF8F3;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-mid: #555555;
  --text-light: #999999;
  --transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold: 0 20px 60px rgba(201, 168, 76, 0.2);
  --header-height: 76px;
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  max-width: 100vw;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
}

.display-font {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
  width: 100%;
}

/* =========================================
   HEADER
   ========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 5%;
  max-width: 1280px;
  margin: 0 auto;
  height: var(--header-height);
}

.header-logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  color: rgba(255,255,255,0.75);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-cta {
  background: var(--gold);
  color: var(--black);
  padding: 11px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  border: 1px solid var(--gold);
  white-space: nowrap;
}

.header-cta:hover {
  background: transparent;
  color: var(--gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--black);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding: 2rem 5%;
  z-index: 999;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu .nav-link {
  font-size: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-menu .header-cta {
  text-align: center;
  margin-top: 0.5rem;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 0;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand .footer-logo img {
  height: 70px;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-col address {
  font-style: normal;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 2;
}

.footer-col address a {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.footer-col address a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.03em;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 16px 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  border: 1px solid var(--gold);
  cursor: pointer;
  white-space: nowrap;
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}

.btn-outline-gold {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 16px 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  border: 1px solid var(--gold);
  cursor: pointer;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 16px 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.5);
  cursor: pointer;
}

.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* =========================================
   SECTION LABELS & HEADERS
   ========================================= */
.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.section-title.light {
  color: var(--white);
}

.gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2rem;
}

.gold-line.center {
  margin-left: auto;
  margin-right: auto;
}

/* =========================================
   STATS BAR
   ========================================= */
.stats-bar {
  background: var(--dark2);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 60px 0;
  width: 100%;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
}

.stat-item {
  text-align: center;
  padding: 20px 30px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--gold);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* =========================================
   MODAL
   ========================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--white);
  padding: 60px 50px;
  text-align: center;
  max-width: 480px;
  width: 90%;
  transform: translateY(30px) scale(0.97);
  transition: var(--transition);
}

.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}

.modal-icon {
  width: 72px;
  height: 72px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: var(--gold);
  font-size: 28px;
}

.modal-box h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.modal-box p {
  color: var(--text-mid);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* =========================================
   FORM STYLES
   ========================================= */
.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid #E0DDD6;
  background: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  border-radius: 0;
  appearance: none;
}

.form-control:focus {
  border-color: var(--gold);
  background: var(--white);
}

.form-control::placeholder {
  color: rgba(0,0,0,0.3);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

/* =========================================
   HERO (index.html inline — mirrored here)
   ========================================= */
.hero {
  min-height: 100vh;
  background: var(--black);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2400') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-height) + 40px) 5% 100px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  animation: heroFadeIn 1.2s ease 0.3s both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 9vw, 9rem);
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 0.95;
  margin-bottom: 1.5rem;
  word-break: break-word;
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  right: 5%;
  bottom: 100px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollAnim 1.8s ease infinite;
}

@keyframes scrollAnim {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50%       { transform: scaleY(1); transform-origin: top; }
}

/* =========================================
   INTRO STRIP
   ========================================= */
.intro-strip {
  background: var(--gold);
  padding: 22px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  width: 100%;
  overflow: hidden;
}

.intro-strip p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--black);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.intro-strip-dot {
  width: 5px;
  height: 5px;
  background: var(--black);
  border-radius: 50%;
  opacity: 0.4;
  flex-shrink: 0;
}

/* =========================================
   FEATURES / SERVICES SECTION
   ========================================= */
.features-section {
  padding: 120px 0;
  background: var(--cream);
  overflow: hidden;
}

.features-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}

.features-lead {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.9;
  max-width: 400px;
}

.services-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  width: 100%;
}

.service-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--dark3);
  min-width: 0;
}

.service-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.5s ease;
  filter: brightness(0.6);
}

.service-tile:hover img {
  transform: scale(1.07);
  filter: brightness(0.4);
}

.service-tile-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 25px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  transition: var(--transition);
}

.service-tile:hover .service-tile-content {
  transform: translateY(-10px);
}

.tile-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.service-tile h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.service-tile p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.service-tile:hover p {
  opacity: 1;
  transform: translateY(0);
}

.tile-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
  opacity: 0;
  transition: opacity 0.4s ease 0.15s;
}

.service-tile:hover .tile-link {
  opacity: 1;
}

/* =========================================
   ABOUT TEASER
   ========================================= */
.about-teaser {
  background: var(--dark2);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.about-teaser::before {
  content: 'BUILDHER';
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20vw;
  color: rgba(255,255,255,0.02);
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  letter-spacing: 0.05em;
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
}

.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
}

.about-img-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-img-badge span:first-child {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--black);
  line-height: 1;
}

.about-img-badge span:last-child {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.7);
}

.about-teaser-text .section-label { color: var(--gold); }
.about-teaser-text .section-title { color: var(--white); margin-bottom: 1.5rem; }
.about-teaser-text p {
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

/* =========================================
   PROCESS
   ========================================= */
.process-section {
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}

.process-header {
  text-align: center;
  margin-bottom: 80px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  width: 100%;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  pointer-events: none;
}

.process-step {
  text-align: center;
  padding: 0 20px;
  min-width: 0;
}

.step-circle {
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  background: var(--white);
  position: relative;
  z-index: 1;
}

.step-circle span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.process-step h4 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
  position: relative;
  padding: 100px 0;
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=2000') center/cover no-repeat;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 5%;
}

.cta-inner h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-inner p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
  font-size: 1rem;
  line-height: 1.8;
}

/* =========================================
   PAGE TRANSITIONS & REVEAL ANIMATIONS
   ========================================= */
.page-transition {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* =========================================
   RESPONSIVE — 1024px
   ========================================= */
@media (max-width: 1024px) {
  .features-header {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-teaser-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-img-badge {
    bottom: 15px;
    right: 15px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* =========================================
   RESPONSIVE — 768px (Tablet / Mobile)
   ========================================= */
@media (max-width: 768px) {

  /* --- Global --- */
  .container {
    padding: 0 6%;
  }

  /* --- Header --- */
  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* --- Hero --- */
  .hero {
    align-items: flex-start;
    min-height: 100svh;
  }

  .hero-content {
    padding: calc(var(--header-height) + 30px) 6% 80px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 13vw, 5rem);
    line-height: 1;
  }

  .hero-sub {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .hero-btns {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
  }

  .hero-btns a {
    text-align: center;
    width: 100%;
    max-width: 340px;
  }

  .hero-scroll {
    display: none;
  }

  /* --- Intro strip --- */
  .intro-strip {
    flex-direction: column;
    gap: 0.4rem;
    padding: 18px 6%;
    text-align: center;
  }

  .intro-strip p {
    font-size: 0.95rem;
    white-space: normal;
  }

  .intro-strip-dot {
    display: none;
  }

  /* --- Stats --- */
  .stats-bar {
    padding: 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    padding: 28px 16px;
    border-right: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3) {
    border-right: 1px solid rgba(255,255,255,0.06);
    border-bottom: none;
  }

  .stat-item:nth-child(4) {
    border-right: none;
    border-bottom: none;
  }

  .stat-number {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  /* --- Features / Services --- */
  .features-section {
    padding: 60px 0;
  }

  .features-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .features-lead {
    max-width: 100%;
  }

  .services-preview {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .service-tile {
    aspect-ratio: 16/9;
  }

  .service-tile p {
    opacity: 1 !important;
    transform: none !important;
  }

  .service-tile .tile-link {
    opacity: 1 !important;
  }

  /* --- About --- */
  .about-teaser {
    padding: 60px 0;
  }

  .about-teaser::before {
    display: none;
  }

  .about-teaser-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-img-wrap {
    padding-bottom: 30px;
  }

  .about-img-badge {
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
  }

  .about-img-badge span:first-child {
    font-size: 2rem;
  }

  /* --- Process --- */
  .process-section {
    padding: 60px 0;
  }

  .process-header {
    margin-bottom: 50px;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .process-steps::before {
    display: none;
  }

  /* --- CTA --- */
  .cta-banner {
    padding: 70px 0;
  }

  .cta-inner h2 {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  /* --- Footer --- */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* =========================================
   RESPONSIVE — 480px (Small Mobile)
   ========================================= */
@media (max-width: 480px) {

  .hero h1 {
    font-size: clamp(2.4rem, 14vw, 3.5rem);
  }

  .hero-btns a {
    max-width: 100%;
  }

  .btn-gold,
  .btn-outline-gold,
  .btn-outline-white {
    padding: 14px 28px;
    font-size: 0.75rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .section-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .modal-box {
    padding: 40px 28px;
  }

  .footer-brand p {
    max-width: 100%;
  }
}