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

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --off-white: #f7f6f3;
  --grey-light: #f0efec;
  --grey-mid: #dddbd6;
  --grey-text: #9a9690;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 20px;
  --ease: cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main { flex: 1; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  background: rgba(255,255,255,0);
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
nav.scrolled,
nav.solid,
nav.menu-open {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}
nav.solid .nav-logo,
nav.menu-open .nav-logo { color: var(--black); }
nav.solid .nav-links a { color: #666; }
nav.solid .nav-links a:hover,
nav.solid .nav-links a.active { color: var(--black); }
nav.solid .nav-cta { background: var(--black); color: var(--white); }
nav.solid .nav-cta:hover { background: #333; }
nav.solid .hamburger span,
nav.menu-open .hamburger span { background: var(--black); }

.nav-logo {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  transition: color .4s var(--ease);
}
nav.scrolled .nav-logo { color: var(--black); }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color .3s var(--ease);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

nav.scrolled .nav-links a { color: #666; }
nav.scrolled .nav-links a:hover,
nav.scrolled .nav-links a.active { color: var(--black); }

.nav-cta {
  background: var(--white);
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 100px;
  transition: background .3s, color .3s, transform .2s, box-shadow .2s;
}
.nav-cta:hover {
  background: var(--off-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
nav.scrolled .nav-cta { background: var(--black); color: var(--white); }
nav.scrolled .nav-cta:hover { background: #333; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background .4s, transform .3s, opacity .3s;
}
nav.scrolled .hamburger span { background: var(--black); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--grey-mid);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  z-index: 99;
  padding: 8px 32px 28px;
  animation: slideDown .25s var(--ease);
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; margin-bottom: 20px; }
.nav-mobile ul li { border-bottom: 1px solid var(--grey-light); }
.nav-mobile ul li:last-child { border-bottom: none; }
.nav-mobile ul a { display: block; padding: 15px 0; font-size: 15px; font-weight: 500; color: var(--black); transition: color .2s; }
.nav-mobile ul a:hover { color: #555; }
.nav-mobile .mobile-cta {
  display: block;
  text-align: center;
  background: var(--black);
  color: var(--white);
  padding: 14px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s, transform .2s;
}
.nav-mobile .mobile-cta:hover { background: #333; transform: translateY(-1px); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s var(--ease);
  border: none;
  font-family: var(--font);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity .2s;
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.15); }
.btn:active { transform: translateY(0); }

.btn-dark { background: var(--black); color: var(--white); }
.btn-light { background: var(--white); color: var(--black); }
.btn-outline { background: transparent; color: var(--black); border: 1.5px solid var(--grey-mid); }
.btn-outline:hover { border-color: var(--black); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ─── SECTION ─── */
section { padding: 100px 60px; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--grey-text);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--grey-text);
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
}
p { color: #555; line-height: 1.75; }

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  padding: 0 60px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  filter: brightness(0.7);
  transform: scale(1.04);
  animation: heroZoom 8s var(--ease) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .3s forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: rgba(255,255,255,0.5);
}
.hero-content h1 {
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.03;
  letter-spacing: -2.5px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .5s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .7s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── WHAT WE DO ─── */
.what-section { background: var(--white); }
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}
.what-text h2 { margin-bottom: 24px; }
.what-text p { font-size: 17px; max-width: 460px; margin-bottom: 32px; }

.what-img-wrap { position: relative; }
.what-img {
  height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.1);
  transition: box-shadow .4s var(--ease);
}
.what-img:hover { box-shadow: 0 48px 100px rgba(0,0,0,0.16); }
.what-img img { transition: transform .6s var(--ease); }
.what-img:hover img { transform: scale(1.03); }

.what-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--black);
  color: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  min-width: 180px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.what-badge .badge-num {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1.5px;
}
.what-badge .badge-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  margin-top: 4px;
}

/* ─── MISSION ─── */
.mission-section { background: var(--off-white); }
.mission-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.mission-title h2 { color: var(--black); }
.mission-body p { font-size: 17px; margin-bottom: 20px; }
.mission-body p:last-child { margin-bottom: 0; }

/* ─── WHAT YOU GET ─── */
.wyg-section { background: var(--black); padding: 100px 60px; }
.wyg-header {
  max-width: 1160px;
  margin: 0 auto 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.wyg-header h2 { color: var(--white); max-width: 400px; }
.wyg-header .section-label { color: rgba(255,255,255,0.4); }
.wyg-header .section-label::before { background: rgba(255,255,255,0.3); }
.wyg-header > p { color: rgba(255,255,255,0.45); font-size: 15px; max-width: 280px; text-align: right; line-height: 1.6; }

.wyg-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 260px 260px 280px;
  gap: 12px;
  max-width: 1160px;
  margin: 0 auto;
}
.wyg-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a1a;
  cursor: default;
}
.wyg-card:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.wyg-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.wyg-card:nth-child(3) { grid-column: 3; grid-row: 1; }
.wyg-card:nth-child(4) { grid-column: 2; grid-row: 2; }
.wyg-card:nth-child(5) { grid-column: 3; grid-row: 2; }
.wyg-card:nth-child(6) { grid-column: 1 / 4; grid-row: 3; }

