:root {
  --primary: #0f766e;
  --primary-dark: #0b4f4a;
  --primary-soft: #e5f7f4;
  --accent: #38bdf8;
  --accent-warm: #f59e0b;
  --dark: #0f172a;
  --muted: #64748b;
  --light: #f8fafc;
  --white: #ffffff;
  --border: #dbe7ec;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  background: var(--light);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--dark);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 10000;
}

.skip-link:focus {
  left: 12px;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e6fffb 100%);
  transition: opacity .5s ease, visibility .5s ease;
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 30px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.loader-mark span {
  position: absolute;
  width: 150%;
  height: 150%;
  border: 2px solid rgba(255, 255, 255, .6);
  border-radius: 45%;
  animation: rotate 1.5s linear infinite;
}

.loader-mark strong {
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 18px 0;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(15, 23, 42, .08);
  padding: 10px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-weight: 900;
  font-size: 1.35rem;
  box-shadow: 0 12px 26px rgba(15, 118, 110, .25);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1;
  font-size: 1.03rem;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  color: #334155;
  border-radius: 999px;
  font-weight: 700;
  font-size: .94rem;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.site-nav a:hover {
  color: var(--primary);
  background: rgba(15, 118, 110, .08);
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 14px 26px rgba(15, 118, 110, .22);
}

.site-nav .nav-cta:hover {
  color: var(--white);
  background: var(--primary-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--dark);
  transition: transform .25s ease, opacity .25s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  padding: 150px 0 88px;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, .18), transparent 32%),
    linear-gradient(145deg, #ffffff 0%, #f0fdfa 58%, #e0f2fe 100%);
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .55;
  pointer-events: none;
}

.shape-one {
  right: -160px;
  top: 120px;
  width: 420px;
  height: 420px;
  background: rgba(15, 118, 110, .12);
  animation: floatShape 7s ease-in-out infinite;
}

.shape-two {
  left: -170px;
  bottom: -130px;
  width: 360px;
  height: 360px;
  background: rgba(56, 189, 248, .15);
  animation: floatShape 8s ease-in-out infinite reverse;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 64px;
  align-items: center;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border: 1px solid rgba(15, 118, 110, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--primary);
  font-size: .84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.section-tag.light {
  color: var(--white);
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.12);
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, .6);
  animation: pulse 1.8s infinite;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.appointment-band h2,
.contact-copy h2,
.location h2 {
  margin: 18px 0 16px;
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  line-height: .95;
  letter-spacing: -0.07em;
}

.hero-text {
  max-width: 660px;
  margin: 0 0 28px;
  color: #475569;
  font-size: 1.16rem;
  line-height: 1.8;
}

.hero-actions,
.band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
  cursor: pointer;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), #0891b2);
  box-shadow: 0 18px 38px rgba(15, 118, 110, .28);
}

.btn-primary:hover {
  box-shadow: 0 24px 42px rgba(15, 118, 110, .34);
}

.btn-secondary {
  color: var(--primary-dark);
  background: var(--white);
  border-color: rgba(15, 118, 110, .16);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
}

.btn-light {
  color: var(--primary-dark);
  background: var(--white);
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255,255,255,.55);
  background: transparent;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 560px;
  margin-top: 36px;
}

.hero-trust div {
  padding: 16px;
  border: 1px solid rgba(15, 118, 110, .14);
  border-radius: 20px;
  background: rgba(255, 255, 255, .64);
  backdrop-filter: blur(12px);
}

.hero-trust strong,
.hero-trust span {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-trust strong {
  color: var(--primary-dark);
}

.hero-trust small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.image-card {
  position: relative;
  height: 100%;
  min-height: 540px;
  overflow: hidden;
  border: 14px solid var(--white);
  border-radius: 42px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.image-card::after {
  content: '';
  position: absolute;
  inset: auto 24px 24px 24px;
  height: 120px;
  border-radius: 30px;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, .18));
  pointer-events: none;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.floating-card {
  animation: cardFloat 5.5s ease-in-out infinite;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  width: max-content;
  max-width: 260px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, .16);
  border: 1px solid rgba(255,255,255,.75);
}

.hero-badge span,
.hero-badge strong {
  display: block;
}

.hero-badge span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-badge strong {
  margin-top: 4px;
  color: var(--dark);
}

