/* ============================================================
   DRASIOTECH — MASTER STYLESHEET
   Aesthetic: Luxury Editorial / Refined Dark Gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ──────────── TOKENS ──────────── */
:root {
  --ink:          #111110;
  --ink-60:       #4a4a47;
  --ink-40:       #7a7a76;
  --paper:        #f7f5f2;
  --paper-dark:   #eae7e2;
  --white:        #ffffff;
  --gold:         #c9a227;
  --gold-light:   #dcc56a;
  --gold-muted:   rgba(201,162,39,.18);
  --charcoal:     #1c1b18;
  --charcoal-90:  #2a2926;
  --charcoal-80:  #3a3935;
  --warm-mid:     #8a8479;

  --font-head:    'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    32px;

  --shadow-card:  0 2px 12px rgba(17,17,16,.06), 0 8px 40px rgba(17,17,16,.04);
  --shadow-hover: 0 8px 32px rgba(17,17,16,.12), 0 24px 64px rgba(17,17,16,.06);
  --shadow-deep:  0 24px 80px rgba(17,17,16,.18);

  --transition:   .35s cubic-bezier(.4,0,.2,1);
}

/* ──────────── RESET ──────────── */
*, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display:block; max-width:100%; }
a { text-decoration:none; color:inherit; }

/* ──────────── HEADER / NAV ──────────── */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(201,162,39,.22);
}
.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.4rem 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.logo span { color: var(--gold); }

nav {
  display: flex;
  gap: .4rem;
  align-items: center;
}
nav a {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  padding: .65rem 1.25rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
nav a::after {
  content:'';
  position:absolute;
  bottom:.38rem; left:50%;
  transform:translateX(-50%);
  width:0; height:2px;
  background:var(--gold);
  transition:width var(--transition);
}
nav a:hover, nav a.active { color: var(--white); }
nav a:hover::after, nav a.active::after { width:55%; }
nav .nav-cta {
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 700;
  padding: .68rem 1.5rem;
  border-radius: var(--radius-sm);
  margin-left: .6rem;
}
nav .nav-cta::after { display:none; }
nav .nav-cta:hover {
  background: var(--gold-light);
  color: var(--charcoal);
  box-shadow: 0 4px 18px rgba(201,162,39,.4);
}

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:.5rem; z-index:201; position:relative; }
.hamburger span { width:24px; height:2px; background:var(--white); border-radius:2px; transition:var(--transition); }

/* ──────────── HERO (index) ──────────── */
.hero {
  position:relative;
  min-height: 90vh;
  display:flex;
  align-items:center;
  background: var(--charcoal);
  overflow:hidden;
}
.hero-bg {
  position:absolute; inset:0;
  background: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1600&q=80')
              center/cover no-repeat;
  opacity:.2;
}
.hero::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(28,27,24,.96) 0%, rgba(28,27,24,.72) 55%, rgba(28,27,24,.45) 100%);
  z-index:1;
}
.hero::after {
  content:''; position:absolute;
  bottom:0; left:0;
  width:100%; height:4px;
  background:linear-gradient(90deg, var(--gold), transparent 70%);
  z-index:2;
}
.hero-content {
  position:relative; z-index:2;
  max-width:1320px;
  margin:0 auto;
  padding:7rem 6% 6rem;
  width:100%;
}
.hero-label {
  display:inline-block;
  font-size:.77rem;
  font-weight:600;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:1.8rem;
  padding:.42rem .95rem;
  border:1px solid rgba(201,162,39,.32);
  border-radius:100px;
}
.hero h1 {
  font-family:var(--font-head);
  font-size:clamp(2.9rem, 6.5vw, 5.6rem);
  font-weight:300;
  color:var(--white);
  line-height:1.08;
  max-width:760px;
  margin-bottom:1.8rem;
}
.hero h1 em { font-style:italic; color:var(--gold); font-weight:400; }
.hero-desc {
  color:rgba(255,255,255,.52);
  font-size:1.04rem;
  max-width:540px;
  line-height:1.82;
  margin-bottom:2.8rem;
}
.hero-actions { display:flex; gap:1rem; flex-wrap:wrap; align-items:center; }

