/* ============================================================
   DALMA FORMING — Premium Rebuild v2
   ============================================================ */

/* --- TOKENS --- */
:root {
  --gold: #C8913A;
  --gold-dark: #A67625;
  --gold-light: #E2B565;
  --gold-glow: rgba(200, 145, 58, .25);
  --gold-50: #faf5ec;

  --black: #0a0a0a;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --white: #FFFFFF;
  --off: #F5F4F0;
  --off-2: #EEEDEA;

  --g50: #FAFAFA;
  --g100: #EBEBEB;
  --g200: #D4D4D4;
  --g300: #B0B0B0;
  --g400: #8A8A8A;
  --g500: #6B6B6B;
  --g600: #525252;
  --g700: #3D3D3D;
  --g800: #262626;
  --g900: #171717;

  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --head: 'Space Grotesk', var(--sans);
  --ease: cubic-bezier(.25, 1, .5, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --max: 1200px;
  --r: 12px;
  --r-sm: 8px;
}


/* --- RESET --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: 20px;
}
body {
  font-family: var(--sans);
  color: var(--g800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
::selection { background: var(--gold); color: var(--white); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: var(--sans); cursor: pointer; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 780px; }
.text-gold { color: var(--gold); }
.hide-mobile { }


/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 10, 10, .85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: background .3s;
}
.header.scrolled {
  background: rgba(10, 10, 10, .95);
}
.header-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
}

/* Logo — stacked with tagline */
.logo {
  display: flex; flex-direction: column;
  gap: 1px;
}
.logo-mark {
  font-family: var(--head); font-weight: 700; font-size: 16px;
  letter-spacing: .12em; color: var(--white);
  line-height: 1.2;
}
.logo-tagline {
  font-size: 9px; letter-spacing: .14em;
  color: rgba(255, 255, 255, .3); font-weight: 600;
  text-transform: uppercase; line-height: 1;
}

/* Nav links */
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: rgba(255, 255, 255, .5);
  letter-spacing: .02em; transition: color .25s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1.5px; background: var(--gold); border-radius: 2px;
  transform: scaleX(0); transition: transform .25s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Header right */
.header-right { display: flex; align-items: center; gap: 16px; }
.header-phone {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: rgba(255, 255, 255, .5);
  transition: color .25s; letter-spacing: .01em;
}
.header-phone svg { opacity: .5; transition: opacity .25s; }
.header-phone:hover { color: var(--white); }
.header-phone:hover svg { opacity: 1; }

/* Burger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px; z-index: 200;
}
.burger span {
  width: 22px; height: 2px; background: var(--white);
  border-radius: 2px; transition: all .35s var(--ease);
  transform-origin: center;
}
.burger.active span:first-child { transform: rotate(45deg) translate(3.5px, 3.5px); }
.burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.active span:last-child { transform: rotate(-45deg) translate(3.5px, -3.5px); }

/* Mobile nav */
.mob-nav {
  display: none; position: fixed; inset: 0; z-index: 90;
  background: var(--black);
  flex-direction: column; justify-content: center;
  padding: 100px 32px 40px;
  opacity: 0; pointer-events: none; transition: opacity .35s;
}
.mob-nav.open { opacity: 1; pointer-events: all; }
.mob-nav-links { display: flex; flex-direction: column; gap: 6px; }
.mob-nav-links a {
  font-family: var(--head); font-size: 32px; font-weight: 600;
  color: var(--white); padding: 12px 0; letter-spacing: -.01em;
  opacity: .7; transition: opacity .2s;
}
.mob-nav-links a:hover { opacity: 1; }
.mob-nav-bottom { margin-top: auto; display: flex; flex-direction: column; gap: 16px; }
.mob-phone { font-size: 16px; font-weight: 700; color: var(--gold); }


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 600;
  font-family: var(--sans); cursor: pointer; border: none;
  transition: all .25s var(--ease); letter-spacing: .01em; line-height: 1.3;
  position: relative; overflow: hidden;
}
.btn-sm { padding: 10px 20px; font-size: 13px; border-radius: 6px; }
.btn-lg { padding: 16px 32px; font-size: 15px; border-radius: var(--r-sm); }
.btn-full { width: 100%; }

.btn-accent {
  background: var(--gold); color: var(--white);
  box-shadow: 0 2px 8px rgba(200, 145, 58, .2);
}
.btn-accent:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 145, 58, .3);
}

