/* === grizzlybearsbc.com — PREMIUM REDESIGN === */
/* Design intent: editorial, cinematic, luxury safari — not a template */

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

:root {
  --black: #0a0a0a;
  --black-soft: #111111;
  --black-mid: #1a1a1a;
  --gold: #b8973a;
  --gold-bright: #d4b251;
  --gold-dim: rgba(184,151,58,0.12);
  --white: #f5f2eb;
  --white-pure: #ffffff;
  --grey: #888;
  --grey-light: #bbb;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  z-index: 100;
  background: linear-gradient(180deg, rgba(10,10,10,0.9) 0%, transparent 100%);
  transition: background 0.4s ease;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.nav-cta {
  color: var(--gold);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 28px;
  border: 1px solid var(--gold);
  transition: all 0.3s ease;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

/* === HERO — CINEMATIC FULL BLEED === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 48px 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://seawolfadventures.ca/wp-content/uploads/2020/01/Sea-Wolf-Adventures-Grizzly-Bear-Viewing.jpg') center 30%/cover no-repeat;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.1) 30%, rgba(10,10,10,0.5) 65%, rgba(10,10,10,0.97) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 24px;
  color: var(--white-pure);
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  font-weight: 300;
  margin-bottom: 36px;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  padding: 16px 40px;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.btn-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(184,151,58,0.25);
}
.hero-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.03em;
}

/* === SECTION SPACING === */
.section { padding: 120px 48px; }
.section-inner { max-width: 1200px; margin: 0 auto; }

/* === INTRO — BIG EDITORIAL TEXT === */
.intro {
  padding: 140px 48px;
  text-align: center;
}
.intro-text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  max-width: 800px;
  margin: 0 auto;
  font-weight: 400;
}
.intro-text em {
  color: var(--gold);
  font-style: normal;
}
.intro-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 40px auto 0;
}

/* === EXPERIENCE — STACKED FULL-WIDTH === */
.experience-block {
  padding: 0;
}
.exp-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.exp-item:nth-child(even) .exp-image { order: 2; }
.exp-item:nth-child(even) .exp-text { order: 1; }
.exp-image {
  background-size: cover;
  background-position: center;
  min-height: 400px;
}
.exp-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  background: var(--black-soft);
}
.exp-number {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}
.exp-text h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white-pure);
}
.exp-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
}

/* === VIDEO === */
.video-section {
  padding: 120px 48px;
  background: var(--black-mid);
}
.video-header {
  text-align: center;
  margin-bottom: 48px;
}
.video-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
}
.video-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white-pure);
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* === WHY — EDITORIAL SPLIT === */
.why-section {
  padding: 140px 48px;
  background: var(--black);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.why-image {
  background: url('https://seawolfadventures.ca/wp-content/uploads/2020/11/SeaWolfAdventures-16-1536x864.jpg') center/cover no-repeat;
  min-height: 600px;
  position: relative;
}
.why-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(transparent, rgba(10,10,10,0.5));
}
.why-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.why-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 32px;
  color: var(--white-pure);
}
.why-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
  font-weight: 300;
}
.why-list {
  list-style: none;
  margin-top: 32px;
  border-top: 1px solid rgba(184,151,58,0.2);
}
.why-list li {
  padding: 14px 0;
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 12px;
}
.why-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* === TESTIMONIALS — LARGE EDITORIAL QUOTES === */
.testimonials {
  padding: 140px 48px;
  background: var(--black-soft);
}
.testimonials-inner {
  max-width: 900px;
  margin: 0 auto;
}
.testimonial-item {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.testimonial-item:first-child { padding-top: 0; }
.testimonial-item:last-child { border-bottom: none; }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}
.testimonial-cite {
  font-size: 0.85rem;
  color: var(--gold);
  font-style: normal;
  letter-spacing: 0.03em;
}

/* === DETAILS — CLEAN GRID === */
.details-section {
  padding: 120px 48px;
  background: var(--black);
}
.details-header {
  text-align: center;
  margin-bottom: 64px;
}
.details-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
}
.details-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white-pure);
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  max-width: 1200px;
  margin: 0 auto;
}
.detail-item {
  background: var(--black);
  padding: 48px 40px;
}
.detail-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 700;
}
.detail-item p {
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  font-size: 0.95rem;
  font-weight: 300;
}

/* === BOOKING — FULL SECTION === */
.booking {
  padding: 140px 48px;
  background: var(--black-mid);
}
.booking-inner {
  max-width: 720px;
  margin: 0 auto;
}
.booking-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
  text-align: center;
}
.booking-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white-pure);
  text-align: center;
  margin-bottom: 16px;
}
.booking-desc {
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 56px;
  font-weight: 300;
}

/* FORM */
.qualify-form { text-align: left; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; }
.form-group-full { margin-bottom: 16px; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.2);
}
.form-group select option { background: var(--black); color: var(--white); }

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  padding: 18px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.3s ease;
}
.btn-submit:hover {
  background: var(--gold-bright);
}
.form-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* FORM SUCCESS */
.form-success { text-align: center; padding: 80px 0; }
.success-icon {
  width: 64px;
  height: 64px;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--white-pure);
}
.form-success p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
}
.success-sub { margin-top: 12px; font-size: 0.85rem !important; }

/* === FOOTER === */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  padding: 60px 48px 40px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 40px;
}
.footer-col h4 {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 4px;
}
.footer-col a { color: rgba(255,255,255,0.6); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  max-width: 1200px;
  margin: 0 auto;
  color: rgba(255,255,255,0.3);
}
.footer-territory {
  margin-top: 8px;
  font-size: 0.75rem;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero { padding: 0 24px 60px; }
  .hero-title { font-size: 2.8rem; }
  .section, .intro, .why-section, .testimonials,
  .details-section, .booking, .video-section { padding-left: 24px; padding-right: 24px; }
  .nav { padding: 16px 24px; }
  .exp-item { grid-template-columns: 1fr; }
  .exp-item:nth-child(even) .exp-image { order: 0; }
  .exp-item:nth-child(even) .exp-text { order: 0; }
  .exp-image { min-height: 300px; }
  .exp-text { padding: 48px 32px; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-image { min-height: 350px; }
  .details-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav-logo-img { height: 36px; }
  .hero { padding: 0 20px 48px; }
  .hero-title { font-size: 2.2rem; }
  .hero-sub { font-size: 1rem; }
  .btn-gold { padding: 14px 32px; font-size: 0.85rem; }
}
