/* ============================================================
   Stayrrific — 100% replication of the 2017 Avada one-pager
   Palette: orange #f26831 | yellow #f7ce4d | teal #359aa8 /
   light teal #94d5d6 | charcoal #3a3a3a
   Fonts: Montserrat (headings) + Open Sans (body)
   ============================================================ */

:root {
  --orange: #f26831;
  --yellow: #f7ce4d;
  --teal:   #359aa8;
  --teal-light: #94d5d6;
  --charcoal: #3a3a3a;
  --grey-5:  #e5e5e5;
  --grey-6:  #5c5c5c;
  --font-head: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  line-height: 1.7;
  background: #fff;
}

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

.container { max-width: 1170px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
  text-align: center;
  padding: 14px 38px;
  border: none;
  cursor: pointer;
  transition: opacity .2s ease, transform .2s ease;
}
.btn--yellow { background: var(--yellow); color: #fff; }
.btn--dark   { background: var(--charcoal); color: #fff; }
.btn:hover   { opacity: .88; transform: translateY(-1px); }
.btn:disabled{ opacity: .5; cursor: not-allowed; transform: none; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,.07);
  z-index: 1000;
}
.header-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
.logo-link {
  display: inline-block;
  line-height: 0;
}
.logo-link img { max-height: 56px; width: auto; }

.main-nav ul { list-style: none; display: flex; gap: 34px; }
.main-nav a {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.main-nav a:hover { color: var(--teal); }
.main-nav a.is-active { color: var(--teal); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}
.hero-slide--active { opacity: 1; }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.hero-overlay {
  background: rgba(102,102,102,0.46);
  padding: 50px 40px;
  text-align: center;
}
.hero h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.15;
  color: #fff;
  text-shadow: 1px 2px 3px rgba(0,0,0,.4);
}
.hero-sub {
  color: #fff;
  font-size: clamp(16px, 1.6vw, 20px);
  margin: 18px 0 34px;
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
}
.hero .btn { margin-top: 6px; }

/* ---------- Section base ---------- */
section { scroll-margin-top: 90px; }

/* ---------- What We Do ---------- */
.what-we-do { padding: 80px 0 0; }
.what-we-do h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 42px);
  text-align: center;
  color: var(--charcoal);
  margin-bottom: 18px;
}
.what-we-do h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  background: var(--teal-light);
  margin: 0 auto;
}
.what-we-do .intro {
  max-width: 780px;
  margin: 0 auto 30px;
  text-align: center;
  font-size: 17px;
  color: #4a4a4a;
}

/* services teal band */
.services { background: var(--teal-light); padding: 70px 0 80px; margin-top: 50px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}
.service { text-align: center; }
.service img { margin: 0 auto 22px; width: 96px; height: 96px; object-fit: contain; }
.service h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 24px;
  color: #fff;
  margin-bottom: 12px;
}
.service p { color: #fff; font-size: 15px; text-align: left; }

/* ---------- How It Works ---------- */
.how-it-works { padding: 80px 0; background: #f5f5f5; }
.hiw-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}
.hiw-heading h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(44px, 4.6vw, 56px);
  line-height: 1.05;
  text-transform: uppercase;
  color: #2a2a2a;
  margin-bottom: 28px;
}
.hiw-steps { display: grid; gap: 40px; }
.step-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 54px;
  line-height: 1;
  color: #e8b844;
}
.step h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  color: var(--charcoal);
  margin: 10px 0 8px;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
  text-decoration-color: var(--yellow);
}
.step p { font-size: 15px; color: #4a4a4a; }
.step p + p { margin-top: 10px; }

/* ---------- Our Partners ---------- */
.our-partners { padding: 90px 0; background: #fff; }
.our-partners h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 40px);
  text-align: center;
  color: var(--charcoal);
  margin-bottom: 48px;
}
.partners-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: nowrap;
}
.partners-row img { height: 76px; width: auto; }

/* ---------- Contact ---------- */
.contact { background: var(--orange); padding: 90px 0 100px; }
.contact-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(34px, 4vw, 48px);
  color: #fff;
  margin-bottom: 14px;
}
.contact-divider {
  height: 4px;
  background: #fff;
  max-width: 90%;
  margin: 50px auto 40px;
  border: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: start;
}
.offices { display: grid; gap: 34px; }
.office h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin-bottom: 6px;
}
.office p { color: #fff; font-size: 15px; }
.office a { color: #fff; text-decoration: none; }
.office a:hover { text-decoration: underline; }

.contact-form .field { margin-bottom: 20px; }
.contact-form label {
  display: block;
  font-size: 14px;
  color: #fff;
  margin-bottom: 6px;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--charcoal);
  background: #fff;
  border: 1px solid #fff;
  border-radius: 0;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--yellow); }
.contact-form textarea { resize: vertical; min-height: 120px; }

.hp-field { position: absolute; left: -9999px; }

.form-status { margin-top: 14px; font-size: 14px; color: #fff; min-height: 20px; }
.form-status.err { color: #ffe9e9; }

/* Turnstile widget sizing */
.cf-turnstile { margin-bottom: 18px; }

/* ---------- Follow Us ---------- */
.follow-us {
  background: url('/assets/followus.jpg') center / cover no-repeat;
  padding: 110px 0;
  text-align: center;
}
.follow-inner { max-width: 640px; margin: 0 auto; }
.social-row { display: flex; justify-content: center; gap: 28px; margin-bottom: 26px; }
.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  background: #fff;
  border-radius: 50%;
  transition: transform .2s ease, box-shadow .2s ease;
}
.social svg { width: 26px; height: 26px; fill: var(--yellow); }
.social:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,.25); }
.follow-us h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .08em;
  color: var(--charcoal);
}

/* ---------- Footer ---------- */
.site-footer {
  background: rgba(20,20,20,.85);
  padding: 18px 0;
}
.footer-inner {
  font-size: 13px;
  color: rgba(255,255,255,.85);
  text-align: center;
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px; height: 44px;
  background: rgba(28,28,28,.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: background .2s ease;
}
.to-top svg { width: 22px; height: 22px; fill: #fff; }
.to-top.show { display: flex; }
.to-top:hover { background: #000; }

/* ---------- Mobile nav ---------- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: transform .25s ease, opacity .25s ease;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hiw-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-row img { height: 64px; }

  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 90px; left: 0; right: 0;
    background: #fff;
    box-shadow: 0 8px 18px rgba(0,0,0,.12);
    display: none;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 12px 24px 20px; }
  .main-nav li { border-bottom: 1px solid var(--grey-5); }
  .main-nav li:last-child { border-bottom: none; }
  .main-nav a { display: block; padding: 14px 0; }
}
@media (max-width: 640px) {
  .header-inner { height: 72px; }
  .main-nav { top: 72px; }
  .logo-link img { max-height: 44px; }
  .hero { min-height: 70vh; }
  .hero-content { padding: 110px 24px 70px; }
  .services-grid { grid-template-columns: 1fr; }
  .partners-row { flex-direction: column; gap: 36px; }
  .partners-row img { height: 72px; }
  .contact { padding: 70px 0 80px; }
  .follow-us { padding: 80px 0; }
}
