/* RK Consultancy theme derived from the top-level site */
:root {
  --forest: #0a3d2e;
  --forest-dark: #071f17;
  --forest-mid: #0d5240;
  --forest-light: #1a7a58;
  --gold: #c9a227;
  --gold-light: #e8c86a;
  --gold-pale: #f5edd0;
  --cream: #f7f5f0;
  --off-white: #fafaf8;
  --text: #2a3c32;
  --text-light: #5c6e64;
  --white: #ffffff;
  --border: rgba(10, 61, 46, 0.1);
  --shadow: 0 8px 40px rgba(10, 61, 46, 0.12);
  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans: 'Raleway', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-sans); background: var(--off-white); color: var(--text); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all .3s; }
ul { list-style: none; padding: 0; margin: 0; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
strong { font-weight: 700; }
em { font-family: var(--ff-serif); font-style: italic; color: var(--gold); }

.container { width: min(1200px, calc(100% - 64px)); margin: 0 auto; }
.text-center { text-align: center; }

.sec-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 3.5px; text-transform: uppercase;
  font-weight: 700; color: var(--gold); margin-bottom: 14px;
}
.sec-tag::before { content: ''; display: block; width: 36px; height: 1.5px; background: var(--gold); }
.sec-title {
  font-family: var(--ff-serif); font-size: clamp(32px, 4vw, 52px);
  font-weight: 500; line-height: 1.12; color: var(--forest); margin-bottom: 20px;
}
.sec-title em { font-style: italic; color: var(--forest-mid); }
.sec-title-light { color: #fff; }
.sec-title-light em { color: var(--gold-light); }
.sec-body { font-size: 15px; line-height: 1.85; color: var(--text-light); }

.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }
.reveal-delay-4 { transition-delay: .48s; }

.btn {
  display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; padding: 15px 34px; cursor: pointer;
  border: 1.5px solid transparent; transition: all .3s ease;
}
.btn-primary { background: var(--gold); color: var(--forest); border-color: var(--gold); }
.btn-primary:hover { background: transparent; color: var(--gold); }
.btn-dark { background: var(--forest); color: #fff; border-color: var(--forest); }
.btn-dark:hover { background: transparent; color: var(--forest); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-gold-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-gold-outline:hover { background: var(--gold); color: var(--forest); }

#preloader {
  position: fixed; inset: 0; z-index: 9999; background: var(--forest-dark);
  display: flex; align-items: center; justify-content: center; transition: opacity .6s ease, visibility .6s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo { width: 120px; margin: 0 auto 24px; filter: brightness(0) invert(1); animation: preloaderPulse 1.5s ease-in-out infinite; }
.preloader-bar { width: 160px; height: 2px; background: rgba(255,255,255,.15); margin: 0 auto; position: relative; overflow: hidden; }
.preloader-progress { position: absolute; left: 0; top: 0; height: 100%; background: var(--gold); animation: preloaderLoad 1.8s ease-out forwards; }
@keyframes preloaderPulse { 0%,100% { opacity: .4; transform: scale(.95); } 50% { opacity: 1; transform: scale(1); } }
@keyframes preloaderLoad { from { width: 0; } to { width: 100%; } }

#mobileNav {
  position: fixed; inset: 0; z-index: 1200; background: var(--forest-dark);
  display: none; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  padding: 88px 24px 32px;
}
#mobileNav.open { display: flex; }
#mobileNav a { font-family: var(--ff-serif); font-size: 34px; font-weight: 400; color: rgba(255,255,255,.8); }
#mobileNav a:hover { color: var(--gold); }
.mobile-close {
  position: fixed; top: 20px; right: 20px; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff; cursor: pointer; z-index: 1001; line-height: 1;
}
.mobile-close:hover { border-color: var(--gold); color: var(--gold); }
.mobile-close:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: 84px;
  display: flex; align-items: center; background: rgba(255,255,255,.96); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); transition: height .35s, box-shadow .35s;
}
#navbar.scrolled { height: 68px; box-shadow: 0 4px 28px rgba(10,61,46,.10); }
.nav-inner { width: 100%; max-width: 100%; padding: 0 48px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo img { height: 52px; width: auto; object-fit: contain; }
.nav-menu { display: flex; align-items: center; gap: 36px; }
.nav-menu a, .nav-cta { font-size: 11.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--forest); transition: color .3s ease; }
.nav-menu a:hover, .nav-cta:hover { color: var(--gold); }
.nav-cta { color: #fff; background: var(--forest); padding: 12px 26px; border: 1.5px solid var(--forest); }
.hamburger { display: none; align-items: center; justify-content: center; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--forest); }

