@import url('https://fonts.cdnfonts.com/css/biro-script-plus');

:root {
  color-scheme: dark;
  --black: #000000;
  --white: #ffffff;
  --yellow: #ffbc00;
  --gray: #454545;
  --silver: #cbccc9;
  --text-muted: rgba(255, 255, 255, 0.72);
  --line: rgba(203, 204, 201, 0.22);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  --page-bg: #000000;
  --section-bg: #000000;
  --card-bg: rgba(69, 69, 69, 0.34);
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--page-bg);
  color: var(--white);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
}

body.light-mode {
  color-scheme: light;
  --page-bg: #ffffff;
  --section-bg: #ffffff;
  --text-muted: rgba(0, 0, 0, 0.68);
  --line: rgba(69, 69, 69, 0.2);
  --card-bg: rgba(203, 204, 201, 0.42);
  color: var(--black);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
.btn {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid rgba(255, 188, 0, 0.18);
  backdrop-filter: blur(16px);
}

body.light-mode .site-header {
  background: rgba(255, 255, 255, 0.92);
}

.header-inner,
.section-inner,
.footer-inner,
.location-inner,
.hero-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.15rem 0;
}

.header-inner {
  flex-wrap: wrap;
}

.brand-slogan {
  display: inline-flex;
  align-items: center;
  width: auto;
  color: #ffbc00;
  font-family: "Biro Script Plus", "Biro Script", "Brush Script MT", cursive;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  filter: drop-shadow(0 7px 10px rgba(0, 0, 0, 0.34));
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.9rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  padding: 0.35rem 0;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0;
  transition: color 0.2s ease;
}

body.light-mode .site-nav a {
  color: var(--black);
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.22s ease;
}

.site-nav a:hover {
  color: var(--yellow);
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  min-height: calc(100vh - 76px);
  padding: 5rem 0 3rem;
}

.hero-grid {
  align-items: center;
  min-height: 58vh;
}

.hero-copy {
  max-width: 690px;
  display: flex;
  flex-direction: column;
  gap: 1.55rem;
}

