.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--gold);
  color: var(--brown-deep);
  padding: 8px 12px;
  z-index: 100;
}

.skip-link:focus {
  top: 8px;
}

.site-header {
  background: #fff;
  border-bottom: 10px solid var(--brown);
  position: relative;
  z-index: 20;
}

.header-bar {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  display: block;
  width: 188px;
  height: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop a {
  display: block;
  padding: 8px 27px;
  color: var(--gold);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--brown);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--gold);
  font: 700 16px/1 var(--font);
  cursor: pointer;
  padding: 8px;
}

.nav-toggle svg {
  display: block;
}

.mobile-panel {
  display: none;
}

.mobile-panel.is-open {
  display: block;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 40;
  padding: 28px 24px;
}

.mobile-panel-head {
  display: flex;
  justify-content: flex-end;
}

.mobile-close {
  border: 0;
  background: transparent;
  color: var(--gold);
  font: 600 16px/1 var(--font);
  cursor: pointer;
}

.mobile-panel ul {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}

.mobile-panel a {
  display: block;
  padding: 14px 0;
  color: var(--gold);
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
  border-bottom: 1px solid #eee;
}

.page-header {
  background: #fff;
  text-align: center;
  padding: 36px 16px 18px;
}

.page-header h1 {
  margin: 0;
  font-family: var(--font-title);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--brown-title);
}

.hero {
  position: relative;
  background: #fff;
  overflow: hidden;
}

.hero-track {
  display: flex;
  width: 100%;
  transition: transform 0.55s ease;
}

.hero-slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: block;
  line-height: 0;
}

.hero-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 875;
  object-fit: cover;
  display: block;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 64px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  z-index: 2;
  padding: 0;
}

.hero-arrow svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}

.hero-arrow.prev { left: 10px; }
.hero-arrow.next { right: 10px; }

.home-about {
  background: var(--cream);
  padding: 120px 0;
}

.home-about-inner {
  width: min(600px, calc(100% - 40px));
  margin: 0 auto;
  text-align: justify;
}

.home-about h1 {
  margin: 0 0 18px;
  text-align: left;
  font-size: 35px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--brown-deep);
  text-transform: capitalize;
}

.home-about p {
  margin: 0 0 16px;
}

.btn-pill {
  display: inline-block;
  margin-top: 24px;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 15px 30px;
  border-radius: 30px;
  border: 0;
  cursor: pointer;
  transition: background 0.4s;
}

.btn-pill:hover {
  background: var(--brown-deep);
  color: #fff;
}

.prose {
  width: min(960px, calc(100% - 48px));
  margin: 10px auto 40px;
  color: var(--text);
}

.prose p {
  margin: 0 0 16px;
}

.band {
  background: var(--brown);
  color: #fff;
  padding: 28px 0 18px;
}

.band-inner {
  width: min(960px, calc(100% - 48px));
  margin: 0 auto;
}

.band h2 {
  margin: 8px 0 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-left: 3px solid var(--gold);
  padding-left: 10px;
}

.band p {
  margin: 0 0 14px;
}

.pillars {
  width: min(980px, calc(100% - 40px));
  margin: 28px auto 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 28px;
}

.pillar {
  text-align: center;
  color: var(--brown);
}

.pillar svg {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
}

.pillar p {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.35;
  text-transform: uppercase;
}

.products {
  width: min(1140px, calc(100% - 36px));
  margin: 10px auto 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  row-gap: 50px;
}

.product {
  text-align: center;
  color: #303030;
}

.product h2 {
  margin: 0 0 14px;
  text-align: left;
  display: block;
  width: fit-content;
  color: var(--product);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: capitalize;
  border-left: 3px solid var(--gold);
  padding-left: 10px;
}

.product img {
  width: 300px;
  max-width: 100%;
  height: auto;
  border-radius: 30px;
  display: block;
  margin: 0 auto 12px;
}

.product p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.reseller {
  background: var(--reseller);
  color: #fff;
  text-align: center;
  margin: 10px 0 0;
  padding: 22px 16px 16px;
  border: 1px solid var(--brown);
  border-radius: 10px;
}

.reseller p {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
}

.reseller span {
  color: var(--reseller-accent);
}

.reseller-wrap {
  width: min(1200px, calc(100% - 24px));
  margin: 20px auto 0;
}

.map-block {
  width: min(980px, calc(100% - 40px));
  margin: 8px auto 36px;
  text-align: center;
}

.map-block iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

.map-block p {
  margin: 22px 0 16px;
  font-weight: 700;
  color: var(--brown-deep);
  font-size: 16px;
}

.map-block a {
  color: var(--brown-deep);
}

.waze-btn {
  display: inline-block;
  line-height: 0;
}

.waze-btn img {
  width: 120px;
  height: auto;
  border-radius: 16px;
}

.contact-wrap {
  width: min(720px, calc(100% - 48px));
  margin: 8px auto 48px;
  color: var(--brown-deep);
}

.contact-wrap h2 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--brown-deep);
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
}

.contact-line svg,
.contact-line img {
  width: 18px;
  height: 18px;
  flex: none;
}

.contact-line a {
  color: var(--brown-deep);
}

.contact-form {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.contact-form .btn-pill {
  margin-top: 4px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  background: var(--brown-deep);
  color: #fff;
  border: 0;
  padding: 12px 14px;
  font: 14px/1.5 var(--font);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-feedback {
  min-height: 1.2em;
  margin: 0;
}

.site-footer {
  background: var(--brown);
  color: #fff;
  margin-top: 0;
}

.footer-grid {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  padding: 42px 0 28px;
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 1.1fr;
  gap: 28px 40px;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
}

.site-footer p {
  margin: 0 0 12px;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-more {
  display: inline-block;
  margin-top: 6px;
  letter-spacing: 0.04em;
}

.social-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 22px 0 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
}

.social-title i {
  width: 3px;
  height: 16px;
  background: var(--gold);
  display: inline-block;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
}

.socials a.fb { background: #3b5998; }
.socials a.ig { background: #e4405f; }

.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.footer-menu a {
  display: block;
  padding: 10px 0;
}

.footer-contact p {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact svg,
.footer-contact img {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  flex: none;
}

.footer-bottom {
  background: var(--footer-bar);
  text-align: center;
  padding: 18px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-bottom a {
  color: var(--gold);
}

.footer-bottom a:hover {
  color: #fff;
}

.scroll-top {
  position: fixed;
  left: 8px;
  bottom: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  background: #2b2b2b;
  color: #fff;
  cursor: pointer;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
}

.scroll-top.is-on {
  display: flex;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
}

.wa-float a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
  .hero-arrow { display: none; }
  .products { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pillar p { font-size: 18px; }
}

@media (max-width: 780px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-bar { min-height: 78px; }
  .logo img { width: 150px; }
  .home-about { padding: 50px 0; }
  .home-about-inner { width: min(100% - 32px, 640px); text-align: left; }
  .home-about h1 { font-size: 32px; }
  .page-header h1 { font-size: 34px; }
  .products { grid-template-columns: 1fr; row-gap: 36px; }
  .product h2 { display: inline-block; }
  .pillars { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; padding-top: 32px; }
  .contact-wrap,
  .prose,
  .band-inner,
  .map-block { width: min(100% - 32px, 720px); }
  .map-block iframe { height: 320px; }
  .reseller p { font-size: 18px; }
}
