/* ============================================================
   Yes We Can Drinks Inc. - style.css
   DARK espresso-near-black theme with soda-tangerine accent
   Motif: CSS drinks glyphs (can, bottle, carton, cup, lemon,
          droplet, ice, star)
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #16100C;
  color: #CFC0AC;
  font-size: 16px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.75;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  color: #F7F0E6;
  font-weight: 700;
  line-height: 1.25;
}

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

a:hover {
  color: #F07A3C;
}

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

/* ------------------------------------------------------------
   Scroll reveal (safe without JavaScript)
   ------------------------------------------------------------ */
.js .fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ------------------------------------------------------------
   Masthead navigation (giant wordmark)
   ------------------------------------------------------------ */
.masthead-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #16100C;
  border-bottom: 1px solid #3A2C1C;
}

.masthead-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 24px 0;
  text-align: center;
}

.masthead-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  position: relative;
}

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

.masthead-wordmark {
  font-size: 54px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F7F0E6;
  line-height: 1.05;
}

.masthead-brand:hover .masthead-wordmark {
  color: #F07A3C;
}

.masthead-mark {
  width: 48px;
  height: 48px;
  background-color: #E4682E;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.masthead-can-sm {
  width: 16px;
  height: 28px;
  background-color: #FFFFFF;
  border-radius: 5px;
  position: relative;
}

.masthead-can-sm::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 3px;
  right: 3px;
  height: 4px;
  border-radius: 2px;
  background-color: #E4682E;
}

.masthead-can-sm::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 7px;
  width: 4px;
  height: 5px;
  border-radius: 2px;
  background-color: #E4682E;
}

.nav-toggle {
  display: none;
  background-color: transparent;
  border: 1px solid #3A2C1C;
  border-radius: 8px;
  padding: 10px 12px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle-bars i {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #F7F0E6;
}

.masthead-links {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 0 22px;
}

.masthead-links a {
  color: #CFC0AC;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  padding: 8px 16px;
  position: relative;
}

.masthead-links a:hover {
  color: #F07A3C;
}

.masthead-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #E4682E;
  transition: width 0.25s ease, left 0.25s ease;
}

.masthead-links a:hover::after {
  width: 60%;
  left: 20%;
}

.nav-sep {
  width: 1px;
  height: 16px;
  background-color: #3A2C1C;
}

/* ------------------------------------------------------------
   Banner strip hero
   ------------------------------------------------------------ */
.banner-hero {
  background-color: #16100C;
}

.banner-strip {
  background-color: #E4682E;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  overflow: hidden;
}

.strip-sep {
  width: 1px;
  height: 40px;
  background-color: #FFFFFF;
}

/* CSS drinks glyphs (white on the soda-tangerine strip) */
.glyph {
  position: relative;
  flex: 0 0 auto;
}

.glyph-can {
  width: 32px;
  height: 48px;
  background-color: #FFFFFF;
  border-radius: 7px;
}

.glyph-can::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 6px;
  right: 6px;
  height: 5px;
  border-radius: 3px;
  background-color: #E4682E;
}

.glyph-can::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 14px;
  width: 5px;
  height: 6px;
  border-radius: 2px;
  background-color: #E4682E;
}

.glyph-bottle {
  width: 22px;
  height: 40px;
  background-color: #FFFFFF;
  border-radius: 4px 4px 10px 10px;
  margin-top: 10px;
}

.glyph-bottle::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 5px;
  width: 12px;
  height: 16px;
  background-color: #FFFFFF;
  border-radius: 2px;
}

.glyph-bottle::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 3px;
  width: 16px;
  height: 6px;
  border-radius: 3px;
  background-color: #F7F0E6;
}

.glyph-carton {
  width: 30px;
  height: 44px;
  background-color: #FFFFFF;
  border-radius: 2px 2px 6px 6px;
}

.glyph-carton::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 13px solid #FFFFFF;
}

.glyph-carton::after {
  content: "";
  position: absolute;
  top: -13px;
  left: 50%;
  margin-left: -6px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid #E4682E;
}

.glyph-cup {
  width: 30px;
  height: 34px;
  background-color: #FFFFFF;
  border-radius: 4px 4px 12px 12px;
}

.glyph-cup::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 8px;
  width: 6px;
  height: 26px;
  border-radius: 3px;
  background-color: #FFFFFF;
  transform: rotate(-16deg);
}

.glyph-cup::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 3px;
  right: 3px;
  height: 5px;
  border-radius: 3px;
  background-color: #E4682E;
}

.glyph-lemon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #E4682E;
  border: 4px solid #FFFFFF;
}

.glyph-lemon::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: repeating-conic-gradient(#E4682E 0deg 22.5deg, #FFFFFF 22.5deg 45deg);
}

.glyph-lemon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  border-radius: 50%;
  background-color: #FFFFFF;
}

/* Secondary decorative glyphs */
.glyph-droplet {
  width: 24px;
  height: 26px;
  background-color: #E4682E;
  border-radius: 60% 60% 60% 60% / 45% 45% 70% 70%;
  position: relative;
}

.glyph-droplet::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #FFFFFF;
}