/* ──────────── BUTTONS ──────────── */
.btn {
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  font-family:var(--font-body);
  font-size:.8rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  padding:.95rem 2.1rem;
  border-radius:var(--radius-sm);
  border:none;
  cursor:pointer;
  transition:var(--transition);
  overflow:hidden;
}
.btn-primary {
  background:var(--gold);
  color:var(--charcoal);
  box-shadow:0 4px 18px rgba(201,162,39,.34);
}
.btn-primary:hover {
  background:var(--gold-light);
  transform:translateY(-2px);
  box-shadow:0 8px 28px rgba(201,162,39,.45);
}
.btn-outline {
  background:transparent;
  color:var(--white);
  border:1.5px solid rgba(255,255,255,.28);
}
.btn-outline:hover {
  border-color:var(--gold);
  color:var(--gold);
  background:rgba(201,162,39,.07);
}
.btn svg { width:17px; height:17px; transition:transform var(--transition); }
.btn:hover svg { transform:translateX(3px); }

/* ──────────── LAYOUT ──────────── */
.container { max-width:1320px; margin:0 auto; padding:0 6%; }
.section-pad { padding:6.5rem 0; }

.section-label {
  display:inline-flex;
  align-items:center;
  gap:.65rem;
  font-size:.77rem;
  font-weight:600;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:1rem;
}
.section-label::before { content:''; width:26px; height:2px; background:var(--gold); }

.section-title {
  font-family:var(--font-head);
  font-size:clamp(2.1rem, 3.8vw, 3.2rem);
  font-weight:300;
  color:var(--ink);
  line-height:1.18;
  margin-bottom:1.2rem;
}
.section-title em { font-style:italic; color:var(--gold); font-weight:400; }
.section-sub { font-size:1rem; color:var(--ink-60); max-width:620px; line-height:1.82; }

/* ──────────── EXPERTISE CARDS ──────────── */
.expertise-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2rem;
  margin-top:3.8rem;
}
.expertise-card {
  background:var(--white);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-card);
  border:1px solid rgba(17,17,16,.06);
  transition:var(--transition);
  display:flex;
  flex-direction:column;
}
.expertise-card:hover { box-shadow:var(--shadow-hover); transform:translateY(-6px); }
.expertise-card-img { height:230px; overflow:hidden; position:relative; }
.expertise-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .55s ease; }
.expertise-card:hover .expertise-card-img img { transform:scale(1.06); }
.expertise-card-img::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(to top, rgba(28,27,24,.5) 0%, transparent 55%);
}
.expertise-card-body { padding:2.2rem; flex:1; display:flex; flex-direction:column; }
.expertise-card-body h3 {
  font-family:var(--font-head);
  font-size:1.7rem;
  font-weight:600;
  margin-bottom:.7rem;
  color:var(--ink);
}
.expertise-card-body p { font-size:.93rem; color:var(--ink-60); line-height:1.78; flex:1; }
.card-link {
  display:inline-flex; align-items:center; gap:.5rem;
  margin-top:1.5rem;
  font-size:.8rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color:var(--gold); transition:gap var(--transition);
}
.card-link:hover { gap:.85rem; }
.card-link svg { width:15px; height:15px; }

/* ──────────── WHY US ──────────── */
.why-grid {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1.8rem;
  margin-top:3.8rem;
}
.why-card {
  padding:2.4rem 1.9rem;
  border-radius:var(--radius-lg);
  background:var(--white);
  box-shadow:var(--shadow-card);
  border:1px solid transparent;
  transition:var(--transition);
  position:relative; overflow:hidden;
}
.why-card::before {
  content:''; position:absolute;
  top:0; left:0; width:100%; height:3px;
  background:var(--gold);
  transform:scaleX(0); transform-origin:left;
  transition:transform .5s cubic-bezier(.4,0,.2,1);
}
.why-card:hover::before { transform:scaleX(1); }
.why-card:hover { border-color:var(--gold-muted); box-shadow:var(--shadow-hover); transform:translateY(-4px); }
.why-icon {
  width:46px; height:46px;
  background:var(--gold-muted);
  border-radius:var(--radius-md);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:1.3rem;
}
.why-icon svg { width:22px; height:22px; color:var(--gold); }
.why-card h4 { font-family:var(--font-head); font-size:1.3rem; font-weight:600; margin-bottom:.5rem; color:var(--ink); }
.why-card p { font-size:.9rem; color:var(--ink-60); line-height:1.72; }

/* ──────────── STEPS ──────────── */
.steps-row {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(175px,1fr));
  gap:1.5rem;
  margin-top:3.2rem;
}
.step-item {
  text-align:center;
  padding:2.2rem 1.2rem;
  background:var(--white);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-card);
  border:1px solid transparent;
  transition:var(--transition);
}
.step-item:hover { border-color:var(--gold-muted); box-shadow:var(--shadow-hover); transform:translateY(-5px); }
.step-num {
  width:54px; height:54px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--gold), var(--gold-light));
  color:var(--charcoal);
  font-family:var(--font-head);
  font-size:1.5rem; font-weight:700;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 1.1rem;
  box-shadow:0 4px 14px rgba(201,162,39,.34);
}
.step-item h4 { font-family:var(--font-head); font-size:1.05rem; font-weight:600; margin-bottom:.4rem; color:var(--ink); }
.step-item p { font-size:.86rem; color:var(--ink-60); line-height:1.65; }