.eyebrow {
  width: fit-content;
  margin: 0;
  padding: 0.2rem 0.65rem;
  color: var(--black);
  background: var(--yellow);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 12ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

body.light-mode .hero-copy h1,
body.light-mode .section-header h2,
body.light-mode .location-details h2 {
  color: var(--black);
}

.hero-description {
  max-width: 640px;
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-panel {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-logo-card {
  width: min(470px, 100%);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: clamp(0.5rem, 2vw, 1rem);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-logo-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  animation: logoGradientFlow 4.4s ease-in-out infinite;
  filter:
    saturate(1.35)
    contrast(1.18)
    drop-shadow(0 22px 18px rgba(0, 0, 0, 0.68))
    drop-shadow(0 0 22px rgba(255, 188, 0, 0.52));
}

body.light-mode .hero-logo-image {
  filter:
    saturate(1.25)
    contrast(1.12)
    drop-shadow(0 18px 18px rgba(0, 0, 0, 0.24))
    drop-shadow(0 0 16px rgba(255, 188, 0, 0.45));
}

.hero-services {
  padding-top: 2rem;
}

.hero-panel-card {
  width: 100%;
  padding: 1.25rem;
  background: var(--card-bg);
  border: 1px solid rgba(255, 188, 0, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel-card span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--yellow);
  font-family: "Arial Black", "Trebuchet MS", Arial, sans-serif;
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel-card ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel-card li {
  min-height: 100%;
  padding: 1rem;
  color: var(--white);
  background: rgba(0, 0, 0, 0.52);
  border-left: 4px solid var(--yellow);
  border-radius: 6px;
  font-weight: 700;
  line-height: 1.45;
}

body.light-mode .hero-panel-card li {
  color: var(--black);
  background: rgba(255, 255, 255, 0.72);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.55rem;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 900;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
}

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

.btn-secondary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

body.light-mode .btn-secondary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-secondary:hover,
.btn-outline:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

body.light-mode .btn-outline {
  color: var(--black);
  border-color: rgba(0, 0, 0, 0.42);
}

.section {
  padding: 4.6rem 0;
}

.section-inner {
  align-items: flex-start;
  flex-direction: column;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.section-header span,
.location-details span {
  color: var(--yellow);
  font-family: "Arial Black", "Trebuchet MS", Arial, sans-serif;
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.section-header h2,
.location-details h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 2.85rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.about p,
.location-details p {
  max-width: 820px;
  margin: 0;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.cards-grid,
.reasons-grid {
  display: grid;
  width: 100%;
  gap: 1.2rem;
}

.cards-grid,
.reasons-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.reason-card {
  min-height: 100%;
  padding: 1.55rem;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
  transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.card:hover,
.reason-card:hover {
  background: rgba(69, 69, 69, 0.72);
  border-color: rgba(255, 188, 0, 0.55);
  transform: translateY(-4px);
}

body.light-mode .card:hover,
body.light-mode .reason-card:hover {
  background: rgba(203, 204, 201, 0.68);
}

.card h3,
.reason-card h3 {
  margin: 0 0 0.75rem;
  color: var(--yellow);
  font-size: 1.18rem;
  letter-spacing: 0;
}

.card p,
.reason-card p {
  margin: 0;
  color: var(--text-muted);
}

.about,
.reasons {
  background: var(--section-bg);
}

.location {
  background: var(--section-bg);
  border-top: 1px solid rgba(255, 188, 0, 0.18);
  border-bottom: 1px solid rgba(255, 188, 0, 0.18);
}

.location-inner {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.location-details {
  max-width: 660px;
}

.location-details span {
  display: inline-block;
  margin-bottom: 0.8rem;
}

.location-details h2 {
  margin-bottom: 1rem;
}

.location-actions {
  display: grid;
  width: min(320px, 100%);
  gap: 0.8rem;
}

.site-footer {
  padding: 1.4rem 0;
  background: var(--section-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  flex-direction: column;
  gap: 0.4rem;
  text-align: center;
}

.footer-inner p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.theme-wheel {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 30;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  background:
    radial-gradient(circle at center, var(--page-bg) 0 15%, var(--silver) 16% 23%, transparent 24%),
    repeating-conic-gradient(from -6deg, var(--yellow) 0deg 6deg, transparent 6deg 18deg),
    radial-gradient(circle at center, transparent 0 42%, #171717 43% 61%, var(--gray) 62% 72%, #111111 73% 100%);
  border: 6px solid #171717;
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 4px #050505,
    inset 0 0 0 11px rgba(203, 204, 201, 0.15),
    0 14px 34px rgba(0, 0, 0, 0.42);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.theme-wheel:hover {
  border-color: var(--yellow);
  transform: rotate(26deg) scale(1.06);
  box-shadow:
    inset 0 0 0 4px #050505,
    inset 0 0 0 11px rgba(255, 188, 0, 0.28),
    0 16px 38px rgba(0, 0, 0, 0.48),
    0 0 20px rgba(255, 188, 0, 0.34);
}

.theme-wheel span {
  position: relative;
  width: 25px;
  height: 25px;
  background:
    radial-gradient(circle at center, var(--page-bg) 0 30%, var(--black) 31% 46%, var(--silver) 47% 100%);
  border: 3px solid var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.32);
}

.theme-wheel span::before,
.theme-wheel span::after {
  position: absolute;
  inset: -18px;
  content: "";
  border-radius: 50%;
  background: repeating-conic-gradient(from 3deg, transparent 0deg 16deg, rgba(255, 255, 255, 0.22) 16deg 18deg);
  mask: radial-gradient(circle, transparent 0 43%, #000 44% 57%, transparent 58%);
  -webkit-mask: radial-gradient(circle, transparent 0 43%, #000 44% 57%, transparent 58%);
}

.theme-wheel span::after {
  transform: rotate(10deg);
  background: repeating-conic-gradient(from 0deg, transparent 0deg 28deg, rgba(255, 188, 0, 0.42) 28deg 31deg);
}

body.light-mode .theme-wheel {
  background:
    radial-gradient(circle at center, var(--white) 0 15%, var(--gray) 16% 23%, transparent 24%),
    repeating-conic-gradient(from -6deg, var(--black) 0deg 6deg, transparent 6deg 18deg),
    radial-gradient(circle at center, transparent 0 42%, var(--silver) 43% 61%, var(--gray) 62% 72%, #171717 73% 100%);
}

@keyframes logoGradientFlow {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.92;
    filter:
      saturate(1.25)
      contrast(1.12)
      hue-rotate(0deg)
      drop-shadow(0 22px 18px rgba(0, 0, 0, 0.68))
      drop-shadow(0 0 18px rgba(255, 188, 0, 0.42));
  }

  50% {
    transform: translateY(-4px) scale(1.035);
    opacity: 1;
    filter:
      saturate(1.55)
      contrast(1.24)
      hue-rotate(-18deg)
      drop-shadow(0 26px 20px rgba(0, 0, 0, 0.72))
      drop-shadow(0 0 30px rgba(255, 188, 0, 0.62));
  }
}

@media (max-width: 980px) {
  .header-inner,
  .section-inner,
  .hero-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-logo-card {
    width: min(380px, 100%);
  }

  .cards-grid,
  .reasons-grid,
  .hero-panel-card ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-nav ul {
    gap: 0.85rem;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.55rem, 11vw, 4rem);
  }

  .brand-slogan {
    white-space: normal;
  }

  .footer-inner {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .location-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .cards-grid,
  .reasons-grid,
  .hero-panel-card ul {
    grid-template-columns: 1fr;
  }
}
