/* Sunbed Hire regional template
   Swap city/phone/email in HTML only. This file is shared. */

:root {
  --navy: #0b1f33;
  --navy-2: #123047;
  --gold: #e4a01a;
  --gold-2: #f3c14b;
  --sand: #f7f1e8;
  --cream: #fffaf3;
  --ink: #1a2430;
  --muted: #5c6773;
  --line: #e4d9c8;
  --white: #ffffff;
  --danger: #c1121f;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 31, 51, 0.12);
  --max: 1120px;
  --header-h: 64px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Outfit", system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  font-size: 17px;
}

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

a { color: inherit; }

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  color: var(--white);
  min-height: var(--header-h);
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: var(--header-h);
  padding: 8px 0;
}

.brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.brand-kicker {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
}

.brand-name {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  border-radius: 999px;
  padding: 11px 16px;
  line-height: 1;
}

.btn-call {
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  min-height: 44px;
}

.btn-call:active { transform: scale(.98); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-lg {
  min-height: 52px;
  padding: 14px 22px;
  font-size: 16px;
  width: 100%;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.2);
  background: var(--navy-2);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: white;
}

.nav-panel {
  display: none;
  background: var(--navy-2);
  border-top: 1px solid rgba(255,255,255,.08);
}

.nav-panel.open { display: block; }

.nav-panel a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-weight: 600;
}

.nav-panel a.is-active,
.nav-panel a:active {
  color: var(--gold-2);
}

.nav-desk { display: none; }

/* Hero — full-width image with copy over the top */
.hero {
  position: relative;
  color: white;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg,
.hero-bg picture,
.hero-bg img,
.hero-bg .ph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  object-fit: cover;
  object-position: center 28%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,31,51,.35) 0%, rgba(11,31,51,.55) 40%, rgba(11,31,51,.88) 100%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 28px 0 36px;
  max-width: 760px;
  margin-left: max(16px, calc((100% - var(--max)) / 2));
  margin-right: 16px;
  width: calc(100% - 32px);
}

.ph {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  color: white;
  background:
    linear-gradient(160deg, #1d6ea8 0%, #0b1f33 70%);
}

.ph small {
  display: block;
  opacity: .8;
  font-size: 13px;
  margin-top: 6px;
}

.hero h1 {
  font-size: clamp(1.7rem, 6vw, 2.6rem);
  line-height: 1.12;
  margin: 0 0 10px;
  letter-spacing: -.02em;
}

.hero p.lede {
  margin: 0 0 18px;
  color: #d7e2ec;
  font-size: 1.05rem;
}

.hero-ctas {
  display: grid;
  gap: 10px;
}

.hero-points {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 15px;
}

/* Sections */
.section { padding: 28px 0; }

.section h2 {
  font-size: 1.45rem;
  margin: 0 0 10px;
  letter-spacing: -.02em;
}

.muted { color: var(--muted); }

.card-grid {
  display: grid;
  gap: 14px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card-media {
  aspect-ratio: 16 / 9;
  background: #c9a36a;
}

.card-media .ph,
.card-media img {
  height: 100%;
  object-fit: cover;
}

.card-body { padding: 16px; }

.card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.card p { margin: 0 0 14px; }

.how {
  display: grid;
  gap: 10px;
  counter-reset: step;
}

.how li {
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 14px 14px 56px;
  position: relative;
}

.how { padding: 0; margin: 16px 0 0; }

.how li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 12px;
  top: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-2);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.chip {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
}

.callout {
  background: var(--navy);
  color: white;
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
}

.callout h2 { color: white; }
.callout p { color: #d7e2ec; }

.faq details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 8px;
}

.faq summary {
  font-weight: 700;
  cursor: pointer;
}

.faq p { margin: 8px 0 0; color: var(--muted); }

.site-footer {
  background: var(--navy);
  color: #c9d5e0;
  padding: 28px 0 90px;
  font-size: 14px;
}

.site-footer a { color: var(--gold-2); }
.site-footer h3 { color: white; margin: 0 0 8px; font-size: 16px; }
.foot-grid { display: grid; gap: 18px; }

.sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(11,31,51,.94);
  backdrop-filter: blur(8px);
}

/* Desktop */
@media (min-width: 880px) {
  .menu-toggle { display: none; }
  .nav-panel { display: none !important; }

  .nav-desk {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 10px;
    justify-content: flex-end;
  }

  .nav-desk a {
    color: #e8eef4;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 6px;
  }

  .nav-desk a.is-active { color: var(--gold-2); }

  .header-inner {
    display: grid;
    grid-template-columns: 220px 1fr auto;
    gap: 16px;
  }

  .hero {
    min-height: min(78vh, 680px);
    align-items: center;
  }

  .hero-copy {
    padding: 64px 0;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(11,31,51,.82) 0%, rgba(11,31,51,.55) 48%, rgba(11,31,51,.2) 100%);
  }

  .hero-bg img {
    object-position: 70% center;
  }

  .hero-ctas {
    grid-template-columns: auto auto;
    width: max-content;
  }

  .btn-lg { width: auto; }

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

  .how {
    grid-template-columns: 1fr;
  }

  .foot-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .sticky-call { display: none; }

  .site-footer { padding-bottom: 36px; }

  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
  }
}