/* ──────────── TAGS ──────────── */
.tags-cloud { display:flex; flex-wrap:wrap; gap:.75rem; margin-top:2.2rem; }
.tag {
  font-size:.82rem; font-weight:600; letter-spacing:.05em;
  color:var(--ink-60);
  background:var(--white);
  border:1.5px solid var(--paper-dark);
  padding:.55rem 1.2rem;
  border-radius:100px;
  transition:var(--transition);
}
.tag:hover { background:var(--charcoal); color:var(--gold); border-color:var(--charcoal); transform:translateY(-2px); box-shadow:0 4px 14px rgba(17,17,16,.18); }

/* ──────────── TECH BLOCKS ──────────── */
.tech-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
  gap:1.6rem;
  margin-top:2.8rem;
}
.tech-block {
  background:var(--white);
  border-radius:var(--radius-lg);
  padding:1.9rem;
  box-shadow:var(--shadow-card);
  border:1px solid rgba(17,17,16,.06);
}
.tech-block h4 {
  font-family:var(--font-head);
  font-size:1.12rem; font-weight:600;
  color:var(--ink);
  margin-bottom:.9rem;
  padding-bottom:.6rem;
  border-bottom:2px solid var(--gold-muted);
}
.tech-block .tags-cloud { margin-top:0; }

/* ──────────── SERVICES LIST ──────────── */
.services-list {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(330px,1fr));
  gap:1.7rem;
  margin-top:2.8rem;
}
.service-item {
  background:var(--white);
  border-radius:var(--radius-lg);
  padding:2.2rem;
  box-shadow:var(--shadow-card);
  border:1px solid transparent;
  transition:var(--transition);
  position:relative; overflow:hidden;
}
.service-item::after {
  content:''; position:absolute;
  top:0; left:0; width:4px; height:0%;
  background:var(--gold);
  transition:height .4s ease;
}
.service-item:hover::after { height:100%; }
.service-item:hover { border-color:var(--gold-muted); box-shadow:var(--shadow-hover); transform:translateY(-4px); }
.service-item h4 { font-family:var(--font-head); font-size:1.25rem; font-weight:600; color:var(--ink); margin-bottom:.6rem; }
.service-item p { font-size:.91rem; color:var(--ink-60); line-height:1.76; }

/* ──────────── ADVANTAGES ──────────── */
.adv-list { display:grid; gap:.9rem; margin-top:2.2rem; max-width:760px; }
.adv-item {
  display:flex; gap:1.1rem; align-items:flex-start;
  background:var(--white);
  padding:1.5rem 1.8rem;
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-card);
  border:1px solid transparent;
  transition:var(--transition);
}
.adv-item:hover { border-color:var(--gold-muted); box-shadow:var(--shadow-hover); }
.adv-check {
  flex-shrink:0; width:30px; height:30px;
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  margin-top:2px;
}
.adv-check svg { width:15px; height:15px; color:var(--charcoal); }
.adv-item h5 { font-family:var(--font-head); font-size:1.08rem; font-weight:600; color:var(--ink); margin-bottom:.2rem; }
.adv-item p { font-size:.88rem; color:var(--ink-60); margin:0; }

/* ──────────── CTA BANNER ──────────── */
.cta-banner {
  background:var(--charcoal);
  border-radius:var(--radius-xl);
  padding:4.8rem 6%;
  text-align:center;
  position:relative; overflow:hidden;
}
.cta-banner::before {
  content:''; position:absolute;
  top:-60%; left:-25%;
  width:75%; height:200%;
  background:radial-gradient(circle, rgba(201,162,39,.1) 0%, transparent 65%);
  pointer-events:none;
}
.cta-banner h2 {
  font-family:var(--font-head);
  font-size:clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight:300; color:var(--white);
  margin-bottom:.9rem; position:relative;
}
.cta-banner h2 em { color:var(--gold); font-style:italic; }
.cta-banner p { color:rgba(255,255,255,.48); font-size:1rem; max-width:580px; margin:0 auto 2.2rem; position:relative; }
.cta-banner .btn { position:relative; }

