:root {
  --black: #050505;
  --black-soft: #0d0d0d;
  --white: #f6f6f6;
  --white-soft: rgba(255,255,255,0.78);
  --white-faint: rgba(255,255,255,0.52);
  --red: #d61d22;
  --red-dark: #b61519;
  --gold: #f1d2a2;
  --line: rgba(255,255,255,0.16);
  --panel: rgba(5,5,5,0.44);
  --panel-strong: rgba(5,5,5,0.68);
}

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

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: auto;
}

body.sun-dog-coming-soon-theme {
  min-height: 100vh;
}

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

.hero-card p.subtitle {
    margin: 30px 0px 40px;
}

.divider {
    margin-bottom: 40px;
}
.hero-card::before, .hero-card::after {
    display: none;
}
.btn-more {
    margin-bottom: 40px;
    margin-top: 20px;
    padding: 0px 50px;
}

/* -------------------------
   FULLSCREEN SLIDESHOW
------------------------- */
.stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--black);
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  animation: heroFade 24s infinite;
  will-change: transform, opacity;
}

.slide:nth-child(1) {
  background-image: url('../images/slide1.jpg');
  animation-delay: 0s;
}

.slide:nth-child(2) {
  background-image: url('../images/slide2.jpg');
  animation-delay: 8s;
}

.slide:nth-child(3) {
  background-image: url('../images/slide3.jpg');
  animation-delay: 16s;
}

@keyframes heroFade {
  0%   { opacity: 0; transform: scale(1.07); }
  4%   { opacity: 1; }
  31%  { opacity: 1; transform: scale(1.02); }
  37%  { opacity: 0; transform: scale(1.00); }
  100% { opacity: 0; transform: scale(1.00); }
}

.stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.28) 22%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.78) 100%),
    radial-gradient(circle at center, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.46) 72%, rgba(0,0,0,0.82) 100%);
  pointer-events: none;
}

/* -------------------------
   TOP BARS
------------------------- */
.utility-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}

.utility-bar span {
  opacity: 0.9;
}

.utility-bar .accent {
  color: var(--red);
  margin: 0 0.45rem;
}

.header-bar {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 10;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-inner {
  width: min(1200px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(214,29,34,0.9);
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text .name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
}

.brand-text .sub {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

.header-meta {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  white-space: nowrap;
}

/* -------------------------
   MAIN CONTENT
------------------------- */
.shell {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 40px;
}

.hero-card {
  position: relative;
  width: min(980px, 100%);
  padding: clamp(34px, 5vw, 62px) clamp(24px, 5vw, 56px);
  text-align: center;
  background: linear-gradient(180deg, rgba(10,10,10,0.48) 0%, rgba(10,10,10,0.70) 100%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 30px 80px rgba(0,0,0,0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 16%, rgba(255,255,255,0.18) 84%, transparent 100%);
}

.hero-card::before { top: 18px; }
.hero-card::after { bottom: 18px; }

.eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
}

.eyebrow strong {
  color: var(--red);
  font-weight: 500;
}

.title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3.4rem, 11vw, 7.6rem);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #ffffff;
  text-shadow: 0 8px 30px rgba(0,0,0,0.45);
}

.subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.7vw, 2.1rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.82);
  margin-bottom: 20px;
}

.divider {
  width: 54px;
  height: 4px;
  background: var(--white);
  margin: 0 auto 24px;
  opacity: 0.88;
}

.coming {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.86);
}

.coming::before,
.coming::after {
  content: "";
  width: 52px;
  height: 1px;
  background: rgba(255,255,255,0.24);
}

.description {
  max-width: 760px;
  margin: 0 auto 30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.84);
}

.contact-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-bottom: 16px;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 28px;
  margin-bottom: 28px;
}

.contact-link {
  position: relative;
  display: inline-block;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  letter-spacing: 0.06em;
  color: white;
  padding-bottom: 4px;
  transition: color 0.25s ease;
  cursor: pointer;
}

.contact-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s ease;
}

.contact-link:hover {
  color: var(--red);
}

.contact-link:hover::after {
  transform: scaleX(1);
}

.contact-sep {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.9;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 182px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  cursor: pointer;
}

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

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

.btn-secondary {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.18);
  color: white;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-1px);
}

.footer-note {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 18px;
  z-index: 8;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.footer-note span {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.56);
  background: rgba(0,0,0,0.32);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 10px 14px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* -------------------------
   GRAIN
------------------------- */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 6;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.95 0 0 0 0 0.95 0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  animation: grainMove 8s steps(6) infinite;
}

@keyframes grainMove {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-2%, 1%); }
  40% { transform: translate(1%, -3%); }
  60% { transform: translate(-1%, 2%); }
  80% { transform: translate(2%, -1%); }
}

/* Admin bar compatibility */
body.admin-bar .utility-bar {
  top: 32px;
}

body.admin-bar .header-bar {
  top: 66px;
}

body.admin-bar .shell {
  padding-top: 152px;
}

/* -------------------------
   RESPONSIVE
------------------------- */
@media (max-width: 900px) {
  .header-meta {
    display: none;
  }
}

@media (max-width: 782px) {
  body.admin-bar .utility-bar {
    top: 46px;
  }

  body.admin-bar .header-bar {
    top: 80px;
  }

  body.admin-bar .shell {
    padding-top: 166px;
  }
}

@media (max-width: 640px) {
  .utility-bar {
    font-size: 0.64rem;
    text-align: center;
    padding: 0 12px;
  }

  .header-bar {
    height: 58px;
    padding: 0 14px;
  }

  .header-inner {
    justify-content: center;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-text .name {
    font-size: 0.98rem;
  }

  .brand-text .sub {
    font-size: 0.62rem;
  }

  .shell {
    padding: 112px 16px 24px;
  }

  body.admin-bar .shell {
    padding-top: 192px;
  }

  .hero-card {
    padding: 34px 18px 42px;
  }

  .coming {
    gap: 10px;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
  }

  .coming::before,
  .coming::after {
    width: 28px;
  }

  .contact-row {
    flex-direction: column;
    gap: 12px;
  }

  .contact-sep {
    display: none;
  }

  .cta-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .footer-note {
    bottom: 12px;
  }

  .footer-note span {
    text-align: center;
    font-size: 0.62rem;
    line-height: 1.45;
  }
}

@media (prefers-reduced-motion: reduce) {
  .slide,
  .grain {
    animation-duration: 30s;
  }

  .slide {
    transform: none !important;
  }
}