.btn-outline {
  background: transparent; color: var(--g700);
  border: 1.5px solid var(--g200);
}
.btn-outline:hover { border-color: var(--g700); color: var(--g900); }

.btn-ghost {
  background: rgba(255, 255, 255, .08); color: rgba(255, 255, 255, .8);
  border: 1.5px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, .14);
  color: var(--white);
  border-color: rgba(255, 255, 255, .25);
}

.hero-glow {
  box-shadow: 0 4px 20px rgba(200, 145, 58, .35), 0 0 60px rgba(200, 145, 58, .1);
}
.hero-glow:hover {
  box-shadow: 0 8px 32px rgba(200, 145, 58, .45), 0 0 80px rgba(200, 145, 58, .15);
}

.sec-head-light .btn-outline {
  color: rgba(255, 255, 255, .5);
  border-color: rgba(255, 255, 255, .12);
}
.sec-head-light .btn-outline:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, .3);
}


/* ============================================================
   HERO — Full-bleed cinematic
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,.75) 0%, rgba(10,10,10,.45) 40%, rgba(10,10,10,.6) 70%, rgba(10,10,10,.9) 100%);
}
/* Grain texture */
.hero-overlay::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: .4;
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 140px 24px 120px;
}

/* Hero badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px 8px 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 100px;
  font-size: 12px; font-weight: 600; color: rgba(255, 255, 255, .6);
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}

.hero h1 {
  font-family: var(--head);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700; color: var(--white);
  line-height: 1.08; letter-spacing: -.035em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px; color: rgba(255, 255, 255, .75);
  line-height: 1.6; margin-bottom: 40px;
  max-width: 560px; margin-left: auto; margin-right: auto;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .5);
}

.hero-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .2);
  animation: scrollBounce 2.5s ease-in-out infinite;
  z-index: 2;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}


/* ============================================================
   SECTIONS
   ============================================================ */
.sec { padding: 100px 0; }
.sec-dark { background: var(--black-2); color: var(--white); }
.sec-alt { background: var(--off); }

.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
h2 {
  font-family: var(--head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.12;
  letter-spacing: -.025em; color: var(--g900);
}
.sec-dark h2 { color: var(--white); }

.sec-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; margin-bottom: 48px; padding-bottom: 28px;
  border-bottom: 1px solid var(--g100);
}
.sec-dark .sec-head { border-color: rgba(255, 255, 255, .08); }
.sec-head-center {
  flex-direction: column; align-items: center;
  text-align: center; border: none;
}


/* ============================================================
   ABOUT — White bg, contained photo + text side-by-side
   ============================================================ */
.about { background: var(--white); }

.about-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: stretch;
}

.about-content h2 { margin-bottom: 18px; }
.about-content > p {
  font-size: 15px; color: var(--g500); line-height: 1.75;
  margin-bottom: 14px;
}
.about-content a {
  color: var(--gold); font-weight: 600;
  text-decoration: underline; text-underline-offset: 3px;
}
.about-content a:hover { color: var(--gold-dark); }

.about-photo {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .1), 0 4px 16px rgba(0, 0, 0, .05);
}
.about-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 6s ease;
}
.about-photo:hover img { transform: scale(1.04); }

/* Stat counters */
.about-stats {
  display: flex; gap: 32px; margin: 24px 0 20px;
  padding: 20px 0;
  border-top: 1px solid var(--g100);
  border-bottom: 1px solid var(--g100);
}
.about-stat { text-align: left; }
.about-stat-num {
  font-family: var(--head); font-size: 32px; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.about-stat-plus {
  font-family: var(--head); font-size: 24px; font-weight: 600;
  color: var(--gold); vertical-align: top;
}
.about-stat-label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--g400); text-transform: uppercase; letter-spacing: .04em;
  margin-top: 4px;
}

.about-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.about-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600; letter-spacing: .03em;
  padding: 6px 14px; border-radius: 100px;
  background: var(--off); border: 1px solid var(--g200);
  color: var(--g700);
  transition: all .25s;
}
.about-tag svg { color: var(--gold); flex-shrink: 0; }
.about-tag:hover {
  border-color: var(--gold);
  background: var(--gold-50);
}


