/* ============================================================
   Deluxe Inn Hawthorne/ LAX — styles.css
   ============================================================ */

:root {
  --green-deep: #123B34;
  --green-footer: #0D2B26;
  --navy: #14418F;
  --navy-dark: #0E3170;
  --gold: #E8A511;
  --gold-bright: #F5B825;
  --gold-dark:#755306;
  --ink: #1F2933;
  --ink-soft: #4A5560;
  --ink-muted: #7A8490;
  --cream: #FBFAF7;
  --cream-dark: #F3F0E8;
  --line: #E7E2D6;
  --line-light: #F0EDE3;
  --white-on-green: #F2EFE6;
  --font-serif: 'Lora', serif;
  --font-sans: 'Public Sans', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
}

img { max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Animations ---------- */
@keyframes kenburns {
  0%   { transform: scale(1); }
  100% { transform: scale(1.08); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--green-deep);
  color: var(--white-on-green);
  font-size: 13px;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 8px;
  padding-bottom: 8px;
}

.topbar__contact {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar__phone {
  color: var(--white-on-green);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.topbar__phone:hover { color: var(--gold); }

.topbar__address {
  display: flex;
  align-items: center;
  gap: 7px;
  opacity: 0.9;
}

.topbar__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
}

.topbar__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  margin-right: 6px;
}

.topbar__sep { opacity: 0.55; }

/* ---------- Header ---------- */
.header {
  background: #FFFFFF;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 14px rgba(18, 59, 52, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top:5px;
  padding-bottom:5px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__logo { height:75px; width: auto; display: block; }

.brand__text { display: flex; flex-direction: column; line-height: 1.15; }

.brand__name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 21px;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.brand__tagline {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.nav__link.is-active { color: var(--ink); }

.btn {
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 12px 26px;
  border-radius: 4px;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease;
  text-align: center;
}

.btn--primary { background: var(--navy); color: #FFFFFF; }
.btn--primary:hover { background: var(--navy-dark); }

.btn--gold {
  background: var(--gold);
  color: #1A1400;
  font-size: 14.5px;
  padding: 15px 34px;
  letter-spacing: 0.05em;
}
.btn--gold:hover { background: var(--gold-bright); }

.btn--ghost {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  font-size: 14.5px;
  padding: 15px 34px;
  letter-spacing: 0.05em;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #FFFFFF;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: 1.5px solid #D8D2C4;
  border-radius: 6px;
  padding: 10px 12px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  min-width: 46px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.hamburger__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.is-open .hamburger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open .hamburger__bar:nth-child(2) { opacity: 0; }
.hamburger.is-open .hamburger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: #FFFFFF;
  border-top: 1px solid var(--line);
  flex-direction: column;
  padding: 8px 20px 18px;
  gap: 2px;
  animation: fadeUp 0.25s ease both;
}

.mobile-nav.is-open { display: flex; }

.mobile-nav__link {
  color: var(--ink);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 13px 4px;
  border-bottom: 1px solid var(--line-light);
}

.mobile-nav .btn { margin-top: 14px; font-size: 15px; padding: 14px 26px; }

/* ---------- Slideshow / Hero ---------- */
.hero {
  position: relative;
  height: 78vh;
  min-height: 480px;
  max-height: 760px;
  overflow: hidden;
  background: var(--green-deep);
}

.hero__slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.hero__slide.is-active { opacity: 1; }

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__slide.is-active img { animation: kenburns 8s ease-out both; }

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg,
    rgba(10, 26, 22, 0.18) 0%,
    rgba(10, 26, 22, 0) 40%,
    rgba(10, 26, 22, 0.28) 100%);
  pointer-events: none;
}

.hero__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

.hero__eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  animation: fadeUp 0.8s ease both;
}

.hero__title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(34px, 5.5vw, 64px);
  line-height: 1.12;
  color: #FFFFFF;
  max-width: 820px;
  text-wrap: balance;
  animation: fadeUp 0.8s ease 0.15s both;
}

.hero__subtitle {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(15px, 1.6vw, 18px);
  max-width: 560px;
  line-height: 1.6;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.8s ease 0.45s both;
}

.hero__dots {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.55);
}

.hero__dot.is-active { width: 26px; background: var(--gold); }

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.hero__arrow:hover { background: rgba(255, 255, 255, 0.3); }
.hero__arrow--prev { left: 18px; }
.hero__arrow--next { right: 18px; }

/* ---------- Sections (shared) ---------- */
.section { padding: 96px 20px; }

.section__eyebrow {
  margin: 0 0 12px;

  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.section__title {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.18;
  color: var(--green-deep);
  text-wrap: balance;
}

.section__intro {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

.section__head--center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

/* ---------- Welcome ---------- */
.welcome__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px;
  align-items: center;
}

.welcome__text p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.75;

}

.welcome__more {
  display: none;
}

.welcome__more.is-open {
  display: block;
  animation: fadeUp 0.3s ease both;
}

