/* ==========================================================================
   Munshi Interior — style.css
   Palette: deep navy #0b1e33 · gold #e8b04b · cream #faf7f2
   Type: Fraunces (display) · Manrope (body)
   ========================================================================== */

:root {
  --navy: #0b1e33;
  --navy-deep: #071426;
  --navy-soft: #12283f;
  --gold: #e8b04b;
  --gold-soft: #f3cd85;
  --cream: #faf7f2;
  --cream-dark: #f1ebe0;
  --ink: #1c2b3a;
  --muted: #5b6b7c;
  --muted-light: #93a5b8;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 20px 60px -20px rgba(11, 30, 51, 0.25);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

.section { padding: clamp(72px, 9vw, 128px) 0; }

.section-dark {
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(232, 176, 75, 0.08), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #e8eef5;
}

/* ---------- Typography helpers ---------- */

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.eyebrow-line {
  display: inline-block;
  width: 44px;
  height: 1.5px;
  background: var(--gold);
  flex: none;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4.6vw, 54px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.about .section-title em,
.awards .section-title em,
.areas .section-title em,
.work .section-title em {
  color: #b8862e;
}

.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 64px); }

.section-lede { color: var(--muted); font-size: 17px; }

.section-dark .section-lede { color: var(--muted-light); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s;
  cursor: pointer;
  border: none;
}

.btn:hover { transform: translateY(-3px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--navy-deep);
  box-shadow: 0 12px 30px -8px rgba(232, 176, 75, 0.55);
}
.btn-gold:hover { box-shadow: 0 18px 40px -8px rgba(232, 176, 75, 0.7); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); }

.btn-dark {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-sm { padding: 12px 22px; font-size: 14px; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Loader ---------- */

.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--navy-deep);
  display: grid;
  place-content: center;
  gap: 18px;
  justify-items: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}

.loader.done { opacity: 0; visibility: hidden; }

.loader p {
  color: var(--muted-light);
  font-size: 13px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.loader-mark { position: relative; width: 84px; height: 84px; display: grid; place-content: center; }

.loader-m {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--gold);
}

.loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(232, 176, 75, 0.2);
  border-top-color: var(--gold);
  animation: spin 1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Navigation ---------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(7, 20, 38, 0.86);
  backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.nav-inner {
  width: min(1180px, 92vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; }

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-size: 22px;
  display: grid;
  place-content: center;
  flex: none;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 19px;
  color: #fff;
  letter-spacing: 0.01em;
}
.brand-text em { color: var(--gold); font-style: italic; }

.nav-links {
  display: flex;
  gap: 26px;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14.5px;
  font-weight: 600;
  position: relative;
  transition: color 0.25s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(232, 176, 75, 0.6);
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  transition: background 0.3s, color 0.3s;
}

.nav-cta:hover { background: var(--gold); color: var(--navy-deep); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav-burger span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(1000px 700px at 75% 30%, #16324f 0%, transparent 55%),
    linear-gradient(165deg, #0d2238 0%, var(--navy-deep) 70%);
  overflow: hidden;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 20, 38, 0.88) 0%, rgba(7, 20, 38, 0.55) 42%, transparent 68%),
    linear-gradient(0deg, rgba(7, 20, 38, 0.9) 0%, transparent 26%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 92vw);
  margin-inline: auto;
  padding-top: 90px;
  max-width: 1180px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(42px, 7.2vw, 88px);
  line-height: 1.06;
  color: #fff;
  letter-spacing: -0.015em;
  margin-bottom: 26px;
  max-width: 12ch;
}

.hero-title em { font-style: italic; color: var(--gold); }

.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span {
  display: block;
  transform: translateY(110%);
  animation: riseUp 1.1s var(--ease) forwards;
}
.hero-title .line:nth-child(2) span { animation-delay: 0.15s; }

@keyframes riseUp { to { transform: translateY(0); } }

.hero-sub {
  color: rgba(230, 238, 247, 0.82);
  font-size: clamp(16px, 1.6vw, 18.5px);
  max-width: 54ch;
  margin-bottom: 36px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; }

.badge-pill {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  color: rgba(230, 238, 247, 0.85);
  font-size: 13.5px;
  font-weight: 600;
}

.badge-pill strong { color: var(--gold); margin-right: 5px; font-size: 15px; }

.hero-hint {
  position: absolute;
  right: 42px;
  bottom: 40px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(230, 238, 247, 0.5);
  font-size: 12.5px;
  letter-spacing: 0.06em;
}

.hint-mouse {
  width: 20px;
  height: 32px;
  border: 1.5px solid rgba(230, 238, 247, 0.45);
  border-radius: 12px;
  position: relative;
}

.hint-mouse::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 6px;
  margin-left: -1.5px;
  border-radius: 3px;
  background: var(--gold);
  animation: wheel 1.8s ease-in-out infinite;
}

