:root {
  --red: #e10613;
  --orange: #f7941d;
  --green: #78b14b;
  --dark: #121212;
  --text: #212529;
  --muted: #667085;
  --line: rgba(18, 18, 18, 0.08);
  --white: #ffffff;
  --bg: #fff9f5;
  --card: rgba(255, 255, 255, 0.86);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.08);

  --accent-soft: rgba(247, 148, 29, 0.14);
  --glass: rgba(255, 255, 255, 0.68);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;

  --page-shift: 0px;
  --logo-shift: 0px;
  --logo-tilt: 0deg;
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}


html,
body {
  scrollbar-width: thin;
  scrollbar-color: rgba(225, 6, 19, 0.82) rgba(255, 255, 255, 0.55);
}

::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(247, 148, 29, 0.08));
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--red), var(--orange), var(--green));
  border: 3px solid rgba(255,255,255,0.92);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(225, 6, 19, 0.18);
}

::-webkit-scrollbar-thumb:hover {
  box-shadow: 0 12px 26px rgba(225, 6, 19, 0.26);
}

body {
  margin: 0;
  overscroll-behavior-y: none;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(247, 148, 29, 0.10), transparent 28%),
    radial-gradient(circle at top left, rgba(120, 177, 75, 0.08), transparent 26%),
    linear-gradient(180deg, #fffaf7 0%, #fff 38%, #fff9f6 100%);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

body::selection {
  background: rgba(247, 148, 29, 0.25);
}

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

iframe {
  border: 0;
}

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


.scroll-progress {
  position: fixed;
  top: 0;
  inset-inline: 0;
  height: 5px;
  z-index: 60;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.scroll-progress span {
  position: relative;
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--orange), var(--red));
  box-shadow: 0 0 18px rgba(225, 6, 19, 0.35);
  border-radius: 0 999px 999px 0;
}

.scroll-progress span::after {
  content: "";
  position: absolute;
  inset-inline-end: -10px;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.58) 28%, rgba(225,6,19,0.12) 72%, transparent 100%);
  filter: blur(1px);
}

.page-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(247, 148, 29, 0.15), transparent 20%),
    radial-gradient(circle at 85% 10%, rgba(225, 6, 19, 0.14), transparent 18%),
    radial-gradient(circle at 80% 80%, rgba(120, 177, 75, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
  pointer-events: none;
  z-index: -1;
  transform: translate3d(0, var(--page-shift), 0) scale(1.02);
  transition: transform 0.18s linear;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.74);
  border-bottom: 1px solid rgba(18, 18, 18, 0.05);
  box-shadow: 0 12px 30px rgba(18, 18, 18, 0.04);
  transition: background-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  inset-inline: 18px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(120,177,75,0), rgba(120,177,75,0.42), rgba(247,148,29,0.45), rgba(225,6,19,0.4), rgba(225,6,19,0));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 86px;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 38px rgba(18, 18, 18, 0.08);
}

.site-header.is-scrolled::after {
  opacity: 1;
}

.site-header.is-hidden {
  transform: translateY(-105%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--dark);
  padding: 8px 12px;
  border-radius: 18px;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.brand:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.5);
}

.brand-icon {
  width: 62px;
  height: 48px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text span {
  font-size: 0.88rem;
  color: var(--muted);
}

.main-nav {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.56);
  border: 1px solid rgba(18,18,18,0.05);
  box-shadow: 0 10px 24px rgba(18,18,18,0.04);
}

.main-nav a,
.header-cta,
.btn,
.contact-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  position: relative;
  padding: 9px 14px;
  border-radius: 999px;
}

.main-nav a:hover {
  background: rgba(255,255,255,0.86);
}

.main-nav a.is-active {
  color: var(--dark);
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(247,148,29,0.18));
  box-shadow: 0 14px 22px rgba(0,0,0,0.05);
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--orange), var(--red));
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  width: 100%;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.header-cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #ff5330);
  box-shadow: 0 14px 30px rgba(225, 6, 19, 0.22);
}

.header-cta:hover,
.btn:hover,
.contact-card:hover {
  transform: translateY(-3px);
}

.hero {
  padding: 82px 0 56px;
}

.hero-premium {
  position: relative;
}

.hero-premium::before {
  content: "";
  position: absolute;
  inset: 18px auto auto 50%;
  width: min(980px, calc(100% - 34px));
  height: calc(100% - 16px);
  transform: translateX(-50%);
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(255,255,255,0.56));
  border: 1px solid rgba(18,18,18,0.05);
  box-shadow: 0 24px 60px rgba(18,18,18,0.06);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
  align-items: center;
  gap: 42px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(18, 18, 18, 0.06);
  border-radius: 999px;
  color: var(--red);
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(2rem, 3vw, 3.7rem);
  line-height: 1.15;
  color: var(--dark);
}