.wyg-card .card-img { position: absolute; inset: 0; }
.wyg-card .card-img img { transition: transform .5s var(--ease); }
.wyg-card:hover .card-img img { transform: scale(1.05); }
.wyg-card .card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.05) 55%, transparent 100%);
  transition: opacity .3s;
}
.wyg-card:hover .card-img::after { opacity: 0.85; }

.wyg-card .card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 1;
  padding: 28px;
  transform: translateY(4px);
  transition: transform .3s var(--ease);
}
.wyg-card:hover .card-body { transform: translateY(0); }
.wyg-card .card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.wyg-card .card-body p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s var(--ease) .05s, transform .3s var(--ease) .05s;
}
.wyg-card:hover .card-body p { opacity: 1; transform: translateY(0); }

.wyg-card:nth-child(6) .card-body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.wyg-card:nth-child(6) .card-body h3 { font-size: 22px; margin-bottom: 0; white-space: nowrap; }
.wyg-card:nth-child(6) .card-body p { max-width: 480px; margin-bottom: 0; }
.wyg-card:nth-child(6):hover .card-body p { opacity: 1; transform: translateY(0); }

/* ─── WHY US ─── */
.why-section { background: var(--off-white); }
.why-inner { max-width: 1160px; margin: 0 auto; }
.why-inner h2 { margin-bottom: 56px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  border: 1px solid var(--grey-mid);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s;
}
.why-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  transform: translateY(-6px);
  border-color: transparent;
}
.why-card .why-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--grey-text);
  margin-bottom: 20px;
}
.why-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
  color: var(--black);
}
.why-card p { font-size: 14px; color: #777; line-height: 1.65; }

/* ─── NEWSLETTER ─── */
.newsletter-section {
  background: var(--white);
  padding: 80px 60px;
  border-top: 1px solid var(--grey-mid);
}
.newsletter-inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-inner h2 { margin-bottom: 8px; }
.newsletter-inner .sub { font-size: 17px; color: var(--grey-text); margin-bottom: 36px; }
.newsletter-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--grey-mid);
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  background: var(--grey-light);
}
.newsletter-form input:focus {
  border-color: var(--black);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}

.newsletter-success {
  display: none;
  align-items: center;
  gap: 12px;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  animation: fadeUp .4s var(--ease);
}
.newsletter-success .check {
  width: 32px; height: 32px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #2e7d32;
}

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  color: var(--white);
  padding: 56px 60px 40px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-brand .footer-logo {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); max-width: 240px; line-height: 1.6; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-contact p { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
.footer-contact a {
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
  transition: opacity .2s;
}
.footer-contact a:hover { opacity: 0.65; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.25); }