.hero {
  min-height: 100vh; padding-top: 84px; display: grid; grid-template-columns: 55% 45%; position: relative; overflow: hidden;
}
.hero-left {
  background: var(--forest); display: flex; flex-direction: column; justify-content: center;
  padding: 80px 72px 80px 80px; position: relative; overflow: hidden;
}
.hero-left::before {
  content: 'RK'; font-family: var(--ff-serif); font-size: 420px; font-weight: 700; color: rgba(255,255,255,.03);
  position: absolute; right: -60px; bottom: -80px; line-height: 1; pointer-events: none; user-select: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 12px; font-size: 10.5px; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 28px;
}
.hero-badge::before { content: ''; width: 36px; height: 1.5px; background: var(--gold); }
.hero-h1 { font-family: var(--ff-serif); font-size: clamp(44px, 5.5vw, 76px); font-weight: 400; line-height: 1.06; color: #fff; margin-bottom: 28px; }
.hero-h1 em { font-style: italic; color: var(--gold-light); }
.hero-desc { font-size: 15px; line-height: 1.85; color: rgba(255,255,255,.68); max-width: 440px; margin-bottom: 44px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin-top: 52px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-stat { padding-right: 24px; border-right: 1px solid rgba(255,255,255,.10); }
.hero-stat:last-child { border-right: none; padding-right: 0; padding-left: 24px; }
.hero-stat:nth-child(2) { padding: 0 24px; }
.hero-stat-num { font-family: var(--ff-serif); font-size: 38px; font-weight: 600; color: var(--gold); line-height: 1; display: block; }
.hero-stat-label { font-size: 10px; letter-spacing: 1.8px; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: 6px; font-weight: 600; }
.hero-right { position: relative; overflow: hidden; min-height: 600px; }
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide-overlay { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(10,61,46,.4) 0%,transparent 60%); }
.hero-slide-label { position: absolute; bottom: 40px; left: 40px; font-family: var(--ff-serif); font-size: 13px; font-style: italic; color: rgba(255,255,255,.75); background: rgba(10,61,46,.55); padding: 8px 16px; backdrop-filter: blur(4px); }
.hero-nav { position: absolute; bottom: 40px; right: 40px; display: flex; gap: 8px; z-index: 2; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.30); cursor: pointer; border: none; transition: all .3s; }
.hero-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }
.hero-scroll { position: absolute; left: 50%; transform: translateX(-50%); bottom: 32px; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.40); font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; animation: scrollBob 2.2s ease-in-out infinite; }
.hero-scroll-line { width: 1px; height: 36px; background: rgba(255,255,255,.25); }
@keyframes scrollBob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

.quote-strip { background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 60px 80px; display: flex; align-items: center; gap: 60px; }
.quote-mark { font-family: var(--ff-serif); font-size: 120px; line-height: .6; color: var(--gold); opacity: .30; flex-shrink: 0; align-self: flex-start; }
.quote-text { font-family: var(--ff-serif); font-size: clamp(18px,2.2vw,28px); font-style: italic; font-weight: 400; line-height: 1.55; color: var(--forest); flex: 1; }
.quote-text strong { font-style: normal; color: var(--gold); font-weight: 600; }
.quote-divider { width: 1px; height: 72px; background: var(--gold); opacity: .35; flex-shrink: 0; }
.quote-author { flex-shrink: 0; }
.quote-av { width: 64px; height: 64px; border-radius: 50%; background: var(--forest); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--ff-serif); font-size: 22px; font-weight: 600; color: var(--gold); margin-bottom: 12px; }
.quote-name { font-weight: 700; font-size: 14px; color: var(--forest); margin-bottom: 4px; }
.quote-role { font-size: 11px; color: var(--text-light); letter-spacing: .5px; }