.hero-subtitle {
  margin: 0 0 12px;
  font-size: 1.18rem;
  color: var(--muted);
  font-weight: 600;
}

.hero-text {
  max-width: 620px;
  margin: 0;
  font-size: 1.05rem;
  color: #4f5a68;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(18,18,18,0.06);
  box-shadow: 0 12px 24px rgba(18,18,18,0.04);
  font-weight: 700;
  color: #4e5867;
}

.hero-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #ff5e32);
  box-shadow: 0 16px 34px rgba(225, 6, 19, 0.22);
}

.btn-secondary {
  color: var(--dark);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(18, 18, 18, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.98);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
  max-width: 620px;
}

.point-card,
.info-panel,
.contact-card,
.map-card {
  background: var(--card);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(18, 18, 18, 0.06);
  box-shadow: var(--shadow);
}

.point-card {
  padding: 18px 20px;
  border-radius: var(--radius-md);
}

.point-card span {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.point-card strong {
  display: block;
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-shell {
  position: relative;
  width: min(100%, 520px);
  min-height: 500px;
  padding: 44px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.95));
  border: 1px solid rgba(18, 18, 18, 0.06);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.08);
  transform: translateY(var(--logo-shift)) rotate(var(--logo-tilt));
  transition: transform 0.18s linear, box-shadow 0.35s ease, background-color 0.35s ease;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-shell:hover {
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.11);
}

.logo-shell-refined::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(247,148,29,0.07), rgba(255,255,255,0.16), rgba(120,177,75,0.07));
  border: 1px solid rgba(18,18,18,0.04);
}

.hero-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(18, 18, 18, 0.05);
  pointer-events: none;
}

.orbit-one {
  width: 360px;
  height: 360px;
  top: -88px;
  left: -72px;
}

.orbit-two {
  width: 420px;
  height: 420px;
  bottom: -160px;
  right: -120px;
}

.orbit-three {
  width: 260px;
  height: 260px;
  bottom: 54px;
  left: -84px;
  opacity: 0.7;
}

.hero-logo-stage {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-disc {
  position: absolute;
  width: min(100%, 340px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.98), rgba(255,255,255,0.75) 68%, rgba(255,255,255,0.38));
  box-shadow: inset 0 0 0 1px rgba(18,18,18,0.04), 0 24px 50px rgba(0,0,0,0.08);
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.10));
  animation: floaty 5.5s ease-in-out infinite;
}

.hero-logo-icon {
  max-width: 250px;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.24;
}

.glow-red {
  width: 180px;
  height: 180px;
  background: var(--red);
  top: -30px;
  left: -20px;
}

.glow-green {
  width: 200px;
  height: 200px;
  background: var(--green);
  bottom: -40px;
  right: -20px;
}

.hero-mini-panel {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(18,18,18,0.05);
  box-shadow: 0 18px 36px rgba(0,0,0,0.08);
  font-weight: 800;
  color: #253042;
  backdrop-filter: blur(10px);
}

.hero-mini-panel-top {
  top: 34px;
  right: 34px;
}

.hero-mini-panel-bottom {
  left: 34px;
  bottom: 34px;
  font-size: 0.98rem;
}

.section {
  padding: 54px 0 96px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 18px 0 10px;
  font-size: clamp(1.65rem, 2.5vw, 2.7rem);
  line-height: 1.2;
  color: var(--dark);
}

.section-heading p {
  margin: 0;
  color: #5d6877;
  font-size: 1rem;
}

.about-grid,
.contact-grid,
.location-grid {
  display: grid;
  gap: 20px;
}

.about-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-panel {
  padding: 30px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.info-panel::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--red), var(--orange), var(--green));
  opacity: 0.85;
}

.info-panel h3 {
  margin: 0 0 12px;
  color: var(--dark);
  font-size: 1.08rem;
}

.info-panel p {
  margin: 0;
  color: #4f5a68;
}

.section-highlight {
  position: relative;
}

.section-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 148, 29, 0.04), rgba(225, 6, 19, 0.05), rgba(120, 177, 75, 0.04));
  pointer-events: none;
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.85fr) minmax(0, 1.15fr);
  gap: 22px;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.contact-form-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.86));
  backdrop-filter: blur(14px);
  border: 1px solid rgba(18, 18, 18, 0.06);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.07);
  border-radius: 32px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.contact-form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(225, 6, 19, 0.07), transparent 28%),
    radial-gradient(circle at bottom left, rgba(120, 177, 75, 0.08), transparent 24%);
  pointer-events: none;
}