/* ─── INNER PAGES ─── */
.inner-hero {
  padding: 148px 60px 72px;
  background: var(--off-white);
  border-bottom: 1px solid var(--grey-mid);
}
.inner-hero-content { max-width: 720px; }
.inner-hero-content .section-label { margin-bottom: 20px; }
.inner-hero-content h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--black);
}
.inner-hero-content p { font-size: 19px; color: #777; max-width: 540px; line-height: 1.6; }

/* ─── SERVICES ─── */
.services-section { background: var(--white); }
.services-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.service-card {
  background: var(--off-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--grey-mid);
  transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}
.service-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  transform: translateY(-6px);
}
.service-card-img { height: 300px; overflow: hidden; }
.service-card-img img { transition: transform .5s var(--ease); }
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card-body { padding: 36px; }
.service-card-body h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  color: var(--black);
}
.service-card-body > p { font-size: 15px; color: #666; margin-bottom: 24px; line-height: 1.7; }
.service-meta {
  background: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
  border: 1px solid var(--grey-mid);
}
.service-meta span { display: block; font-size: 14px; font-weight: 500; color: #555; margin-bottom: 4px; }
.service-meta span:last-child { margin-bottom: 0; }
.service-meta strong { color: var(--black); }

/* ─── ABOUT ─── */
.about-section { background: var(--white); }
.about-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-text h2 { margin-bottom: 32px; }
.about-text p { font-size: 17px; margin-bottom: 20px; color: #555; }
.about-text p:last-of-type { margin-bottom: 36px; }
.about-credentials { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--off-white);
  border-radius: 14px;
  border: 1px solid var(--grey-mid);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.credential-item:hover {
  border-color: var(--grey-text);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transform: translateX(4px);
}
.credential-item .cred-icon {
  width: 40px;
  height: 40px;
  background: var(--black);
  border-radius: 10px;
  flex-shrink: 0;
}
.credential-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--black); }
.credential-item p { font-size: 13px; color: #888; margin: 0; }
.about-img-col { position: relative; }
.about-img-wrap {
  height: 580px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.12);
  position: sticky;
  top: 88px;
  transition: box-shadow .4s;
}
.about-img-wrap:hover { box-shadow: 0 48px 100px rgba(0,0,0,0.18); }
.about-img-wrap img { transition: transform .6s var(--ease); }
.about-img-wrap:hover img { transform: scale(1.03); }

/* ─── CONTACT ─── */
.contact-section { background: var(--white); }
.contact-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-info > p { font-size: 17px; color: #666; margin-bottom: 40px; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--off-white);
  border-radius: 14px;
  border: 1px solid var(--grey-mid);
  transition: transform .2s, box-shadow .2s;
}
.contact-detail:hover { transform: translateX(4px); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.det-icon {
  width: 40px;
  height: 40px;
  background: var(--black);
  border-radius: 10px;
  flex-shrink: 0;
}
.contact-detail h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #999;
  margin-bottom: 4px;
}
.contact-detail p, .contact-detail a { font-size: 15px; color: var(--black); font-weight: 500; margin: 0; }
.contact-detail a:hover { opacity: 0.65; }

.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 48px;
  border: 1px solid var(--grey-mid);
}
.contact-form-wrap h3 { font-size: 22px; font-weight: 700; margin-bottom: 32px; letter-spacing: -0.3px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; }
.field label { font-size: 13px; font-weight: 600; color: #555; margin-bottom: 8px; }
.field input, .field textarea, .field select {
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid var(--grey-mid);
  font-size: 15px;
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}
.field textarea { resize: vertical; min-height: 140px; }
.contact-form button { width: 100%; padding: 16px; font-size: 15px; justify-content: center; }

/* Form states */
.btn-loading { position: relative; color: transparent !important; }
.btn-loading::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

#formSuccess {
  display: none;
  text-align: center;
  padding: 40px 20px;
  animation: fadeUp .5s var(--ease);
}
#formSuccess .success-icon {
  width: 64px; height: 64px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #2e7d32;
  margin: 0 auto 20px;
  font-weight: 700;
}
#formSuccess h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
#formSuccess p { color: #777; font-size: 15px; margin: 0; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  section { padding: 80px 32px; }
  .hero { padding: 0 32px 64px; }
  .wyg-section { padding: 80px 32px; }
  .newsletter-section { padding: 64px 32px; }
  footer { padding: 48px 32px 32px; }
  .inner-hero { padding: 128px 32px 56px; }
  .what-grid, .mission-inner, .about-inner, .contact-inner { gap: 48px; }
  .wyg-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 260px 240px; }
  .wyg-card:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
  .wyg-card:nth-child(2) { grid-column: 1; grid-row: 2; }
  .wyg-card:nth-child(3) { grid-column: 2; grid-row: 2; }
  .wyg-card:nth-child(4) { grid-column: 1; grid-row: 3; }
  .wyg-card:nth-child(5) { grid-column: 2; grid-row: 3; }
  .wyg-card:nth-child(6) { grid-column: 1 / 3; grid-row: 4; min-height: 220px; }
  .wyg-card:nth-child(6) .card-body { flex-direction: column; align-items: flex-start; gap: 8px; }
  .wyg-card:nth-child(6) .card-body h3 { white-space: normal; }
}

@media (max-width: 900px) {
  .nav-links { display: none !important; }
  .nav-cta { display: none !important; }
  .hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr; gap: 12px; }
  .services-inner { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-img-wrap { height: 360px; position: static; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .wyg-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .wyg-header > p { text-align: left; max-width: 100%; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { justify-content: center; }
}

@media (max-width: 768px) {
  .what-grid { grid-template-columns: 1fr; gap: 56px; }
  .what-img { height: 340px; }
  .what-badge { left: 0; bottom: -20px; }
  .mission-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  section { padding: 64px 20px; }
  .hero { padding: 0 20px 52px; }
  .wyg-section, .newsletter-section { padding: 64px 20px; }
  footer { padding: 40px 20px 28px; }
  .inner-hero { padding: 108px 20px 48px; }
  .contact-form-wrap { padding: 24px 20px; }
  .wyg-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .wyg-card:nth-child(1),
  .wyg-card:nth-child(2),
  .wyg-card:nth-child(3),
  .wyg-card:nth-child(4),
  .wyg-card:nth-child(5),
  .wyg-card:nth-child(6) { grid-column: 1 !important; grid-row: auto !important; min-height: 240px; }
  .wyg-card:nth-child(6) .card-body { flex-direction: column; align-items: flex-start; gap: 8px; }
  .wyg-card:nth-child(6) .card-body h3 { white-space: normal; }
  .wyg-card .card-body p { opacity: 1; transform: none; }
}