/* ============================================================
   SERVICES — Proper section, 3-col card grid
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.svc {
  display: flex; flex-direction: column; gap: 14px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--g100);
  border-radius: var(--r);
  transition: all .35s var(--ease);
  cursor: default;
}
.svc:hover {
  border-color: rgba(200, 145, 58, .25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .06);
  transform: translateY(-4px);
}
.svc-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-50);
  border: 1px solid rgba(200, 145, 58, .12);
  border-radius: 10px;
  color: var(--gold);
  transition: all .3s var(--ease);
}
.svc-icon svg { width: 20px; height: 20px; }
.svc:hover .svc-icon {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.svc h3 {
  font-family: var(--head); font-size: 16px; font-weight: 700;
  color: var(--g900); letter-spacing: -.01em;
}
.svc p { font-size: 13.5px; color: var(--g500); line-height: 1.65; }


/* ============================================================
   PORTFOLIO — Uniform 3-column grid with overlay captions
   ============================================================ */
.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.port-item {
  position: relative; border-radius: var(--r); overflow: hidden;
  margin: 0; cursor: pointer;
  aspect-ratio: 4 / 3;
}
.port-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease), filter .6s;
}
.port-item:hover img {
  transform: scale(1.06);
}

.port-item figcaption {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, .75) 100%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.port-item:hover figcaption { opacity: 1; }

.port-tag {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 6px;
  font-family: var(--sans);
}
.port-item figcaption strong {
  font-family: var(--head); font-size: 17px; font-weight: 600;
  color: var(--white); margin-bottom: 4px;
}
.port-item figcaption p {
  font-size: 13px; color: rgba(255, 255, 255, .5);
  line-height: 1.5;
}


/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0, 0, 0, .92);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease);
  padding: 40px;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain; border-radius: var(--r);
  transform: scale(.92); transition: transform .4s var(--ease-out);
}
.lightbox.open img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); cursor: pointer;
  transition: all .25s;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, .2);
}


/* ============================================================
   REVIEWS
   ============================================================ */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.rev {
  background: var(--off); border: 1px solid var(--g100);
  border-radius: var(--r); padding: 32px;
  display: flex; flex-direction: column;
  transition: all .3s var(--ease);
}
.rev:hover {
  border-color: rgba(200, 145, 58, .25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .06);
  transform: translateY(-4px);
}
.rev-stars {
  color: var(--gold); font-size: 16px; letter-spacing: 3px;
  margin-bottom: 18px;
}
.rev p {
  font-size: 15px; color: var(--g600); line-height: 1.75;
  flex: 1; margin-bottom: 24px; font-style: italic;
}
.rev footer { display: flex; flex-direction: column; gap: 2px; }
.rev footer strong { font-size: 14px; font-weight: 700; color: var(--g900); }
.rev footer cite { font-size: 13px; color: var(--g400); font-style: normal; }


/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--black);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute;
  top: -50%; left: -20%; width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(200, 145, 58, .08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; position: relative; z-index: 1;
}
.cta-text h2 {
  color: var(--white); font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}
.cta-text p { color: rgba(255, 255, 255, .4); font-size: 15px; }
.cta-actions { display: flex; gap: 12px; flex-shrink: 0; }


/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--g100);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq-item.open {
  border-color: rgba(200, 145, 58, .3);
  box-shadow: 0 4px 16px rgba(200, 145, 58, .06);
}

.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 20px 24px;
  background: none; border: none;
  font-size: 15px; font-weight: 600; color: var(--g900);
  text-align: left; cursor: pointer;
  transition: color .2s;
}
.faq-q:hover { color: var(--gold); }
.faq-chevron {
  flex-shrink: 0; color: var(--g400);
  transition: transform .35s var(--ease), color .2s;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease), padding .4s var(--ease);
}
.faq-item.open .faq-a {
  max-height: 300px;
}
.faq-a p {
  padding: 0 24px 20px;
  font-size: 14px; color: var(--g500); line-height: 1.75;
}


/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 80px; align-items: start;
}
.contact-info h2 { margin-bottom: 14px; }
.contact-desc { font-size: 15px; color: var(--g500); line-height: 1.7; margin-bottom: 36px; }