@keyframes wheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  55% { transform: translateY(9px); opacity: 0.2; }
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  width: 30px;
  height: 48px;
}

.hero-scroll span {
  display: block;
  width: 1.5px;
  height: 100%;
  margin-inline: auto;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.5); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ---------- Stats ---------- */

.stats {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 44px 0;
}

.stats-inner {
  width: min(1180px, 92vw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat { text-align: center; position: relative; }

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 48px);
  color: var(--gold);
  display: block;
  line-height: 1.1;
}

.stat-label {
  color: var(--muted-light);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.about-media { position: relative; padding-bottom: 60px; }

.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 72%;
}

.about-photo img { width: 100%; transition: transform 0.8s var(--ease); }
.about-photo:hover img { transform: scale(1.04); }

.about-photo-offset {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  border: 6px solid var(--cream);
}

.about-photo-offset figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 16px 12px;
  background: linear-gradient(transparent, rgba(7, 20, 38, 0.85));
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
}

.about-seal {
  position: absolute;
  top: -34px;
  right: 14%;
  width: 110px;
  height: 110px;
  background: var(--navy);
  border-radius: 50%;
  display: grid;
  place-content: center;
  box-shadow: var(--shadow);
  animation: sealSpin 24s linear infinite;
}

.about-seal svg { position: absolute; inset: 8px; fill: none; }
.about-seal svg text { fill: var(--gold); font-size: 11.5px; letter-spacing: 2.5px; font-weight: 700; }

.seal-m {
  font-family: var(--font-display);
  font-size: 34px;
  color: #fff;
  animation: sealSpinReverse 24s linear infinite;
}

@keyframes sealSpin { to { transform: rotate(360deg); } }
@keyframes sealSpinReverse { to { transform: rotate(-360deg); } }

.about-copy p { color: var(--muted); margin-bottom: 16px; font-size: 16.5px; }

.about-points { margin: 22px 0 30px; display: grid; gap: 12px; }

.about-points li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-weight: 600;
  color: var(--ink);
  font-size: 15.5px;
}

.about-points li span {
  color: var(--gold);
  background: rgba(232, 176, 75, 0.14);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-grid;
  place-content: center;
  font-size: 13px;
  flex: none;
  transform: translateY(3px);
}

/* ---------- Services ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.4s var(--ease), background 0.35s, border-color 0.35s;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.service-card:hover {
  background: rgba(232, 176, 75, 0.07);
  border-color: rgba(232, 176, 75, 0.35);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(232, 176, 75, 0.12);
  color: var(--gold);
  display: grid;
  place-content: center;
  margin-bottom: 20px;
}

.service-icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
}

.service-card p { font-size: 14.5px; color: var(--muted-light); }

.service-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(232, 176, 75, 0.16);
  color: var(--gold);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card-cta {
  background: linear-gradient(150deg, rgba(232, 176, 75, 0.16), rgba(232, 176, 75, 0.05));
  border-color: rgba(232, 176, 75, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.service-card-cta .btn { margin-top: 12px; align-self: flex-start; }

/* ---------- Work gallery ---------- */

.work-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 18px;
}

.work-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  will-change: transform;
}

.work-item-tall { grid-row: span 2; }
.work-item-wide { grid-column: span 2; }

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.work-item:hover img { transform: scale(1.07); }

.work-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 60px 22px 20px;
  background: linear-gradient(transparent, rgba(7, 20, 38, 0.9));
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(8px);
  opacity: 0.92;
  transition: transform 0.45s var(--ease), opacity 0.45s;
}

.work-item:hover figcaption { transform: translateY(0); opacity: 1; }

.work-cat {
  color: var(--gold);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.work-name { color: #fff; font-weight: 700; font-size: 16.5px; }

.work-cta {
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: 26px 32px;
  background: var(--cream-dark);
  border-radius: var(--radius);
}

.work-cta p { font-weight: 600; color: var(--ink); font-size: 16.5px; }

/* ---------- Process ---------- */

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 30px 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.process-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -18px;
  top: 34px;
  color: var(--gold);
  font-size: 20px;
  z-index: 1;
}

.step-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(232, 176, 75, 0.75);
  display: block;
  line-height: 1;
  margin-bottom: 16px;
}

.process-step h3 { color: #fff; font-size: 18px; margin-bottom: 8px; font-weight: 700; }
.process-step p { color: var(--muted-light); font-size: 14px; }

/* ---------- Awards ---------- */

.awards { background: var(--cream); }

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.award-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 40px -18px rgba(11, 30, 51, 0.22);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  will-change: transform;
}

.award-card:hover { box-shadow: 0 26px 60px -18px rgba(11, 30, 51, 0.34); }

.award-card-feature { grid-row: span 2; display: flex; flex-direction: column; }
.award-card-feature img { flex: 1; }

.award-card-wide { grid-column: span 2; }
.award-card-wide img { height: 280px; }