.form-heading,
.contact-form,
.form-actions,
.status-box {
  position: relative;
  z-index: 1;
}

.form-heading span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(18,18,18,0.06);
  color: var(--red);
  font-weight: 700;
}

.form-heading h3 {
  margin: 16px 0 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.25;
}

.contact-form {
  margin-top: 24px;
}

.form-row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.form-row.two-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 10px;
}

.field span {
  font-weight: 700;
  color: #344054;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(18, 18, 18, 0.08);
  background: rgba(255,255,255,0.9);
  border-radius: 18px;
  padding: 16px 18px;
  font: inherit;
  color: var(--text);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.field textarea {
  resize: vertical;
  min-height: 170px;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(225, 6, 19, 0.36);
  box-shadow: 0 0 0 4px rgba(225, 6, 19, 0.08), 0 16px 30px rgba(0,0,0,0.04);
  transform: translateY(-1px);
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.form-note {
  margin: 0;
  color: #667085;
  font-size: 0.96rem;
}

.status-box {
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 700;
  display: none;
}

.status-box.is-visible {
  display: block;
}

.status-box.is-success {
  background: rgba(120, 177, 75, 0.14);
  color: #35622d;
  border: 1px solid rgba(120, 177, 75, 0.24);
}

.status-box.is-error {
  background: rgba(225, 6, 19, 0.08);
  color: #9d1b1b;
  border: 1px solid rgba(225, 6, 19, 0.16);
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 30px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.contact-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(247,148,29,0.18), rgba(247,148,29,0));
}

.contact-label {
  font-size: 0.92rem;
  color: var(--muted);
}

.contact-card strong {
  font-size: 1.2rem;
  word-break: break-word;
}

.contact-card small {
  color: var(--red);
  font-weight: 700;
}

.location-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.location-copy p {
  color: #5d6877;
  max-width: 420px;
}

.map-card {
  padding: 12px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(225,6,19,0.26), rgba(247,148,29,0.22), rgba(120,177,75,0.24));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.map-card iframe {
  width: 100%;
  min-height: 420px;
  border-radius: 22px;
}

.site-footer {
  padding: 0 0 30px;
}

.footer-inner {
  padding: 24px 18px;
  border-radius: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(18, 18, 18, 0.06);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.footer-inner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 160px;
  background: linear-gradient(180deg, rgba(225,6,19,0.08), rgba(247,148,29,0.08), rgba(120,177,75,0.08));
}

.footer-inner p {
  margin: 0;
  color: #545f6f;
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.985);
  transform-origin: center bottom;
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
  filter: blur(8px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

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

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

.delay-3 {
  transition-delay: 0.24s;
}

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

  .hero {
    padding-top: 66px;
  }

  .hero-premium::before {
    height: calc(100% - 24px);
  }

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

  .logo-shell {
    min-height: 420px;
  }

  .hero-logo-icon {
    max-width: 220px;
  }
}

@media (max-width: 820px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 0;
  }

  .main-nav {
    border-radius: 20px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    padding-bottom: 8px;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .form-row.two-cols {
    grid-template-columns: 1fr;
  }

  .hero-mini-panel-top {
    top: 24px;
    right: 24px;
  }

  .hero-mini-panel-bottom {
    left: 24px;
    bottom: 24px;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 20px, 1160px);
  }

  .site-header {
    position: static;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .brand-text strong {
    font-size: 0.96rem;
  }

  .brand-text span {
    font-size: 0.82rem;
  }

  .header-cta {
    width: 100%;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .logo-shell,
  .info-panel,
  .contact-card,
  .map-card,
  .footer-inner {
    border-radius: 22px;
  }

  .hero {
    padding-top: 44px;
  }

  .logo-shell {
    min-height: 360px;
    padding: 28px;
  }

  .point-card {
    border-radius: 18px;
  }

  .hero-logo-disc {
    width: min(100%, 250px);
  }

  .hero-logo-icon {
    max-width: 170px;
  }

  .hero-mini-panel {
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.84rem;
  }

  .contact-card strong {
    font-size: 1.06rem;
  }

  .contact-form-card {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .field input,
  .field textarea {
    border-radius: 16px;
    padding: 14px 16px;
  }

  .map-card iframe {
    min-height: 320px;
  }
}


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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-logo,
  .reveal,
  .main-nav a,
  .brand,
  .btn,
  .contact-card,
  .page-bg,
  .logo-shell,
  .site-header {
    animation: none !important;
    transition: none !important;
  }
}
