/* ===================================
   STELVIO5 — Vanilla CSS
   Brand Orange: #f27d26
   Brand Dark:   #1a1a1a
   =================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  color: #1a1a1a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

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

/* ---------- Utility ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #f27d26;
  color: #fff;
  padding: .75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: opacity .3s, transform .3s;
  font-size: 1rem;
}
.btn-primary:hover { opacity: .9; transform: scale(1.02); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 2px solid #f27d26;
  color: #f27d26;
  padding: .75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  background: transparent;
  cursor: pointer;
  transition: all .3s;
  font-size: 1rem;
}
.btn-outline:hover { background: #f27d26; color: #fff; }
.btn-outline.white { border-color: #fff; color: #fff; }
.btn-outline.white:hover { background: #fff; color: #1a1a1a; }

/* ---------- Section Helpers ---------- */
.section { padding: 5rem 1.5rem; }
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 1rem;
}
.label-tag {
  display: block;
  color: #f27d26;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .8rem;
  margin-bottom: 1rem;
}

/* ---------- Card ---------- */
.card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  border: 1px solid #f0f0f0;
  overflow: hidden;
  transition: box-shadow .3s;
}
.card:hover { box-shadow: 0 8px 40px rgba(0,0,0,.1); }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .3s, padding .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  padding: .75rem 1.5rem;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.navbar .logo-icon {
  width: 2.5rem; height: 2.5rem;
  background: #f27d26;
  border-radius: .5rem;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
}
.navbar .logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -.04em;
  color: #fff;
  transition: color .3s;
}
.navbar.scrolled .logo-text { color: #1a1a1a; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-weight: 700;
  color: #fff;
  transition: color .3s;
}
.nav-links a:hover,
.nav-links a.active { color: #f27d26; }
.navbar.scrolled .nav-links a { color: #1a1a1a; }
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active { color: #f27d26; }

.nav-donate { margin-left: .5rem; }

/* Mobile menu */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  color: #f27d26; font-size: 1.75rem;
}
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-weight: 700;
  font-size: 1.15rem;
  padding: .5rem 0;
  border-bottom: 1px solid #f0f0f0;
  color: #1a1a1a;
}
.mobile-menu a.active { color: #f27d26; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.5);
}
.hero-content {
  position: relative; z-index: 1;
  padding: 0 1.5rem;
  max-width: 900px;
  animation: fadeUp .8s ease-out;
}
.hero h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  letter-spacing: -.04em;
  margin-bottom: 1.5rem;
}
.hero h1 .orange { color: #f27d26; }
.hero p {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 640px;
  margin-left: auto; margin-right: auto;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-12px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Progress Bar ---------- */
.progress-section { background: #fff; }
.progress-bar-track {
  background: #f0f0f0;
  border-radius: 9999px;
  height: 2rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}
.progress-bar-fill {
  background: #f27d26;
  height: 100%;
  border-radius: 9999px;
  width: 0;
  transition: width 1.5s ease-out;
}
.progress-bar-label {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .85rem;
}
.progress-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}
.progress-stats .amount {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
}
.progress-stats .amount.orange { color: #f27d26; }
.progress-stats .amount.dark { color: #1a1a1a; }
.progress-stats .label {
  color: #999;
  font-size: .75rem;
  text-transform: uppercase;
  font-weight: 700;
}

/* ---------- Intro / About ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 768px) {
  .intro-grid { grid-template-columns: 1fr 1fr; }
}
.intro-grid h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.intro-grid p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.intro-image {
  position: relative;
}
.intro-image .img-wrap {
  aspect-ratio: 1;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}
.intro-image .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.intro-image .stat-badge {
  position: absolute;
  bottom: -2.5rem; left: -2.5rem;
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  display: none;
}
@media (min-width: 1024px) {
  .intro-image .stat-badge { display: block; }
}
.stat-badge .number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: #f27d26;
}
.stat-badge .caption {
  color: #999;
  font-weight: 700;
  text-transform: uppercase;
  font-size: .65rem;
  letter-spacing: .1em;
}

/* ---------- Strava Cards ---------- */
.strava-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 1.5rem;
}
.strava-header a {
  color: #f27d26;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.strava-header a:hover { text-decoration: underline; }
.strava-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .strava-grid { grid-template-columns: repeat(3, 1fr); }
}
.strava-card {
  padding: 1.5rem;
  border-left: 4px solid #f27d26;
}
.strava-card .avatar-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.strava-card .avatar {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  overflow: hidden;
  background: #e5e5e5;
}
.strava-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.strava-card .meta h4 { font-size: .95rem; }
.strava-card .meta p { color: #999; font-size: .75rem; }
.strava-card > h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.strava-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.strava-stats .stat-label {
  font-size: .65rem;
  color: #aaa;
  text-transform: uppercase;
}
.strava-stats .stat-value { font-weight: 700; }
.strava-card .ride-img {
  aspect-ratio: 16/9;
  border-radius: .75rem;
  overflow: hidden;
  background: #f5f5f5;
}
.strava-card .ride-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: #f27d26;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.cta-banner .bg-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,.15), transparent 70%);
}
.cta-banner .cta-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
.cta-banner h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 2rem;
}
.cta-banner p {
  color: rgba(255,255,255,.9);
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 640px;
  margin-left: auto; margin-right: auto;
}
.cta-banner .cta-btn {
  display: inline-block;
  background: #fff;
  color: #f27d26;
  padding: 1.2rem 2.5rem;
  border-radius: 9999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
  transition: transform .3s;
}
.cta-banner .cta-btn:hover { transform: scale(1.05); }

/* ---------- Page Header (inner pages) ---------- */
.page-header {
  padding-top: 10rem;
  padding-bottom: 4rem;
  text-align: center;
}
.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.page-header p {
  color: #666;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* ---------- Team Members ---------- */
.team-list { display: flex; flex-direction: column; gap: 6rem; }
.team-member {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .team-member { flex-direction: row; }
  .team-member.reverse { flex-direction: row-reverse; }
}
.team-member .photo {
  flex: 0 0 50%;
}
.team-member .photo .img-wrap {
  aspect-ratio: 4/5;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  position: relative;
}
.team-member .photo .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s;
}
.team-member .photo .img-wrap:hover img { transform: scale(1.1); }
.team-member .photo .hover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}
.team-member .photo .img-wrap:hover .hover-overlay { opacity: 1; }
.hover-overlay p { color: #fff; font-style: italic; }

.team-member .info { flex: 0 0 50%; }
.team-member .info h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.team-member .info .story {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.member-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  border: 1px solid #f0f0f0;
  text-align: center;
  margin-bottom: 2rem;
}
.member-stats .stat-label {
  color: #aaa;
  font-size: .65rem;
  text-transform: uppercase;
  margin-bottom: .25rem;
}
.member-stats .stat-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #1a1a1a;
}
.member-stats > div:nth-child(2) {
  border-left: 1px solid #f0f0f0;
  border-right: 1px solid #f0f0f0;
}

.member-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.member-actions .btn-primary,
.member-actions .btn-outline {
  padding: .5rem 1rem;
  font-size: .85rem;
}

/* ---------- Sponsors ---------- */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) { .sponsors-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .sponsors-grid { grid-template-columns: repeat(6, 1fr); } }

