/* =========================================================
   Cockman Design & Renovations — Luxury Tile & Renovations
   Palette: Gold · Black · White
   ========================================================= */

:root {
  /* Brand */
  --gold:        #C9A24B;
  --gold-light:  #E7C871;
  --gold-deep:   #9A7B2E;
  --gold-grad:   linear-gradient(135deg, #E7C871 0%, #C9A24B 45%, #9A7B2E 100%);

  --black:       #0B0B0C;
  --ink:         #121214;
  --charcoal:    #1A1A1D;
  --charcoal-2:  #222226;

  --white:       #FFFFFF;
  --cream:       #F7F5F1;
  --paper:       #FBFAF8;
  --line:        #E7E2D9;

  --text:        #1B1B1D;
  --text-soft:   #565457;
  --text-light:  rgba(255,255,255,.74);
  --muted:       #9A958C;

  /* Type — Palatino across the site (system font, no web download needed) */
  --palatino: "Palatino", "Palatino Linotype", "Book Antiqua", "URW Palladio L", "P052", Georgia, serif;
  --display: var(--palatino);
  --serif:   var(--palatino);
  --sans:    var(--palatino);
  /* Clean system sans, used only for small uppercase utility labels, nav and buttons */
  --ui: "Helvetica Neue", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --maxw: 1200px;
  --radius: 4px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --shadow: 0 24px 60px -24px rgba(0,0,0,.35);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

/* ---------- Shared type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--ui);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
/* Signature "grout line" — a thin gold hairline that precedes every section label */
.eyebrow::before {
  content: ""; width: 28px; height: 1px; flex: none;
  background: currentColor; opacity: .75;
}
.eyebrow-dark { color: var(--gold-deep); }

.section-title {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.01em;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  color: var(--ink);
}
.section-title.light { color: var(--white); }

.section { padding: clamp(72px, 11vw, 140px) 0; }
.section-dark { background: var(--ink); color: var(--text-light); }
.section-charcoal { background: var(--charcoal); color: var(--text-light); }

.section-head { max-width: 680px; margin-bottom: 3.5rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-lead { margin-top: 1.2rem; font-size: 1.08rem; color: var(--text-soft); }
.section-dark .section-lead, .section-charcoal .section-lead { color: var(--text-light); }

.text-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; color: var(--gold-deep);
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: gap .3s var(--ease), border-color .3s var(--ease);
}
.text-link:hover { gap: .85rem; border-color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ui);
  font-weight: 600; font-size: .92rem; letter-spacing: .02em;
  padding: .85em 1.7em; border-radius: var(--radius);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.btn-lg { padding: 1.05em 2.1em; font-size: .98rem; }
.btn-block { width: 100%; }

.btn-gold {
  background: var(--gold-grad); color: #1a1407;
  box-shadow: 0 10px 26px -10px rgba(201,162,75,.7);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -10px rgba(201,162,75,.85); }

.btn-outline {
  border: 1px solid rgba(255,255,255,.4); color: var(--white);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-3px); }

.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--gold-deep); transform: translateY(-3px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 18px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.scrolled {
  background: rgba(11,11,12,.92);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 1px 0 rgba(201,162,75,.18);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
/* Header logo is hidden over the hero (the hero shows the single large logo);
   it fades in once the header turns solid on scroll, so it's never duplicated at the top. */
.brand { opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s var(--ease); }
.site-header.scrolled .brand { opacity: 1; visibility: visible; }
.brand-logo { height: 64px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,.4)); }