.readmore {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0 0 28px;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.readmore:hover { color: var(--navy-dark); }

.readmore__chevron {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.25s ease;
  transform: rotate(90deg);
}

.readmore.is-open .readmore__chevron { transform: rotate(-90deg); }

.welcome__stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat__value {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
}

.stat__value small { font-size: 17px; font-weight: 600; }

.stat__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.welcome__media { position: relative; }

.welcome__photo {
  width: 100%;
  display: block;
  border-radius: 6px;
  box-shadow: 0 24px 48px rgba(18, 59, 52, 0.18);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.welcome__quote {
  position: absolute;
  left: -14px;
  bottom: -24px;
  background: var(--green-deep);
  color: var(--white-on-green);
  border-radius: 6px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 28px rgba(18, 59, 52, 0.25);
}

.welcome__quote-text { display: flex; flex-direction: column; line-height: 1.3; }
.welcome__quote-text strong { font-weight: 700; font-size: 15px; }
.welcome__quote-text span { font-size: 12.5px; opacity: 0.75; }

/* ---------- Amenities ---------- */
.amenities { background: var(--green-deep); }

.amenities .section__title { color: #FFFFFF; }
.amenities .section__eyebrow { color: var(--gold); }
.amenities .section__intro { color: rgba(242, 239, 230, 0.75); }

.amenities__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  column-gap: 56px;
  row-gap: 0;
}

.amenity {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: padding-left 0.25s ease;
}

.amenity:hover { padding-left: 8px; }

.amenity__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(232, 165, 17, 0.14);
  border: 1px solid rgba(232, 165, 17, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.amenity__body { display: flex; flex-direction: column; gap: 5px; }

.amenity__body h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: #FFFFFF;
}

.amenity__body p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(242, 239, 230, 0.7);
}

/* ---------- Rooms ---------- */
.rooms__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.rooms__link {
  color: var(--navy);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
}

.rooms__link:hover { color: var(--navy-dark); }

.rooms__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}

.room-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.room-card:hover {
  box-shadow: 0 18px 38px rgba(18, 59, 52, 0.14);
  transform: translateY(-4px);
}

.room-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.room-card__body { padding: 22px 24px 26px; }

.room-card__body h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--green-deep);
}

.room-card__body p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ---------- Attractions ---------- */
.attractions {
  background: #FFFFFF;
  border-top: 1px solid var(--line);
}

.attractions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.attraction {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.attraction:hover {
  box-shadow: 0 14px 30px rgba(18, 59, 52, 0.1);
  transform: translateY(-3px);
  border-color: var(--gold);
}

.attraction__type {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color:#345B9E;
}

.attraction h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--green-deep);
}

.attraction__distance {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

/* ---------- FAQ ---------- */
.faq { background: var(--cream-dark); }

.faq__wrap { max-width: 820px; margin: 0 auto; }

.faq__head { text-align: center; margin-bottom: 48px; }

.faq__head a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.faq__list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: #FFFFFF;
  border-radius: 6px;
  border: 1px solid var(--line);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.faq-item.is-open {
  border-color: var(--gold);
  box-shadow: 0 10px 26px rgba(18, 59, 52, 0.1);
}

.faq-item__q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: var(--font-sans);
}

.faq-item__q span:first-child {
  font-size: 16px;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.4;
}

.faq-item__chevron {
  font-size: 22px;
  color: var(--gold-dark);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s ease;
  transform: rotate(90deg);
}

.faq-item.is-open .faq-item__chevron { transform: rotate(-90deg); }

.faq-item__a {
  display: none;
  padding: 0 22px 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.faq-item.is-open .faq-item__a {
  display: block;
  animation: fadeUp 0.25s ease both;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--green-footer);
  color: var(--white-on-green);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 44px;
  padding-top: 72px;
  padding-bottom: 48px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer__logo {
  height:82px;
  width: auto;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 4px;
}

.footer__brand-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.2;
}

.footer__blurb {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(242, 239, 230, 0.7);
}

.footer h4 {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(242, 239, 230, 0.85);
}

.footer__col a {
  color: rgba(242, 239, 230, 0.85);
  text-decoration: none;
}

.footer__col a:hover { color: var(--gold); }

/* Footer list icons */
.footer__li-icon {
  color: var(--gold);
  font-size: 12px;
  width: 18px;
  display: inline-block;
}

.footer__bullet {
  color: var(--gold);
  font-size: 6px;
  width: 18px;
  display: inline-block;
  vertical-align: middle;
}

.footer__col a .footer__li-icon {
  transition: transform 0.2s ease;
}

.footer__col a:hover .footer__li-icon {
  transform: translateX(4px);
}

/* Footer social icons */
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(242, 239, 230, 0.08);
  border: 1px solid rgba(242, 239, 230, 0.25);
  color: var(--white-on-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer__social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #1A1400;
  transform: translateY(-3px);
}

.footer__col a.footer__phone {
  color: var(--white-on-green);
  font-weight: 600;
}

.footer__legal {
  border-top: 1px solid rgba(242, 239, 230, 0.15);
}

