/* ============================================================
   Hawaiian VVC LLC — Homepage Stylesheet
   Light theme · burgundy accent · cream background
   ============================================================ */

:root {
  --cream: #F9F5F4;
  --ink: #221A18;
  --muted: #6B5A55;
  --burgundy: #7B1E26;
  --burgundy-dark: #5C141A;
  --blush: #F5DCD9;
  --blush-deep: #EBC7C2;
  --card: #FFFFFF;
  --line: #E8DAD6;
  --rule: #C99B9E;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #221A18;
  background-color: #F9F5F4;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: #7B1E26;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #5C141A;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: #221A18;
  font-weight: 700;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ NAVIGATION (right-aligned links bar) ============ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #FFFFFF;
  border-bottom: 1px solid #E8DAD6;
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .wordmark {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #221A18;
  white-space: nowrap;
}

.navbar .wordmark:hover {
  color: #7B1E26;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  color: #221A18;
  font-weight: 600;
  font-size: 15px;
}

.nav-links a:hover {
  color: #7B1E26;
}

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid #7B1E26;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background-color: #7B1E26;
  color: #FFFFFF;
  border-color: #7B1E26;
}

.btn-primary:hover {
  background-color: #5C141A;
  border-color: #5C141A;
  color: #FFFFFF;
}

.btn-outline {
  background-color: transparent;
  color: #7B1E26;
}

.btn-outline:hover {
  background-color: #F5DCD9;
  color: #5C141A;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: #221A18;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.navbar.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.navbar.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============ HERO (typographic, no visual) ============ */
.hero {
  background-color: #F9F5F4;
  padding: 120px 24px 90px;
  text-align: center;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7B1E26;
  margin-bottom: 26px;
}

.hero h1 {
  font-size: 58px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
  font-weight: 800;
}

.hero-subcopy {
  font-size: 19px;
  color: #6B5A55;
  max-width: 680px;
  margin: 0 auto 34px;
}

.hero-rule {
  width: 72px;
  height: 3px;
  background-color: #7B1E26;
  margin: 0 auto 36px;
}

/* ============ STATEMENT ROW ============ */
.statement-section {
  background-color: #FFFFFF;
  border-top: 1px solid #E8DAD6;
  border-bottom: 1px solid #E8DAD6;
}

.statement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 96px 0;
}

.statement-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7B1E26;
  margin-bottom: 18px;
}

.statement-grid h2 {
  font-size: 40px;
  margin-bottom: 24px;
}

.statement-grid p {
  color: #6B5A55;
  font-size: 18px;
}

.statement-side {
  border-left: 4px solid #7B1E26;
  padding-left: 28px;
}

.statement-side p {
  font-size: 17px;
}

.statement-side .signature {
  margin-top: 22px;
  font-weight: 700;
  color: #221A18;
}

/* ============ NUMBERED PROCESS ============ */
.process-section {
  background-color: #F9F5F4;
  padding: 100px 0;
}

.section-head {
  max-width: 700px;
  margin-bottom: 64px;
}

.section-head .eyebrow {
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: 40px;
  margin-bottom: 18px;
}

.section-head p {
  color: #6B5A55;
  font-size: 18px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background-color: #EBC7C2;
}

.process-step {
  position: relative;
  z-index: 1;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #F5DCD9;
  color: #7B1E26;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 22px;
  border: 2px solid #7B1E26;
}

.process-step h3 {
  font-size: 21px;
  margin-bottom: 12px;
}

.process-step p {
  color: #6B5A55;
  font-size: 16px;
}

/* ============ FAQ ACCORDION ============ */
.faq-section {
  background-color: #FFFFFF;
  border-top: 1px solid #E8DAD6;
  border-bottom: 1px solid #E8DAD6;
  padding: 100px 0;
}

.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #E8DAD6;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 19px;
  font-weight: 700;
  color: #221A18;
  font-family: inherit;
}

.faq-question:hover {
  color: #7B1E26;
}

.faq-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #F5DCD9;
  color: #7B1E26;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 0 26px;
  color: #6B5A55;
  font-size: 16px;
}

/* ============ QUOTES / TESTIMONIALS ============ */
.quotes-section {
  background-color: #F9F5F4;
  padding: 100px 0;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.quote-card {
  background-color: #FFFFFF;
  border: 1px solid #E8DAD6;
  border-radius: 8px;
  padding: 36px 32px;
}

.quote-card blockquote {
  border-left: 4px solid #7B1E26;
  padding-left: 22px;
  color: #221A18;
  font-size: 17px;
  font-style: italic;
  margin-bottom: 22px;
}

.quote-card .attribution {
  font-weight: 700;
  color: #7B1E26;
  font-size: 15px;
}

.quote-card .role {
  color: #6B5A55;
  font-size: 14px;
}

/* ============ SPLIT CTA BAND ============ */
.cta-section {
  background-color: #7B1E26;
  padding: 90px 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}

.cta-section h2 {
  color: #FFFFFF;
  font-size: 40px;
  margin-bottom: 18px;
}

.cta-section p {
  color: #F5DCD9;
  font-size: 18px;
  margin-bottom: 22px;
}

.cta-metrics {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}

.cta-metric .metric-num {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: #FFFFFF;
}

.cta-metric .metric-label {
  color: #F5DCD9;
  font-size: 14px;
}

.cta-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 36px;
  color: #221A18;
}

.cta-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.cta-card p {
  color: #6B5A55;
  font-size: 15px;
  margin-bottom: 18px;
}

.cta-contact a {
  display: block;
  font-weight: 700;
  color: #7B1E26;
  margin-bottom: 8px;
  font-size: 16px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
}

.cta-form input[type="email"] {
  padding: 13px 15px;
  border: 1px solid #E8DAD6;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  color: #221A18;
  background-color: #F9F5F4;
}

.cta-form input[type="email"]:focus {
  outline: 2px solid #7B1E26;
  border-color: #7B1E26;
}

.form-note {
  display: none;
  font-size: 14px;
  margin-top: 10px;
  color: #5C141A;
  font-weight: 600;
}

.form-note.show {
  display: block;
}

/* ============ FOOTER (single line) ============ */
.footer {
  background-color: #FFFFFF;
  border-top: 3px solid #7B1E26;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-name {
  font-weight: 800;
  color: #221A18;
  white-space: nowrap;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}

.footer-links a {
  color: #6B5A55;
  font-weight: 600;
  font-size: 15px;
}

.footer-links a:hover {
  color: #7B1E26;
}

.footer-sep {
  color: #C99B9E;
  padding: 0 12px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}

.footer-contact a {
  color: #6B5A55;
  font-weight: 600;
  font-size: 15px;
}

.footer-contact a:hover {
  color: #7B1E26;
}

/* ============ SCROLL REVEAL ============ */
.js .fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero h1 {
    font-size: 42px;
  }

  .statement-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 64px 0;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 28px;
  }

  .process-list::before {
    display: none;
  }

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

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .nav-right {
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: flex;
  }

  .navbar .btn-primary {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid #E8DAD6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px;
  }

  .navbar.menu-open .nav-links {
    max-height: 400px;
  }

  .nav-links li {
    border-bottom: 1px solid #E8DAD6;
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 16px 0;
  }

  .hero {
    padding: 80px 24px 64px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .section-head h2,
  .statement-grid h2,
  .cta-section h2 {
    font-size: 32px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer-sep {
    display: inline;
  }
}