.nav-links { display: flex; align-items: center; gap: 2.1rem; font-family: var(--ui); }
.nav-links a {
  font-size: .92rem; font-weight: 500; color: rgba(255,255,255,.86);
  letter-spacing: .01em; position: relative; transition: color .3s var(--ease);
}
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1.5px;
  background: var(--gold-grad); transition: width .3s var(--ease);
}
.nav-links a:not(.nav-cta):hover { color: var(--gold-light); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { color: #1a1407 !important; }

/* Facebook / social icon */
.social-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  color: var(--white); border: 1px solid rgba(255,255,255,.3);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.social-icon::after { display: none; } /* override nav-link underline */
.social-icon:hover { background: var(--gold-grad); color: #1a1407; border-color: transparent; transform: translateY(-2px); }
.footer-fb {
  width: auto; gap: .55rem; padding: .5rem 1.1rem; border-radius: 100px;
  margin-top: 1.2rem; font-size: .88rem; font-weight: 600;
  color: var(--text-light); border-color: rgba(255,255,255,.22);
}
.footer-fb span { white-space: nowrap; }

.nav-toggle { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; width: 44px; height: 44px; z-index: 110; }
.nav-toggle span { width: 26px; height: 2px; background: var(--white); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-start;
  color: var(--white); overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background: url("assets/projects/project-7.jpg") center/cover no-repeat;
  transform: scale(1.08);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 70% 20%, rgba(11,11,12,.35), transparent 60%),
    linear-gradient(180deg, rgba(11,11,12,.78) 0%, rgba(11,11,12,.55) 35%, rgba(11,11,12,.82) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 820px; padding-block: 130px 80px; }
.hero .eyebrow { color: var(--gold-light); }
.hero-logo {
  display: block; height: 200px; width: auto;
  margin: 0 0 calc(5vh + 1rem); /* clear gap so the headline sits well beneath the logo */
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.5));
}
.hero-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.6rem, 6.6vw, 5rem); line-height: 1.02; letter-spacing: -.02em;
}
.hero-title .accent {
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { margin-top: 1.6rem; max-width: 560px; font-size: 1.15rem; color: rgba(255,255,255,.82); font-weight: 300; }
.hero-actions { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.45); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 8px;
}
.scroll-cue span { width: 3px; height: 8px; background: var(--gold-light); border-radius: 2px; animation: scrollPulse 1.8s var(--ease) infinite; }
@keyframes scrollPulse { 0%{opacity:0; transform:translateY(-4px);} 40%{opacity:1;} 80%,100%{opacity:0; transform:translateY(10px);} }

/* ---------- Intro ---------- */
.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.intro-copy p { margin-top: 1.4rem; font-size: 1.08rem; color: var(--text-soft); }
.intro-copy .text-link { margin-top: 1.8rem; }

.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.stat { background: var(--white); padding: 2rem 1.5rem; text-align: center; }
.stat-num { font-family: var(--display); font-size: clamp(2.4rem,5vw,3.2rem); font-weight: 700; color: var(--ink); line-height: 1; }
.stat-suffix { font-family: var(--display); font-size: 1.6rem; color: var(--gold); font-weight: 700; }
.stat-label { display: block; margin-top: .6rem; font-family: var(--ui); font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--text-soft); }

/* ---------- Services ---------- */
.services .section-head { max-width: 720px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08); }
.service-card {
  background: var(--ink); padding: 2.6rem 1.9rem;
  transition: background .4s var(--ease), transform .4s var(--ease);
  position: relative;
}
.service-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 2px; width: 0;
  background: var(--gold-grad); transition: width .4s var(--ease);
}
.service-card:hover { background: var(--charcoal-2); transform: translateY(-4px); }
.service-card:hover::before { width: 100%; }
.service-icon {
  color: var(--gold); margin-bottom: 1.1rem;
  width: 54px; height: 54px; display: grid; place-items: center;
  border: 1px solid rgba(201,162,75,.35); border-radius: 50%;
  transition: background .4s var(--ease), border-color .4s var(--ease);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card:hover .service-icon { border-color: var(--gold); background: rgba(201,162,75,.08); }
.service-card h3 { font-family: var(--display); font-size: 1.22rem; font-weight: 600; color: var(--white); margin-bottom: .7rem; line-height: 1.25; }
.service-card p { font-size: .95rem; color: var(--text-light); }

/* ---------- Work / Gallery ---------- */
.work { background: var(--cream); }

/* Category covers — one photo per category */
.category-covers { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.category-covers[hidden] { display: none; }
.cover-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 4 / 5; cursor: pointer; color: var(--white); text-align: left;
  padding: 0; border: 0; background: var(--charcoal);
}
.cover-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.cover-card:hover img { transform: scale(1.06); }
.cover-grad { position: absolute; inset: 0; background: linear-gradient(transparent 28%, rgba(11,11,12,.86)); }
.cover-card::after {
  content: ""; position: absolute; inset: 0; border: 1px solid transparent;
  border-radius: var(--radius); transition: border-color .35s var(--ease);
}
.cover-card:hover::after { border-color: rgba(201,162,75,.55); }
.cover-meta { position: absolute; inset: auto 0 0 0; padding: 1.4rem 1.3rem; display: grid; gap: .25rem; }
.cover-name { font-family: var(--display); font-size: 1.5rem; font-weight: 600; line-height: 1.1; }
.cover-count { font-family: var(--ui); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-light); }
.cover-more { font-family: var(--ui); font-size: .82rem; font-weight: 600; margin-top: .5rem; opacity: .85; transition: color .3s var(--ease); }
.cover-card:hover .cover-more { color: var(--gold-light); opacity: 1; }