.sponsor-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: box-shadow .3s;
}
.sponsor-card .sponsor-logo {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.sponsor-card .sponsor-logo img {
  max-height: 100%;
  filter: grayscale(100%);
  transition: filter .3s;
}
.sponsor-card:hover .sponsor-logo img { filter: grayscale(0); }
.sponsor-card .sname { font-weight: 700; font-size: .85rem; margin-bottom: .25rem; }
.sponsor-card .stype {
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #f27d26;
  font-weight: 700;
}

/* Wall of Fame */
.wall-of-fame {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.wall-of-fame .name-tag {
  padding: .75rem 1.5rem;
  background: #f8f8f8;
  border-radius: 9999px;
  border: 1px solid #f0f0f0;
  font-weight: 500;
  color: #555;
  transition: border-color .3s, color .3s;
  cursor: default;
}
.wall-of-fame .name-tag:hover {
  border-color: #f27d26;
  color: #f27d26;
}
.wall-of-fame .name-tag.cta {
  background: rgba(242,125,38,.1);
  border-color: rgba(242,125,38,.2);
  color: #f27d26;
  font-weight: 700;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .6; }
}

/* Sponsor Packages */
.sponsor-packages {
  background: #1a1a1a;
  color: #fff;
}
.sponsor-packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 768px) {
  .sponsor-packages-grid { grid-template-columns: 1fr 1fr; }
}
.sponsor-packages h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.sponsor-packages .desc {
  color: #999;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.sponsor-features { margin-bottom: 2.5rem; }
.sponsor-features li {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 0;
}
.sponsor-features li .material-symbols-outlined { color: #f27d26; }

.packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.package-card {
  background: #2a2a2a;
  padding: 2rem;
  border-radius: 1.5rem;
  text-align: center;
}
.package-card:nth-child(2),
.package-card:nth-child(4) { margin-top: 2rem; }
.package-card .pkg-name {
  color: #f27d26;
  font-weight: 700;
  margin-bottom: .5rem;
}
.package-card .pkg-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.package-card .pkg-desc {
  font-size: .75rem;
  color: #999;
}

/* ---------- Journey / Timeline ---------- */
.timeline { position: relative; }
.timeline-line {
  display: none;
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 4px;
  background: #f0f0f0;
  transform: translateX(-50%);
}
@media (min-width: 768px) { .timeline-line { display: block; } }

.timeline-events { display: flex; flex-direction: column; gap: 6rem; }

.timeline-event {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .timeline-event { flex-direction: row; }
  .timeline-event.reverse { flex-direction: row-reverse; }
}
.timeline-dot {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem; height: 1.5rem;
  background: #f27d26;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  z-index: 2;
}
@media (min-width: 768px) { .timeline-dot { display: block; } }

.timeline-event .tl-media,
.timeline-event .tl-content {
  flex: 0 0 50%;
  padding: 0;
}
@media (min-width: 768px) {
  .timeline-event .tl-media,
  .timeline-event .tl-content { padding: 0 3rem; }
}
.tl-media .card { overflow: hidden; }
.tl-media .card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform .5s;
}
.tl-media .card:hover img { transform: scale(1.05); }

.tl-content .tl-date {
  color: #f27d26;
  font-weight: 700;
  font-size: .85rem;
  margin-bottom: .5rem;
}
.tl-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.tl-content p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .timeline-event.reverse .tl-content { text-align: right; }
}