.award-card img { width: 100%; height: 240px; object-fit: cover; }
.award-card-feature img { height: 100%; min-height: 320px; }

.award-card figcaption { padding: 22px 24px 26px; }

.award-year {
  color: #b8862e;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.award-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 21px;
  margin: 8px 0 8px;
  color: var(--navy);
}

.award-card p { color: var(--muted); font-size: 14.5px; }

/* ---------- Team ---------- */

.team-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-auto-rows: 280px;
  gap: 18px;
}

.team-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  will-change: transform;
}

.team-photo-main { grid-row: span 2; }

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.team-photo:hover img { transform: scale(1.05); }

.team-photo figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 50px 22px 18px;
  background: linear-gradient(transparent, rgba(7, 20, 38, 0.88));
  color: #fff;
  font-weight: 700;
  font-size: 15.5px;
}

/* ---------- Areas ---------- */

.areas { background: var(--cream-dark); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.area-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  box-shadow: 0 10px 30px -16px rgba(11, 30, 51, 0.18);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.area-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -16px rgba(11, 30, 51, 0.28);
}

.area-pin { font-size: 26px; display: block; margin-bottom: 10px; }

.area-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--navy);
}

.area-card p { color: var(--muted); font-size: 14px; margin-top: 4px; }

/* ---------- Contact ---------- */

.contact { position: relative; overflow: hidden; }

.contact-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 176, 75, 0.14), transparent 65%);
  top: -200px;
  right: -150px;
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
  position: relative;
}

.contact-copy > p { color: var(--muted-light); font-size: 16.5px; max-width: 46ch; }

.contact-channels { margin-top: 34px; display: grid; gap: 14px; }

.channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}

.channel:hover {
  background: rgba(232, 176, 75, 0.09);
  border-color: rgba(232, 176, 75, 0.4);
  transform: translateX(6px);
}

.channel-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(232, 176, 75, 0.14);
  color: var(--gold);
  display: grid;
  place-content: center;
  flex: none;
}

.channel-icon-wa { background: rgba(37, 211, 102, 0.14); color: #25d366; }

.channel span:last-child { display: flex; flex-direction: column; color: var(--muted-light); font-size: 14px; }
.channel strong { color: #fff; font-size: 15.5px; }

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 34px 32px;
  backdrop-filter: blur(10px);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  color: #fff;
  margin-bottom: 22px;
}

.contact-form label {
  display: block;
  color: var(--muted-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.contact-form label em { text-transform: none; font-weight: 500; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 20, 38, 0.55);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.contact-form select option { background: var(--navy-deep); }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232, 176, 75, 0.18);
}

.contact-form textarea { resize: vertical; }

.form-note {
  margin-top: 14px;
  color: rgba(230, 238, 247, 0.5);
  font-size: 12.5px;
  text-align: center;
}

/* ---------- Footer ---------- */

.footer { background: var(--navy-deep); color: var(--muted-light); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding: 64px 0 44px;
}

.footer-brand p { margin-top: 16px; font-size: 14.5px; line-height: 1.7; }

.footer-col { display: flex; flex-direction: column; gap: 10px; }

.footer-col h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer-col a, .footer-col span { font-size: 14.5px; transition: color 0.25s; }
.footer-col a:hover { color: var(--gold); }

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
}

/* ---------- WhatsApp float ---------- */

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-content: center;
  box-shadow: 0 12px 30px -6px rgba(37, 211, 102, 0.55);
  transition: transform 0.3s var(--ease);
  animation: waPulse 2.6s ease-in-out infinite;
}

.wa-float:hover { transform: scale(1.1); }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 12px 30px -6px rgba(37, 211, 102, 0.55), 0 0 0 0 rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 12px 30px -6px rgba(37, 211, 102, 0.55), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-title .line span { animation: none; transform: none; }
  .about-seal, .seal-m, .wa-float, .hint-mouse::after, .hero-scroll span { animation: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .process-step:not(:last-child)::after { display: none; }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(7, 20, 38, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s;
  }

  .nav-links.open { opacity: 1; visibility: visible; }
  .nav-links a { font-size: 22px; }

  .nav-cta { display: none; }
  .nav-burger { display: flex; z-index: 110; }

  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero-hint { display: none; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 34px 18px; }
  .stat:nth-child(2)::after { display: none; }

  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { order: 2; }

  .work-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .work-item-wide { grid-column: span 2; }

  .team-gallery { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .team-photo-main { grid-row: auto; }

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

@media (max-width: 560px) {
  .services-grid, .awards-grid, .work-gallery { grid-template-columns: 1fr; }
  .work-item-tall { grid-row: auto; }
  .work-item-wide { grid-column: auto; }
  .award-card-feature { grid-row: auto; }
  .award-card-feature img { min-height: 240px; }
  .award-card-wide { grid-column: auto; }
  .award-card-wide img { height: 240px; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
}