.about, .services, .process, .skills, .portfolio, .contact { padding: 110px 0; }
.about, .process, .contact { background: var(--off-white); }
.services { background: var(--forest); position: relative; overflow: hidden; }
.services::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(201,162,39,.06) 0%, transparent 60%); pointer-events: none; }
.skills { background: var(--cream); }

.about-grid, .skills-grid, .contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 80px; align-items: center; }
.about-visual { position: relative; min-height: 560px; }
.about-img-main, .about-img-accent { object-fit: cover; box-shadow: var(--shadow); }
.about-img-main { width: 100%; height: 520px; }
.about-img-accent { position: absolute; bottom: -36px; right: -36px; width: 190px; height: 190px; border: 8px solid var(--off-white); }
.about-badge { position: absolute; top: 36px; left: -24px; background: var(--gold); color: var(--forest); padding: 22px 18px; text-align: center; box-shadow: 0 8px 28px rgba(201,162,39,.35); }
.badge-num { font-family: var(--ff-serif); font-size: 48px; font-weight: 700; line-height: 1; display: block; }
.badge-label { font-size: 9.5px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; margin-top: 4px; }
.about-checks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin: 28px 0 36px; }
.about-check { display: flex; align-items: flex-start; gap: 12px; }
.check-icon { width: 28px; height: 28px; background: var(--forest); display: grid; place-items: center; flex: none; margin-top: 2px; }
.check-icon i { color: var(--gold); font-size: 12px; }
.check-title { font-size: 13.5px; font-weight: 700; color: var(--forest); margin-bottom: 3px; }
.check-desc { font-size: 12.5px; color: var(--text-light); line-height: 1.55; }

.cat-blocks { display: grid; grid-template-columns: repeat(3,1fr); }
.cat-block { position: relative; overflow: hidden; height: 320px; cursor: pointer; }
.cat-block img { width: 100%; height: 100%; object-fit: cover; transition: transform 6s ease; }
.cat-block:hover img { transform: scale(1.06); }
.cat-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,61,46,.80) 0%, rgba(10,61,46,.15) 60%); display: flex; align-items: flex-end; padding: 32px; transition: background .4s; }
.cat-block:hover .cat-overlay { background: linear-gradient(to top, rgba(10,61,46,.90) 0%, rgba(10,61,46,.35) 60%); }
.cat-num { font-family: var(--ff-serif); font-size: 52px; font-weight: 700; color: rgba(255,255,255,.12); position: absolute; top: 20px; right: 28px; line-height: 1; }
.cat-title { font-family: var(--ff-serif); font-size: 24px; font-weight: 500; color: #fff; line-height: 1.2; }
.cat-sub { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; font-weight: 600; }

.services-header, .portfolio-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 64px; gap: 20px; }
.services .sec-tag, .services .sec-title { color: #fff; }
.services .sec-tag::before { background: var(--gold); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.svc-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); padding: 48px 36px; transition: all .4s ease; position: relative; overflow: hidden; }
.svc-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.svc-card:hover { background: rgba(255,255,255,.08); transform: translateY(-4px); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-num { font-family: var(--ff-serif); font-size: 72px; font-weight: 700; color: rgba(255,255,255,.05); line-height: 1; display: block; margin-bottom: -16px; }
.svc-icon { width: 52px; height: 52px; border: 1.5px solid rgba(201,162,39,.35); display: flex; align-items: center; justify-content: center; margin-bottom: 26px; }
.svc-icon i { color: var(--gold); font-size: 20px; }
.svc-title { font-family: var(--ff-serif); font-size: 20px; font-weight: 500; color: #fff; margin-bottom: 14px; }
.svc-desc { font-size: 13.5px; line-height: 1.82; color: rgba(255,255,255,.52); }
.svc-inquire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 24px;
  padding: 12px 18px;
  font-size: 10.5px;
  letter-spacing: 2.2px;
  text-align: center;
}

.stats-band { background: var(--gold); display: grid; grid-template-columns: repeat(3,1fr); padding: 0; }
.stat-item { padding: 52px 20px; text-align: center; border-right: 1px solid rgba(10,61,46,.15); position: relative; overflow: hidden; color: var(--forest); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--ff-serif); font-size: 60px; font-weight: 600; color: var(--forest); line-height: 1; }
.stat-suffix { font-size: 36px; font-weight: 600; color: var(--forest); }
.stat-label { font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: rgba(10,61,46,.65); margin-top: 8px; font-weight: 700; }