/* ──────────── CONTACT PAGE ──────────── */
.contact-hero {
  background:var(--charcoal);
  padding:5rem 6% 4rem;
  position:relative; overflow:hidden;
}
.contact-hero::after {
  content:''; position:absolute;
  bottom:0; left:0; width:100%; height:3px;
  background:linear-gradient(90deg, var(--gold), transparent 60%);
}
.contact-hero .section-label { margin-bottom:.9rem; }
.contact-hero h1 {
  font-family:var(--font-head);
  font-size:clamp(2.3rem, 4.8vw, 3.6rem);
  font-weight:300; color:var(--white);
  margin-bottom:.7rem;
}
.contact-hero h1 em { color:var(--gold); font-style:italic; }
.contact-hero p { color:rgba(255,255,255,.48); font-size:1rem; max-width:540px; }

.contact-layout {
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:3.5rem;
  padding:4.5rem 0;
  align-items:start;
}
/* info stack */
.contact-info-stack { display:flex; flex-direction:column; gap:1.2rem; }
.contact-info-card {
  background:var(--white);
  border-radius:var(--radius-lg);
  padding:1.9rem;
  box-shadow:var(--shadow-card);
  border:1px solid rgba(17,17,16,.06);
  display:flex; gap:1.2rem; align-items:flex-start;
  transition:var(--transition);
}
.contact-info-card:hover { border-color:var(--gold-muted); box-shadow:var(--shadow-hover); }
.contact-info-icon {
  flex-shrink:0; width:50px; height:50px;
  background:var(--gold-muted);
  border-radius:var(--radius-md);
  display:flex; align-items:center; justify-content:center;
}
.contact-info-icon svg { width:22px; height:22px; color:var(--gold); }
.contact-info-card h4 { font-family:var(--font-head); font-size:1.12rem; font-weight:600; color:var(--ink); margin-bottom:.2rem; }
.contact-info-card p, .contact-info-card a { font-size:.9rem; color:var(--ink-60); line-height:1.6; }
.contact-info-card a { color:var(--gold); font-weight:600; }
.contact-info-card a:hover { color:var(--ink); }

.hours-grid { display:grid; grid-template-columns:1fr 1fr; gap:.35rem .7rem; margin-top:.4rem; }
.hours-grid span { font-size:.86rem; color:var(--ink-60); }
.hours-grid .day { font-weight:600; color:var(--ink); }

/* form */
.contact-form-wrap {
  background:var(--white);
  border-radius:var(--radius-xl);
  padding:2.8rem;
  box-shadow:var(--shadow-deep);
  border:1px solid rgba(17,17,16,.06);
}
.contact-form-wrap h3 { font-family:var(--font-head); font-size:1.75rem; font-weight:600; color:var(--ink); margin-bottom:.3rem; }
.contact-form-wrap > p { font-size:.88rem; color:var(--ink-60); margin-bottom:1.8rem; }

