/* Breakthrough Travel – modeled on theoverweb.wixsite.com/breaktravel */

:root {
  --red: #ed1c24;
  --red-hover: #ff3d3d;
  --gold: #ffc824;
  --gold-deep: #e8c061;
  --ink: #2a2a2a;
  --ink-deep: #212121;
  --white: #ffffff;
  --muted: #727272;
  --display: "Oswald", "Arial Narrow", sans-serif;
  --body: "Barlow", "Helvetica Neue", Arial, sans-serif;
  --max: 1080px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--ink-deep);
  color: var(--white);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(42, 42, 42, 0.97);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: calc(var(--max) + 5rem);
  height: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.brand {
  color: var(--white);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem 1.25rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold);
}

@media (max-width: 900px) {
  .nav-links a:not(.brand) {
    display: none;
  }
}

/* Hero */

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: calc(var(--header-h) + 2rem) 1.5rem 4.5rem;
  color: var(--white);
  background: #000;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.48) 55%, rgba(0, 0, 0, 0.62) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.hero h1 {
  margin: 0 0 1rem;
  max-width: 12ch;
  font-family: var(--display);
  font-size: clamp(2.6rem, 7.2vw, 4.8rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 36rem;
  margin: 0 0 1.75rem;
  font-size: clamp(1.2rem, 2.6vw, 2.65rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.28;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  z-index: 1;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-hint span {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.1rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.35rem;
  border: 0;
  border-radius: 0;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn-block {
  width: 100%;
}

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

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--red-hover);
  transform: translateY(-1px);
}

.btn-muted {
  background: #e8e8e8;
  color: #666;
  cursor: default;
}

/* Sections */

.section {
  padding: 4.5rem 1.5rem;
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-title {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  text-transform: uppercase;
}

.section-title-center {
  text-align: center;
}

.section-title-light {
  color: var(--white);
}

.section-title-gold {
  color: var(--gold);
}

/* About */

.section-about {
  background: var(--white);
}

.about-inner {
  text-align: center;
}

.about-copy {
  max-width: 52rem;
  margin: 0 auto 2.5rem;
}

.about-copy p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.65;
}

.about-media {
  margin: 2.5rem 0 0;
  overflow: hidden;
}

.about-media figure,
figure.about-media {
  margin: 0;
}

.about-media img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-media.is-visible img {
  transform: scale(1);
}

/* Scroll reveal */

.reveal {
  opacity: 0;
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-up {
  transform: translateY(2.25rem);
}

.reveal-left {
  transform: translateX(-2.25rem);
}

.reveal-right {
  transform: translateX(2.25rem);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.service-image-link.reveal img {
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-image-link.reveal.is-visible:hover img,
.service-image-link.reveal.is-visible:focus-within img {
  transform: scale(1.03);
}

/* Shifts */

.section-shifts {
  position: relative;
  padding: 5rem 1.5rem;
  color: var(--white);
  overflow: hidden;
}

.shifts-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shifts-overlay {
  position: absolute;
  inset: 0;
  background: rgba(33, 33, 33, 0.72);
}

.shifts-inner {
  position: relative;
  z-index: 1;
}

.section-shifts .section-title {
  max-width: 16ch;
  margin-bottom: 1.5rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
}

.shift-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.shift-list li {
  margin: 0.35rem 0;
  font-size: 1.2rem;
  line-height: 1.4;
}

/* Services */

.section-services {
  background: #f3f3f3;
}

.services-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 2rem;
}

.services-head .section-title {
  margin: 0;
}

.view-all {
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.view-all:hover,
.view-all:focus-visible {
  color: var(--red);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-image-link {
  display: block;
  text-decoration: none;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.15rem 1.15rem 1.35rem;
}

.service-body h3 {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-lede {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
}

.service-note {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.service-note a {
  color: var(--red);
  font-weight: 600;
}

.service-divider {
  margin: 1rem 0;
  border: 0;
  border-top: 1px solid #e0e0e0;
}

.service-body .btn {
  margin-top: auto;
}

.badge {
  display: inline-block;
  margin-right: 0.35rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  vertical-align: middle;
}

.badge-live {
  color: #0d3d1f;
  background: rgba(34, 160, 80, 0.18);
}

.badge-soon {
  color: #4a3200;
  background: rgba(255, 200, 36, 0.45);
}

@media (max-width: 960px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Testimonial */

.section-testimonial {
  background: var(--gold-deep);
  color: var(--ink-deep);
}

.quote-block {
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
}

.quote-block p {
  margin: 0;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
}

.quote-attribution {
  margin-top: 1rem !important;
  font-style: normal !important;
  font-size: 0.95rem !important;
  font-weight: 700;
}

/* Contact */

.section-contact {
  background: var(--ink-deep);
  color: var(--white);
  text-align: center;
}

.contact-inner .section-title {
  margin-bottom: 0.75rem;
}

.contact-mail {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
}

.contact-mail a {
  color: var(--gold);
  text-decoration: none;
}

.contact-mail a:hover,
.contact-mail a:focus-visible {
  text-decoration: underline;
}

/* Footer */

.site-footer {
  padding: 2rem 1.5rem 2.5rem;
  background: var(--ink-deep);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0.35rem 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-top: 0.75rem;
}