.process { background: var(--off-white); }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 64px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 40px; left: calc(12.5%); right: calc(12.5%); height: 1px; background: var(--gold); opacity: .30; }
.process-step { padding: 0 24px; text-align: center; }
.step-num { width: 80px; height: 80px; border-radius: 50%; background: var(--off-white); border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; font-family: var(--ff-serif); font-size: 26px; color: var(--forest); position: relative; z-index: 1; transition: all .3s; }
.process-step:hover .step-num { background: var(--forest); color: var(--gold); border-color: var(--forest); }
.step-title { font-family: var(--ff-serif); font-size: 19px; font-weight: 500; color: var(--forest); margin-bottom: 12px; }
.step-desc { font-size: 13.5px; line-height: 1.78; color: var(--text-light); }

.skills { padding: 110px 0; }
.skills-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.skill-bar { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 26px; }
.skill-icon { flex: 0 0 44px; width: 44px; height: 44px; border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center; }
.skill-icon i { color: var(--gold); font-size: 17px; }
.skill-name { font-size: 14px; font-weight: 700; color: var(--forest); letter-spacing: .3px; margin-bottom: 5px; }
.skill-desc { font-size: 12.5px; color: var(--text-light); line-height: 1.65; }
.skills-img { position: relative; }
.skills-img img { width: 100%; height: 480px; object-fit: cover; }
.skills-img-badge { position: absolute; bottom: -24px; left: -24px; background: var(--forest); color: var(--gold); padding: 24px 28px; font-family: var(--ff-serif); font-size: 15px; font-style: italic; line-height: 1.4; }