.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1.1rem; }
.form-group { display:flex; flex-direction:column; gap:.45rem; margin-bottom:1.2rem; }
.form-group.full { grid-column:1/-1; }
.form-group label { font-size:.76rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--ink-60); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family:var(--font-body);
  font-size:.92rem; color:var(--ink);
  background:var(--paper);
  border:1.5px solid var(--paper-dark);
  border-radius:var(--radius-md);
  padding:.82rem 1rem;
  transition:var(--transition);
  outline:none; width:100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color:var(--gold);
  background:var(--white);
  box-shadow:0 0 0 3px var(--gold-muted);
}
.form-group textarea { resize:vertical; min-height:110px; }
.form-group select { appearance:none; cursor:pointer; background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4L6 8L10 4' stroke='%234a4a47' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 1rem center; }

.form-submit { margin-top:.4rem; }
.form-submit .btn-primary { width:100%; justify-content:center; }

/* toast */
.toast {
  position:fixed; top:2rem; right:2rem;
  background:var(--charcoal); color:var(--white);
  padding:1.1rem 1.8rem;
  border-radius:var(--radius-md);
  font-size:.9rem;
  box-shadow:var(--shadow-deep);
  border-left:4px solid var(--gold);
  z-index:999;
  transform:translateX(140%);
  transition:transform .4s cubic-bezier(.4,0,.2,1);
  display:flex; align-items:center; gap:.75rem;
  max-width:380px;
}
.toast.show { transform:translateX(0); }
.toast svg { width:20px; height:20px; color:var(--gold); flex-shrink:0; }

/* ──────────── PAGE HERO (sisr / slam) ──────────── */
.page-hero {
  background:var(--charcoal);
  padding:5rem 6% 4rem;
  position:relative; overflow:hidden;
}
.page-hero::after {
  content:''; position:absolute;
  bottom:0; left:0; width:100%; height:3px;
  background:linear-gradient(90deg, var(--gold), transparent 60%);
}
.page-hero-inner {
  max-width:1320px; margin:0 auto;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:3rem; align-items:center;
}
.page-hero-text .section-label { margin-bottom:.9rem; }
.page-hero-text h1 {
  font-family:var(--font-head);
  font-size:clamp(2.5rem, 4.8vw, 3.8rem);
  font-weight:300; color:var(--white);
  line-height:1.1; margin-bottom:1.1rem;
}
.page-hero-text h1 em { color:var(--gold); font-style:italic; }
.page-hero-text p { color:rgba(255,255,255,.5); font-size:1rem; line-height:1.82; }
.page-hero-img {
  border-radius:var(--radius-lg);
  overflow:hidden; height:320px;
  box-shadow:var(--shadow-deep);
}
.page-hero-img img { width:100%; height:100%; object-fit:cover; }

/* ──────────── FOOTER ──────────── */
footer {
  background:var(--charcoal);
  color:rgba(255,255,255,.48);
  padding:4.5rem 6% 2rem;
  position:relative;
}
footer::before {
  content:''; position:absolute;
  top:0; left:6%; width:88%; height:1px;
  background:rgba(255,255,255,.08);
}
.footer-grid {
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.5fr;
  gap:2.8rem;
  max-width:1320px; margin:0 auto;
}
.footer-brand .logo { margin-bottom:.9rem; font-size:1.5rem; }
.footer-brand p { font-size:.86rem; line-height:1.72; max-width:290px; color:rgba(255,255,255,.38); }
.footer-col h5 { font-family:var(--font-head); font-size:.95rem; font-weight:600; color:var(--white); margin-bottom:1.1rem; letter-spacing:.04em; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:.5rem; }
.footer-col a { font-size:.86rem; color:rgba(255,255,255,.4); transition:color var(--transition); }
.footer-col a:hover { color:var(--gold); }

.footer-contact-list { list-style:none; display:flex; flex-direction:column; gap:.8rem; }
.footer-contact-list li { display:flex; align-items:center; gap:.75rem; font-size:.86rem; }
.footer-contact-list svg { width:17px; height:17px; color:var(--gold); flex-shrink:0; }

.footer-bottom {
  max-width:1320px; margin:3rem auto 0;
  padding-top:1.8rem;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex; justify-content:space-between; align-items:center;
  font-size:.8rem; color:rgba(255,255,255,.28);
  flex-wrap:wrap; gap:.8rem;
}

/* ──────────── SCROLLBAR ──────────── */
::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-track { background:var(--paper); }
::-webkit-scrollbar-thumb { background:var(--paper-dark); border-radius:3px; }
::-webkit-scrollbar-thumb:hover { background:var(--warm-mid); }

/* ──────────── RESPONSIVE ──────────── */
@media (max-width:1024px) {
  .expertise-grid { grid-template-columns:1fr; max-width:660px; }
  .why-grid { grid-template-columns:1fr 1fr; }
  .contact-layout { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .page-hero-inner { grid-template-columns:1fr; }
  .page-hero-img { height:260px; }
}
@media (max-width:768px) {
  .header-inner { padding:1rem 5%; }
  .hamburger { display:flex; }
  nav {
    display:none; flex-direction:column; align-items:stretch; gap:.35rem;
    position:absolute; top:100%; left:0; right:0;
    background:var(--charcoal); padding:1rem 5% 1.8rem;
    border-top:1px solid rgba(255,255,255,.07);
  }
  nav.open { display:flex; }
  nav a { padding:.7rem 1rem; }
  nav .nav-cta { margin-left:0; }

  .hero { min-height:auto; }
  .hero-content { padding:4.5rem 5% 3.5rem; }
  .why-grid { grid-template-columns:1fr; max-width:480px; }
  .steps-row { grid-template-columns:repeat(2,1fr); }
  .services-list { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .contact-form-wrap { padding:2rem 1.6rem; }
  .footer-grid { grid-template-columns:1fr; gap:1.8rem; }
  .footer-bottom { flex-direction:column; text-align:center; }
}
.hero-label, .section-label, .nav a:not(.nav-cta), .form-group label { color: #dcc56a !important; /* gold-light visible */ } .nav a:hover, .form-group label:hover { text-shadow: 0 1px 2px rgba(0,0,0,0.3); }
@media (max-width:480px) {
  .steps-row { grid-template-columns:1fr; }
  .hero h1 { font-size:2.5rem; }
  .hero-actions { flex-direction:column; align-items:stretch; }
  .btn { justify-content:center; }
}