.glyph-ice {
  width: 22px;
  height: 22px;
  background-color: #F7F0E6;
  border-radius: 4px;
  box-shadow: 10px 0 0 #E8D9C4, 10px 10px 0 #CFC0AC, 0 10px 0 #D8C8B2;
}

.glyph-star {
  width: 26px;
  height: 26px;
  background-color: #E4682E;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.motif-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 0 0 34px;
}

/* Hero text block */
.hero-text {
  max-width: 920px;
  margin: 0 auto;
  padding: 90px 24px 60px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  background-color: #E4682E;
  color: #FFFFFF;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 30px;
  margin-bottom: 30px;
}

.hero-title {
  font-size: 52px;
  color: #F7F0E6;
  line-height: 1.15;
  margin-bottom: 26px;
}

.hero-title .taste {
  color: #F07A3C;
}

.hero-sub {
  max-width: 720px;
  margin: 0 auto 42px;
  color: #CFC0AC;
  font-size: 18px;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 62px;
}

.btn {
  display: inline-block;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 6px;
}

.btn-primary {
  background-color: #E4682E;
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: #F07A3C;
  color: #FFFFFF;
}

.btn-outline {
  background-color: transparent;
  color: #F7F0E6;
  border: 2px solid #F7F0E6;
}

.btn-outline:hover {
  border-color: #F07A3C;
  color: #F07A3C;
}

.hero-stat {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #3A2C1C;
  padding-top: 42px;
}

.hero-stat-item {
  padding: 0 34px;
}

.hero-stat-num {
  display: block;
  font-size: 34px;
  font-weight: 700;
  color: #F7F0E6;
}

.hero-stat-label {
  display: block;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9C856C;
  margin-top: 4px;
}

.stat-sep {
  width: 1px;
  height: 46px;
  background-color: #E4682E;
}

/* ------------------------------------------------------------
   Card grid section
   ------------------------------------------------------------ */
.card-grid-section {
  background-color: #16100C;
  padding: 100px 0 40px;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 62px;
  text-align: center;
}

.section-kicker {
  display: block;
  color: #E4682E;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: 40px;
  color: #F7F0E6;
  margin-bottom: 18px;
}

.section-sub {
  color: #CFC0AC;
  font-size: 17px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 40px;
}

.card {
  background-color: #241A12;
  border: 1px solid #3A2C1C;
  border-radius: 10px;
  padding: 36px 30px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: #E4682E;
}

.card-node {
  width: 14px;
  height: 14px;
  background-color: #E4682E;
  transform: rotate(45deg);
  margin-bottom: 24px;
  position: relative;
}

.card-node::before {
  content: "";
  position: absolute;
  inset: 3px;
  background-color: #FFFFFF;
  border-radius: 50%;
}

.card h3 {
  font-size: 22px;
  color: #F7F0E6;
  margin-bottom: 12px;
}

.card p {
  color: #CFC0AC;
  margin-bottom: 20px;
}

.card-caption {
  display: inline-block;
  background-color: #16100C;
  border: 1px solid #3A2C1C;
  border-radius: 20px;
  color: #9C856C;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
}

/* ------------------------------------------------------------
   Metric band
   ------------------------------------------------------------ */
.metric-band {
  background-color: #E4682E;
  margin-top: 60px;
  padding: 66px 24px;
}

.metric-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.metric {
  text-align: center;
  padding: 0 42px;
}

.metric-num {
  display: block;
  font-size: 58px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
}

.metric-label {
  display: block;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FCE3D2;
  margin-top: 10px;
}

.metric-sep {
  width: 1px;
  height: 58px;
  background-color: #FFFFFF;
}

/* ------------------------------------------------------------
   Statement band
   ------------------------------------------------------------ */
.statement-band {
  background-color: #241A12;
  padding: 84px 24px;
}

.statement-inner {
  max-width: 880px;
  margin: 0 auto;
  padding-left: 34px;
  border-left: 4px solid #E4682E;
}

.statement-inner p {
  font-size: 26px;
  line-height: 1.5;
  color: #F7F0E6;
  font-style: italic;
}

.statement-inner p .accent {
  color: #F07A3C;
  font-style: normal;
}

.statement-extra {
  font-size: 15px;
  font-style: normal;
  color: #9C856C;
  margin-top: 20px;
}

/* ------------------------------------------------------------
   CTA band
   ------------------------------------------------------------ */
.cta-band {
  background-color: #16100C;
  text-align: center;
  padding: 90px 24px;
}

.cta-band h2 {
  font-size: 40px;
  color: #F7F0E6;
  margin-bottom: 16px;
}

.cta-band p {
  max-width: 660px;
  margin: 0 auto 34px;
  color: #CFC0AC;
  font-size: 17px;
}

/* ------------------------------------------------------------
   Single-row footer
   ------------------------------------------------------------ */
.single-row-footer {
  background-color: #E4682E;
  padding: 26px 24px;
}