.footer__legal-inner {
  padding-top: 26px;
  padding-bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(242, 239, 230, 0.6);
}

.footer__legal a { color: rgba(242, 239, 230, 0.8); }
.footer__legal a:hover { color: var(--gold); }

.footer__assist {
  color: rgba(242, 239, 230, 0.85);
  font-weight: 500;
}

.footer__assist a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}

.footer__legal .footer__credit {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  color: #1A1400;
  border: none;
  cursor: pointer;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  display: none;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
  animation: fadeUp 0.3s ease both;
}

.back-to-top.is-visible { display: flex; }

.back-to-top:hover {
  transform: translateY(-3px);
  background: var(--gold-bright);
}

/* ---------- Scroll reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__slide.is-active img { animation: none; }
}

/* ---------- Icons (SVG in CSS) ---------- */
.icon {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.icon--phone {
  width: 13px;
  height: 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23F2EFE6'%3E%3Cpath d='M6.62 10.79a15.05 15.05 0 006.59 6.59l2.2-2.2a1 1 0 011.02-.24 11.4 11.4 0 003.57.57 1 1 0 011 1V20a1 1 0 01-1 1A17 17 0 013 4a1 1 0 011-1h3.5a1 1 0 011 1 11.4 11.4 0 00.57 3.57 1 1 0 01-.24 1.02l-2.21 2.2z'/%3E%3C/svg%3E");
}

.icon--pin {
  width: 13px;
  height: 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23F2EFE6'%3E%3Cpath d='M12 2a7 7 0 00-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 00-7-7zm0 9.5A2.5 2.5 0 1112 6a2.5 2.5 0 010 5.5z'/%3E%3C/svg%3E");
}

.icon--star {
  width: 26px;
  height: 26px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E8A511'%3E%3Cpath d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E");
}

.icon--wifi {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E8A511'%3E%3Cpath d='M12 6C8.62 6 5.5 7.12 3 9l9 12 9-12c-2.5-1.88-5.62-3-9-3zm0-4C7.31 2 3.07 3.9 0 6.98L2.24 9.7C4.83 7.41 8.24 6 12 6s7.17 1.41 9.76 3.7L24 6.98C20.93 3.9 16.69 2 12 2z' transform='translate(0,1)'/%3E%3C/svg%3E");
}

.icon--car {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E8A511'%3E%3Cpath d='M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8a1 1 0 001 1h1a1 1 0 001-1v-1h12v1a1 1 0 001 1h1a1 1 0 001-1v-8l-2.08-5.99zM6.5 15A1.5 1.5 0 118 13.5 1.5 1.5 0 016.5 15zm11 0a1.5 1.5 0 111.5-1.5 1.5 1.5 0 01-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z'/%3E%3C/svg%3E");
}

.icon--clock {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E8A511'%3E%3Cpath d='M12 2a10 10 0 1010 10A10 10 0 0012 2zm4.2 14.2L11 13V7h1.5v5.2l4.5 2.7z'/%3E%3C/svg%3E");
}

.icon--climate {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E8A511'%3E%3Cpath d='M22 11h-1V9a4 4 0 00-4-4H7a4 4 0 00-4 4v2H2a1 1 0 000 2h1v6a1 1 0 001 1h1a1 1 0 001-1v-1h12v1a1 1 0 001 1h1a1 1 0 001-1v-6h1a1 1 0 000-2zM5 9a2 2 0 012-2h10a2 2 0 012 2v2H5z'/%3E%3C/svg%3E");
}

.icon--tv {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E8A511'%3E%3Cpath d='M21 3H3a1 1 0 00-1 1v12a1 1 0 001 1h7v2H8a1 1 0 000 2h8a1 1 0 000-2h-2v-2h7a1 1 0 001-1V4a1 1 0 00-1-1zm-1 12H4V5h16z'/%3E%3C/svg%3E");
}

.icon--shield {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E8A511'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11z'/%3E%3C/svg%3E");
}

.icon--bell {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E8A511'%3E%3Cpath d='M4 22h16a1 1 0 001-1v-2H3v2a1 1 0 001 1zM21 10a8.94 8.94 0 00-8-8.94V0h-2v1.06A8.94 8.94 0 003 10v7h18zm-9-7a7 7 0 016.92 6H5.08A7 7 0 0112 3z' transform='translate(0,1) scale(0.95)'/%3E%3C/svg%3E");
}

.icon--staff {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E8A511'%3E%3Cpath d='M12 12a5 5 0 100-10 5 5 0 000 10zm0 2c-4.42 0-8 2.24-8 5v3h16v-3c0-2.76-3.58-5-8-5z' transform='scale(0.95) translate(0.5,0.5)'/%3E%3C/svg%3E");
}

/* ---------- Responsive ---------- */
@media (max-width: 899px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .section { padding: 72px 20px; }
  .footer__grid { padding-top: 56px; }
}

@media (min-width: 900px) {
  .mobile-nav { display: none !important; }
}