.badge-top {
  top: 42px;
  left: -24px;
  animation: badgeFloat 4.2s ease-in-out infinite;
}

.badge-bottom {
  right: -22px;
  bottom: 70px;
  animation: badgeFloat 4.6s ease-in-out infinite reverse;
}

.quick-contact {
  position: relative;
  z-index: 3;
  margin-top: -42px;
}

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

.quick-card {
  display: flex;
  gap: 16px;
  align-items: center;
  min-height: 118px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(219,231,236,.8);
  box-shadow: 0 22px 60px rgba(15, 23, 42, .1);
  transition: transform .24s ease, box-shadow .24s ease;
}

.quick-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, .14);
}

.quick-card > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 16px;
  color: var(--primary);
  background: var(--primary-soft);
  font-weight: 900;
}

.quick-card strong {
  display: block;
  font-size: 1.05rem;
}

.quick-card p {
  margin: 5px 0 0;
  color: var(--muted);
  line-height: 1.4;
  word-break: break-word;
}

.section {
  padding: 105px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2,
.about-copy h2,
.appointment-band h2,
.contact-copy h2,
.location h2 {
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.04;
}

.section-heading p,
.about-copy p,
.appointment-band p,
.contact-copy p,
.location p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

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

.service-card,
.team-card,
.department-card,
.contact-form,
.map-placeholder,
.testimonial-slider {
  border: 1px solid rgba(219,231,236,.9);
  background: var(--white);
  box-shadow: 0 20px 55px rgba(15, 23, 42, .07);
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 16px 16px 24px;
  border-radius: 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,118,110,.12), rgba(56,189,248,.08));
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(15,118,110,.26);
  box-shadow: 0 30px 70px rgba(15, 23, 42, .12);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card img {
  height: 210px;
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  background: var(--primary-soft);
}

.service-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: -24px 0 18px 18px;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(15, 118, 110, .28);
}

.service-card h3,
.team-card h3,
.department-card h3 {
  position: relative;
  margin: 0 0 10px;
  font-size: 1.22rem;
  letter-spacing: -0.03em;
}

.service-card p,
.team-card p,
.department-card p {
  position: relative;
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.7;
}

.service-card a {
  position: relative;
  color: var(--primary);
  font-weight: 900;
}

.about {
  background: linear-gradient(180deg, #f8fafc 0%, #ecfeff 100%);
}

.about-grid,
.contact-grid,
.location-grid,
.band-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual img {
  width: 100%;
  min-height: 540px;
  object-fit: cover;
  border-radius: 36px;
  border: 12px solid var(--white);
  box-shadow: var(--shadow);
}

.experience-card {
  position: absolute;
  right: -20px;
  bottom: 36px;
  max-width: 280px;
  padding: 20px;
  border-radius: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 24px 60px rgba(15, 118, 110, .28);
}

.experience-card strong,
.experience-card span {
  display: block;
}

.experience-card strong {
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.experience-card span {
  margin-top: 8px;
  color: rgba(255,255,255,.82);
  line-height: 1.5;
}

.about-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.about-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(219,231,236,.85);
}

.about-list span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  color: var(--primary);
  background: var(--primary-soft);
  font-weight: 900;
  flex: 0 0 auto;
}

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

.department-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 26px;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.department-card::after {
  content: '';
  position: absolute;
  right: -36px;
  top: -36px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(15, 118, 110, .09);
}

.department-card:hover {
  transform: translateY(-8px);
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), #0891b2);
}

.department-card:hover p,
.department-card:hover span {
  color: rgba(255,255,255,.82);
}

.department-card span {
  display: block;
  margin-bottom: 38px;
  color: var(--primary);
  font-weight: 900;
}

.appointment-band {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(56,189,248,.28), transparent 28%),
    linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.appointment-band h2 {
  color: var(--white);
}

.appointment-band p {
  color: rgba(255,255,255,.82);
}

.band-grid {
  grid-template-columns: 1fr auto;
}

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

.team-card {
  overflow: hidden;
  padding: 16px 16px 26px;
  border-radius: 28px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.team-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 30px 70px rgba(15, 23, 42, .12);
}

.team-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 20px;
}