.footer-row {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-item {
  color: #241A12;
  font-size: 13px;
  font-family: "Trebuchet MS", Verdana, sans-serif;
}

.footer-item a {
  color: #241A12;
}

.footer-item a:hover {
  color: #FFFFFF;
}

.footer-sep {
  width: 1px;
  height: 14px;
  background-color: #C05520;
  margin: 0 14px;
}

/* ------------------------------------------------------------
   Secondary pages (services / contact)
   ------------------------------------------------------------ */
.page-band {
  background-color: #16100C;
  padding: 84px 24px 20px;
  text-align: center;
}

.page-kicker {
  display: inline-block;
  color: #E4682E;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-title {
  font-size: 44px;
  color: #F7F0E6;
  margin-bottom: 16px;
}

.page-sub {
  max-width: 760px;
  margin: 0 auto;
  color: #CFC0AC;
  font-size: 17px;
}

.page-band .motif-row {
  padding: 30px 0 0;
}

.service-row {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 28px;
  padding: 44px 0;
  border-top: 1px solid #3A2C1C;
}

.service-badge {
  width: 68px;
  height: 68px;
  background-color: #241A12;
  border: 1px solid #E4682E;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-badge .glyph {
  transform: scale(0.85);
}

.service-body h2 {
  color: #F7F0E6;
  font-size: 26px;
  margin-bottom: 12px;
}

.service-body h2 .num {
  color: #E4682E;
}

.service-body p {
  color: #CFC0AC;
}

.service-body .service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.service-tags span {
  display: inline-block;
  background-color: #241A12;
  border: 1px solid #3A2C1C;
  border-radius: 20px;
  color: #9C856C;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
}

.process-section {
  background-color: #16100C;
  padding: 80px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 40px;
}

.process-step {
  background-color: #241A12;
  border: 1px solid #3A2C1C;
  border-radius: 10px;
  padding: 28px;
  position: relative;
}

.process-num {
  display: block;
  color: #E4682E;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-step h3 {
  color: #F7F0E6;
  font-size: 18px;
  margin-bottom: 8px;
}

.process-step p {
  color: #CFC0AC;
  font-size: 15px;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 44px 0 20px;
}

.contact-form {
  background-color: #241A12;
  border: 1px solid #3A2C1C;
  border-radius: 10px;
  padding: 36px;
}

.contact-form label {
  display: block;
  color: #F7F0E6;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background-color: #16100C;
  border: 1px solid #3A2C1C;
  border-radius: 6px;
  color: #F7F0E6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  padding: 12px 14px;
  margin-bottom: 22px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #E4682E;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  color: #FCE3D2;
  font-size: 14px;
  margin-top: 12px;
}

.contact-block h2 {
  color: #F7F0E6;
  font-size: 24px;
  margin-bottom: 8px;
}

.contact-block .lead {
  color: #CFC0AC;
  margin-bottom: 22px;
}

.info-line {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #3A2C1C;
}

.info-label {
  min-width: 108px;
  color: #9C856C;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-top: 2px;
}

.info-value {
  color: #F7F0E6;
}

.info-value a {
  color: #E4682E;
}

.info-value a:hover {
  color: #F07A3C;
}

.hours-grid {
  margin-top: 24px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #3A2C1C;
  color: #CFC0AC;
}

.hours-row strong {
  color: #F7F0E6;
  font-weight: 700;
}

.faq-list {
  padding: 30px 0 10px;
}

.faq-item {
  background-color: #241A12;
  border: 1px solid #3A2C1C;
  border-radius: 8px;
  margin-bottom: 14px;
}

.faq-q {
  width: 100%;
  background-color: transparent;
  border: none;
  text-align: left;
  color: #F7F0E6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 700;
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.faq-arrow {
  color: #E4682E;
  font-size: 22px;
  line-height: 1;
  transition: transform 0.25s ease;
}

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

.faq-a {
  display: none;
  padding: 0 22px 20px;
  color: #CFC0AC;
}

.faq-item.open .faq-a {
  display: block;
}

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
@media (max-width: 960px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .masthead-wordmark {
    font-size: 38px;
  }

  .hero-title {
    font-size: 40px;
  }

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

  .metric {
    padding: 14px 30px;
  }
}

@media (max-width: 640px) {
  .masthead-inner {
    padding-top: 14px;
  }

  .masthead-top {
    justify-content: flex-start;
  }

  .nav-toggle {
    display: inline-block;
  }

  .masthead-wordmark {
    font-size: 30px;
  }

  .masthead-links {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 10px 0 20px;
  }

  .masthead-links.open {
    display: flex;
  }

  .nav-sep {
    display: none;
  }

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

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

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

  .service-row {
    grid-template-columns: 1fr;
  }

  .service-badge {
    width: 58px;
    height: 58px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-text {
    padding-top: 60px;
  }

  .hero-stat {
    flex-direction: column;
    gap: 20px;
  }

  .stat-sep {
    display: none;
  }

  .metric {
    padding: 12px 22px;
  }

  .metric-num {
    font-size: 44px;
  }

  .banner-strip {
    gap: 16px;
    padding: 16px 12px;
  }

  .statement-inner p {
    font-size: 21px;
  }

  .section-title,
  .cta-band h2,
  .page-title {
    font-size: 32px;
  }

  .footer-item {
    font-size: 12px;
  }

  .footer-sep {
    margin: 0 10px;
  }
}