/* Video CTA */
.video-cta {
  background: #1a1a1a;
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-top: 8rem;
}
.video-cta .bg-image {
  position: absolute; inset: 0;
  opacity: .2;
}
.video-cta .bg-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.video-cta .inner { position: relative; z-index: 1; }
.video-cta h2 { font-size: 2rem; margin-bottom: 2rem; }
.video-cta p { color: #999; margin-bottom: 3rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.play-btn {
  width: 5rem; height: 5rem;
  background: #f27d26;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform .3s;
}
.play-btn:hover { transform: scale(1.1); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 2fr; }
}

.contact-info-card { padding: 2rem; }
.contact-info-card h3 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info-item .ci-icon {
  width: 2.5rem; height: 2.5rem;
  background: rgba(242,125,38,.1);
  border-radius: .5rem;
  display: flex; align-items: center; justify-content: center;
  color: #f27d26;
  flex-shrink: 0;
}
.contact-info-item .ci-label {
  font-weight: 700;
  font-size: .75rem;
  color: #999;
  text-transform: uppercase;
}
.contact-info-item .ci-value { font-size: 1.1rem; font-weight: 500; }
.social-links { display: flex; gap: 1rem; margin-top: .5rem; }
.social-links a { color: #666; transition: color .3s; }
.social-links a:hover { color: #f27d26; }

.donate-card {
  padding: 2rem;
  background: #f27d26 !important;
  color: #fff;
  margin-top: 2rem;
}
.donate-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.donate-card p { opacity: .9; margin-bottom: 2rem; }
.donate-card .donate-link {
  display: block;
  background: #fff;
  color: #f27d26;
  padding: 1rem;
  border-radius: .75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-align: center;
  transition: opacity .3s;
}
.donate-card .donate-link:hover { opacity: .9; }

/* Contact Form */
.form-card { padding: 2rem; }
@media (min-width: 768px) { .form-card { padding: 3rem; } }
.form-card h3 { font-size: 1.75rem; margin-bottom: 2rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .form-row.half { grid-template-columns: 1fr 1fr; } }
.form-group label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border-radius: .75rem;
  border: 1px solid #e0e0e0;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color .3s, box-shadow .3s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #f27d26;
  box-shadow: 0 0 0 3px rgba(242,125,38,.15);
}
.form-group textarea { resize: none; }

.form-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
}
.form-success .icon { font-size: 3.5rem; color: #22c55e; margin-bottom: 1rem; }
.form-success h4 { font-size: 1.5rem; color: #166534; margin-bottom: .5rem; }
.form-success p { color: #15803d; }

/* ---------- Footer ---------- */
.site-footer {
  background: #1a1a1a;
  color: #fff;
  padding: 4rem 1.5rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto 3rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-brand .logo { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.5rem; }
.footer-brand .logo-icon {
  width: 2.5rem; height: 2.5rem;
  background: #f27d26;
  border-radius: .5rem;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
}
.footer-brand .logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -.04em;
}
.footer-brand p { color: #999; max-width: 400px; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: #2a2a2a;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background .3s;
}
.footer-socials a:hover { background: #f27d26; }

.footer-nav h4,
.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: .75rem; }
.footer-nav a { color: #999; transition: color .3s; }
.footer-nav a:hover { color: #f27d26; }
.footer-contact ul { display: flex; flex-direction: column; gap: .75rem; }
.footer-contact li {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #999;
}
.footer-contact .material-symbols-outlined {
  color: #f27d26;
  font-size: .9rem;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid #2a2a2a;
  text-align: center;
  color: #666;
  font-size: .85rem;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease-out, transform .6s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Section Backgrounds ---------- */
.bg-white { background: #fff; }
.bg-gray { background: #f8f8f8; }