.contact-items { display: flex; flex-direction: column; gap: 12px; }
.ci {
  display: flex; align-items: center; gap: 14px;
  color: var(--g800); transition: all .25s;
  padding: 12px 16px; border-radius: var(--r-sm);
  border: 1px solid transparent;
}
a.ci:hover {
  color: var(--gold);
  background: var(--gold-50);
  border-color: rgba(200, 145, 58, .12);
}
.ci-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-50);
  border: 1px solid rgba(200, 145, 58, .12);
  border-radius: 10px;
  color: var(--gold);
  transition: all .25s;
}
a.ci:hover .ci-icon {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.ci small {
  display: block; font-size: 11px; color: var(--g400); font-weight: 600;
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: 1px;
}
.ci strong { display: block; font-size: 15px; font-weight: 600; }

.contact-map { margin-top: 32px; border-radius: var(--r); overflow: hidden; }

/* Form */
.form {
  background: var(--off); border: 1px solid var(--g100);
  border-radius: 16px;
}
.form-inner { padding: 40px; }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label { font-size: 13px; font-weight: 600; color: var(--g700); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row .field { margin-bottom: 0; }

.form input, .form select, .form textarea {
  width: 100%; padding: 13px 16px; background: var(--white);
  border: 1px solid var(--g200); border-radius: var(--r-sm);
  font-size: 15px; font-family: var(--sans); color: var(--g800);
  outline: none; transition: border-color .25s, box-shadow .25s;
}
.form input::placeholder, .form textarea::placeholder { color: var(--g300); }
.form select {
  appearance: none; cursor: pointer; color: var(--g400);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A8A8A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.form input:focus, .form select:focus, .form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 145, 58, .1);
}
.form textarea { resize: vertical; }
.form-note {
  font-size: 13px; color: var(--g400);
  text-align: center; margin-top: 14px;
}

.form-success {
  padding: 56px 0; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.form-success-check {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-50); border: 2px solid var(--gold);
  border-radius: 50%; margin-bottom: 20px; color: var(--gold);
}
.form-success h3 {
  font-family: var(--head); font-size: 20px;
  margin-bottom: 8px; color: var(--g900);
}
.form-success p { color: var(--g500); font-size: 14px; margin-bottom: 24px; }


/* ============================================================
   FOOTER — Base44-inspired clean layout
   ============================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.foot-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 32px 0;
  flex-wrap: wrap;
  gap: 20px;
}

.foot-brand {
  display: flex; flex-direction: column; gap: 2px;
}
.foot-logo {
  font-family: var(--head); font-weight: 700; font-size: 14px;
  letter-spacing: .1em; color: var(--white);
}
.foot-tagline {
  font-size: 9px; letter-spacing: .14em;
  color: rgba(255, 255, 255, .25); font-weight: 600;
  text-transform: uppercase;
}

.foot-links {
  display: flex; gap: 28px;
}
.foot-links a {
  font-size: 13px; color: rgba(255, 255, 255, .3);
  transition: color .2s; font-weight: 500;
}
.foot-links a:hover { color: var(--white); }

.foot-copy {
  font-size: 12px; color: rgba(255, 255, 255, .15);
}


/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal-up.vis {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.d2 { transition-delay: .1s; }
.d3 { transition-delay: .2s; }
.d4 { transition-delay: .3s; }
.d5 { transition-delay: .4s; }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content { padding: 120px 24px 80px; }
  .hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }

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

  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 500px; }
  .about-stats { gap: 24px; }

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

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

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .foot-inner { flex-direction: column; text-align: center; gap: 16px; }
}

@media (max-width: 768px) {
  .nav-links, .header-right { display: none; }
  .burger { display: flex; }
  .mob-nav { display: flex; }
  .hide-mobile { display: none; }

  .sec { padding: 80px 0; }
  .sec-head {
    flex-direction: column; align-items: flex-start;
    gap: 16px; margin-bottom: 40px; padding-bottom: 24px;
  }

  .hero-content { padding: 100px 20px 60px; }
  .hero h1 { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .hero-sub { font-size: 15px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; text-align: center; }

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

  .about-stats { flex-wrap: wrap; gap: 20px; }

  .port-grid { grid-template-columns: 1fr; }
  .port-item figcaption { opacity: 1; }

  .cta-banner { padding: 56px 0; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; }

  .form-row { grid-template-columns: 1fr; }
  .form-inner { padding: 28px; }
  .form input, .form select, .form textarea { font-size: 16px; }

  .foot-links { gap: 20px; flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .sec { padding: 64px 0; }
  .hero-content { padding: 90px 16px 50px; }
  .svc { padding: 20px; }
  .form-inner { padding: 20px; }
}