.testimonials {
  background: linear-gradient(180deg, #ecfeff 0%, #f8fafc 100%);
}

.testimonial-slider {
  max-width: 850px;
  margin: 0 auto;
  border-radius: 34px;
  padding: 46px;
  text-align: center;
  overflow: hidden;
}

.testimonial {
  display: none;
  margin: 0;
  animation: fadeUp .45s ease both;
}

.testimonial.active {
  display: block;
}

.testimonial p {
  margin: 0 auto 22px;
  max-width: 700px;
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.5;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.testimonial cite {
  color: var(--primary);
  font-weight: 900;
  font-style: normal;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.slider-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #cbd5e1;
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.slider-dots button.active {
  width: 34px;
  background: var(--primary);
}

.contact-grid {
  grid-template-columns: .9fr 1.1fr;
}

.contact-info {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-info a,
.contact-info div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(219,231,236,.9);
  box-shadow: 0 16px 40px rgba(15, 23, 42, .05);
}

.contact-info strong {
  color: var(--dark);
}

.contact-info span {
  color: var(--muted);
  text-align: right;
  word-break: break-word;
}

.contact-form {
  padding: 30px;
  border-radius: 30px;
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  margin-bottom: 8px;
  color: #334155;
  font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--dark);
  background: #fbfdff;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(15, 118, 110, .55);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, .1);
}

.form-btn {
  width: 100%;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.5;
}

.location {
  background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
}

.location-grid {
  grid-template-columns: .85fr 1.15fr;
}

.map-placeholder {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(15, 118, 110, .09) 1px, transparent 1px),
    linear-gradient(rgba(15, 118, 110, .09) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff, #e0f2fe);
  background-size: 42px 42px, 42px 42px, 100% 100%;
}

.map-placeholder strong,
.map-placeholder span {
  position: relative;
  display: block;
  z-index: 2;
}

.map-placeholder strong {
  margin-top: 88px;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.map-placeholder span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.map-pin {
  position: absolute;
  top: calc(50% - 56px);
  left: 50%;
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -50%) rotate(-45deg);
  box-shadow: 0 16px 34px rgba(15, 118, 110, .32);
  animation: pinBounce 1.8s ease-in-out infinite;
}

.map-pin::after {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: var(--white);
}

.site-footer {
  color: rgba(255,255,255,.78);
  background: #061b20;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .8fr .9fr .8fr;
  gap: 36px;
  padding: 72px 0;
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  margin: 18px 0 0;
  max-width: 330px;
  line-height: 1.7;
}

.site-footer h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin: 0 0 12px;
  transition: color .2s ease, transform .2s ease;
}

.site-footer a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer-bottom p {
  max-width: unset;
  margin: 0;
  padding: 20px 0;
  color: rgba(255,255,255,.62);
  font-size: .92rem;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 16px;
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 16px 34px rgba(15, 118, 110, .28);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: .12s;
}

.delay-2 {
  transition-delay: .24s;
}

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

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, .55); }
  70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes floatShape {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(18px,-18px,0) scale(1.04); }
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

@keyframes pinBounce {
  0%, 100% { transform: translate(-50%, -50%) rotate(-45deg) translateY(0); }
  50% { transform: translate(-50%, -50%) rotate(-45deg) translateY(-10px); }
}

@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .location-grid,
  .band-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 132px;
  }

  .hero-visual {
    min-height: auto;
  }

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

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

  .band-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 82px;
    display: grid;
    gap: 6px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow);
    border: 1px solid rgba(219,231,236,.88);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav a {
    border-radius: 14px;
  }

  .hero-trust,
  .service-grid,
  .team-grid,
  .department-grid,
  .quick-grid,
  .about-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 12vw, 4.2rem);
  }

  .hero-badge {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 16px;
    max-width: 100%;
    width: 100%;
  }

  .badge-top,
  .badge-bottom {
    animation: none;
  }

  .image-card,
  .image-card img,
  .about-visual img {
    min-height: 390px;
  }

  .experience-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -48px 20px 0;
  }

  .contact-info a,
  .contact-info div {
    display: block;
  }

  .contact-info span {
    display: block;
    margin-top: 8px;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    padding: 120px 0 72px;
  }

  .hero-actions,
  .band-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .brand strong {
    font-size: .95rem;
  }

  .brand small {
    font-size: .68rem;
  }

  .quick-contact {
    margin-top: -20px;
  }

  .testimonial-slider,
  .contact-form {
    padding: 24px;
  }
}