.portfolio { padding: 110px 0 0; background: var(--off-white); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: auto auto; gap: 4px; }
.pf-item { position: relative; overflow: hidden; cursor: pointer; }
.pf-item.wide { grid-column: span 2; }
.pf-img { width: 100%; height: 300px; object-fit: cover; transition: transform .6s ease; }
.pf-item.wide .pf-img { height: 300px; }
.pf-item:hover .pf-img { transform: scale(1.05); }
.pf-overlay { position: absolute; inset: 0; background: rgba(10,61,46,.0); display: flex; align-items: flex-end; padding: 28px; transition: background .4s; }
.pf-item:hover .pf-overlay { background: rgba(10,61,46,.75); }
.pf-info { transform: translateY(16px); opacity: 0; transition: all .35s ease; }
.pf-item:hover .pf-info { transform: translateY(0); opacity: 1; }
.pf-cat { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 6px; }
.pf-title { font-family: var(--ff-serif); font-size: 18px; color: #fff; font-weight: 500; line-height: 1.35; }

.contact { padding: 110px 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-info-icon { width: 48px; height: 48px; background: var(--forest); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon i { color: var(--gold); font-size: 18px; }
.contact-info-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 5px; }
.contact-info-val { font-size: 15px; color: var(--forest); font-weight: 600; line-height: 1.6; }
.contact-info-val a { color: var(--forest); }
.contact-form { background: #fff; padding: 52px; border: 1px solid var(--border); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label { font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); font-weight: 600; }
.form-control {
  background: var(--off-white); border: 1.5px solid var(--border); padding: 13px 16px; font-family: var(--ff-sans);
  font-size: 14px; color: var(--forest); outline: none; transition: border-color .3s; width: 100%; appearance: none; border-radius: 0;
}
.form-control:focus { border-color: var(--forest); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-status { margin-top: 14px; font-size: 13px; font-weight: 600; }
.error-message { margin-top: 8px; font-size: 12px; line-height: 1.5; color: #b42318; font-weight: 600; }

.footer { background: var(--forest-dark); padding: 80px 0 0; color: rgba(255,255,255,.38); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 60px; }
.footer-logo img { height: 52px; width: auto; object-fit: contain; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-about { font-size: 13px; color: rgba(255,255,255,.38); line-height: 1.82; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.40); font-size: 13px; transition: all .3s; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title { font-family: var(--ff-serif); font-size: 17px; color: #fff; margin-bottom: 22px; padding-bottom: 10px; border-bottom: 1px solid rgba(201,162,39,.20); }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.38); display: flex; align-items: center; gap: 8px; }
.footer-links a::before { content: '—'; color: var(--gold); font-size: 10px; opacity: .60; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-row { font-size: 13px; color: rgba(255,255,255,.38); margin-bottom: 14px; display: flex; gap: 10px; align-items: flex-start; }
.footer-contact-row i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact-row strong { display: block; color: rgba(255,255,255,.65); margin-bottom: 3px; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; }
.footer-contact-row a { color: rgba(255,255,255,.38); text-decoration: none; }
.footer-contact-row a:hover { color: var(--gold); }
.footer-bottom { background: rgba(0,0,0,.30); border-top: 1px solid rgba(255,255,255,.06); padding: 22px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,.25); gap: 20px; }
.footer-bottom-inner span { color: var(--gold); }
.footer-estd { font-family: var(--ff-serif); font-style: italic; font-size: 13px; color: var(--gold); }

#floating-whatsapp {
  position: fixed; right: 32px; bottom: 88px; width: 44px; height: 44px; background: #25d366;
  border: 1.5px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px; cursor: pointer; z-index: 801; box-shadow: 0 10px 28px rgba(37, 211, 102, .28);
}
#floating-whatsapp:hover { transform: translateY(-2px); filter: brightness(1.05); }

#back-top {
  position: fixed; bottom: 32px; right: 32px; width: 44px; height: 44px; background: var(--forest);
  border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 16px; cursor: pointer; opacity: 0; visibility: hidden; transition: all .3s; z-index: 800;
}
#back-top.show { opacity: 1; visibility: visible; }
#back-top:hover { background: var(--gold); color: var(--forest); }

@media (max-width: 1100px) {
  .nav-inner { padding: 0 28px; }
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 100px 32px 60px; }
  .hero-right { height: 55vw; min-height: 340px; }
  .quote-strip { padding: 48px 32px; flex-direction: column; gap: 28px; }
  .quote-divider { display: none; }
  .about-grid, .skills-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { height: 360px; }
  .about-img-main { height: 360px; }
  .services-grid, .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .pf-item.wide { grid-column: span 1; }
  .stats-band { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; padding-bottom: 48px; }
  .cat-blocks { grid-template-columns: 1fr; }
  .cat-block { height: 260px; }
  .services-header, .portfolio-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}
@media (max-width: 640px) {
  .hero-left { padding: 90px 20px 48px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stat:last-child { grid-column: 1 / -1; border-right: none; padding-left: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .quote-strip { padding: 36px 20px; }
  .nav-inner { padding: 0 20px; }
  #floating-whatsapp { right: 20px; bottom: 84px; }
  #back-top { right: 20px; bottom: 24px; }
}