/* Category detail */
.gallery-detail[hidden] { display: none; }
.detail-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem; margin-bottom: 2rem; }
.back-link {
  font-family: var(--ui); font-size: .85rem; font-weight: 600; letter-spacing: .03em;
  color: var(--gold-deep); display: inline-flex; align-items: center; gap: .4rem;
  min-height: 44px; transition: gap .3s var(--ease), color .3s var(--ease);
}
.back-link:hover { gap: .7rem; color: var(--ink); }

/* Filter chips */
.filters { display: flex; flex-wrap: wrap; gap: .6rem; }
.detail-bar .filters { margin-left: auto; }
.filter-btn {
  display: inline-flex; align-items: center; min-height: 44px;
  font-family: var(--ui); font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  padding: .5em 1.3em; border-radius: 100px; color: var(--text-soft);
  background: var(--white); border: 1px solid var(--line);
  transition: all .3s var(--ease);
}
.filter-btn:hover { border-color: var(--gold); color: var(--ink); }
.filter-btn.active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.filter-btn.active::before { content: ""; }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer;
  background: var(--charcoal); aspect-ratio: 1 / 1;
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.gallery-item.hide { display: none; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.4rem 1.2rem .9rem;
  background: linear-gradient(transparent, rgba(11,11,12,.85));
  opacity: 0; transform: translateY(12px); transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.gallery-item figcaption span {
  color: var(--white); font-family: var(--display); font-size: 1.05rem; font-weight: 600;
  border-left: 2px solid var(--gold); padding-left: .7rem;
}
.gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.4rem; }
.step { position: relative; padding-top: 2.6rem; }
.step::before { content: ""; position: absolute; top: 0; left: 0; width: 44px; height: 2px; background: var(--gold-grad); }
.step-num { font-family: var(--ui); font-size: 1rem; color: var(--gold); font-weight: 700; letter-spacing: .1em; }
.step h3 { font-family: var(--display); color: var(--white); font-size: 1.35rem; font-weight: 600; margin: .6rem 0 .7rem; }
.step p { font-size: .96rem; color: var(--text-light); }

/* ---------- About ---------- */
.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: 6px; box-shadow: var(--shadow); aspect-ratio: 4/3.4; object-fit: cover; }
.about-badge {
  position: absolute; right: -18px; bottom: -22px; background: var(--ink); color: var(--white);
  padding: 1.5rem 1.7rem; border-radius: 6px; box-shadow: var(--shadow); max-width: 220px;
  border-bottom: 3px solid var(--gold);
}
.about-badge-num { display: block; font-family: var(--display); font-size: 1.7rem; font-weight: 700; color: var(--gold-light); }
.about-badge-label { display: block; margin-top: .3rem; font-size: .86rem; color: var(--text-light); line-height: 1.4; }

.about-copy p { margin-top: 1.3rem; font-size: 1.08rem; color: var(--text-soft); }
.feature-list { margin: 1.8rem 0 2.2rem; display: grid; gap: 1rem; }
.feature-list li { position: relative; padding-left: 2rem; font-size: 1rem; color: var(--text-soft); }
.feature-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--gold-deep); font-weight: 700;
  width: 1.4rem; height: 1.4rem; display: grid; place-items: center;
}
.feature-list strong { color: var(--ink); font-weight: 600; }

/* ---------- Contact ---------- */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.contact-info p { margin-top: 1.3rem; font-size: 1.08rem; color: var(--text-soft); max-width: 460px; }
.contact-list { margin-top: 2.4rem; display: grid; gap: 1.4rem; }
.contact-list li { display: grid; gap: .2rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
.ci-label { font-family: var(--ui); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
.contact-list a, .contact-list span:not(.ci-label) { font-size: 1.18rem; font-family: var(--display); color: var(--ink); }
.contact-list a:hover { color: var(--gold-deep); }
.social a { font-size: 1.05rem !important; }
.social a:hover { color: var(--gold-deep); }

.contact-form { background: var(--white); padding: clamp(1.8rem, 4vw, 2.8rem); border-radius: 8px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.field { margin-bottom: 1.2rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label { display: block; font-family: var(--ui); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-soft); margin-bottom: .45rem; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,.16);
}
.field textarea { resize: vertical; }
.req { color: var(--gold-deep); font-weight: 700; }
.form-hint { margin-top: .8rem; font-family: var(--ui); font-size: .8rem; color: var(--text-soft); text-align: center; }
.form-note { margin-top: .5rem; font-size: .92rem; text-align: center; min-height: 1.2em; }
.form-note.ok { color: var(--gold-deep); font-weight: 600; }
.form-note.err { color: #b23b3b; font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: var(--text-light); padding-top: 4rem; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; align-items: start; padding-bottom: 3rem; }
.footer-brand img { height: 64px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; max-width: 320px; }
.footer-nav { display: flex; flex-direction: column; gap: .7rem; }
.footer-nav a, .footer-contact a { font-size: .95rem; transition: color .3s var(--ease); }
.footer-nav a:hover, .footer-contact a:hover { color: var(--gold-light); }
.footer-contact { display: flex; flex-direction: column; gap: .7rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.5rem 0; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-family: var(--ui); font-size: .82rem; color: var(--muted); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(8,8,9,.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-figure { max-width: min(1100px, 92vw); max-height: 88vh; text-align: center; }
.lb-figure img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 4px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lb-figure figcaption { margin-top: 1rem; color: var(--gold-light); font-family: var(--display); font-size: 1.05rem; }
.lb-close { position: absolute; top: 22px; right: 30px; font-size: 2.4rem; color: #fff; line-height: 1; opacity: .8; transition: opacity .3s, transform .3s; }
.lb-close:hover { opacity: 1; transform: rotate(90deg); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 3rem; color: #fff; opacity: .65; padding: 1rem; transition: opacity .3s, color .3s; }
.lb-nav:hover { opacity: 1; color: var(--gold-light); }
.lb-prev { left: 2vw; } .lb-next { right: 2vw; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 2rem 2.4rem; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .intro-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 520px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
/* Mobile drawer menu — hamburger from 900px down, so phones and small tablets get the clean menu */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem;
    background: rgba(11,11,12,.98); backdrop-filter: blur(14px);
    padding: 2rem 2.4rem; transform: translateX(100%); transition: transform .4s var(--ease);
    box-shadow: -24px 0 60px rgba(0,0,0,.5);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.15rem; }
  .nav-cta { margin-top: .6rem; }
}
@media (max-width: 720px) {
  .hero-content { padding-block: 104px 56px; }
  .hero-logo { height: 118px; margin-bottom: 2rem; }
  .stats { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom .container { flex-direction: column; gap: .4rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .about-badge { right: 12px; }
}
@media (max-width: 460px) {
  .service-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
