:root {
  --bg: #16110C;
  --panel: #241C12;
  --panel-soft: #1E1710;
  --amber: #C98A3D;
  --amber-deep: #A8692A;
  --wheat: #F0E2C8;
  --text: #F3EAD8;
  --dark: #16110C;
  --hairline: #3A2E1C;
  --hairline-amber: #4A3418;
}

* {
  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.75;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
}

::selection {
  background-color: var(--amber);
  color: var(--bg);
}

a {
  color: var(--amber);
}

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

.site-main a {
  color: var(--amber);
  text-decoration: underline;
}

.site-main a.btn-primary,
.site-main a.btn-outline,
.site-main a.btn-dark {
  text-decoration: none;
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.side-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 240px;
  height: 100vh;
  background-color: var(--panel);
  border-right: 1px solid var(--amber);
  z-index: 60;
  display: flex;
  flex-direction: column;
  padding: 34px 22px 28px;
}

.side-nav .wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--wheat);
  letter-spacing: 0.1em;
  text-decoration: none;
  display: block;
  line-height: 1.1;
}

.side-nav .tagline {
  font-size: 11.5px;
  color: var(--wheat);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 6px;
  margin-bottom: 44px;
}

.side-nav-links {
  display: flex;
  flex-direction: column;
}

.side-nav-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  border-left: 3px solid transparent;
}

.side-nav-links a .diamond {
  width: 8px;
  height: 8px;
  background-color: var(--amber);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.side-nav-links a:hover {
  color: var(--wheat);
  background-color: var(--panel-soft);
}

.side-nav-links a.active {
  border-left-color: var(--amber);
  color: var(--wheat);
}

.side-nav-foot {
  margin-top: auto;
}

.side-nav-foot p {
  font-size: 12.5px;
  color: var(--wheat);
  word-break: break-all;
}

.side-nav-toggle {
  display: none;
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg);
  z-index: 55;
}

.nav-overlay.show {
  display: block;
}

.site-main {
  margin-left: 240px;
}

.mirror-hero {
  background-color: var(--bg);
  padding: 110px 0 120px;
}

.mirror-hero-inner {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 48px;
  align-items: center;
}

.hops-graphic {
  position: relative;
  min-height: 460px;
}

.hop-ring {
  position: absolute;
  left: 2%;
  top: 56px;
  width: 320px;
  height: 320px;
  border: 2px solid var(--amber);
  border-radius: 50%;
}

.hop-cone {
  position: absolute;
  left: 18%;
  top: 120px;
  width: 122px;
  height: 218px;
  border-radius: 50%;
  background-color: var(--amber);
}

.hop-stem {
  position: absolute;
  left: 50%;
  top: -36px;
  transform: translateX(-50%);
  width: 10px;
  height: 38px;
  background-color: var(--amber);
  border-radius: 5px;
}

.hop-flower {
  position: absolute;
  right: 6%;
  top: 168px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background-color: var(--amber);
  z-index: 2;
}

.hop-flower .petal {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 32px;
  height: 32px;
  margin: -16px 0 0 -16px;
  border-radius: 50%;
  background-color: var(--wheat);
  transform: rotate(0deg) translateY(-42px);
}

.hop-flower .petal:nth-child(1) {
  transform: rotate(0deg) translateY(-42px);
}

.hop-flower .petal:nth-child(2) {
  transform: rotate(72deg) translateY(-42px);
}

.hop-flower .petal:nth-child(3) {
  transform: rotate(144deg) translateY(-42px);
}

.hop-flower .petal:nth-child(4) {
  transform: rotate(216deg) translateY(-42px);
}

.hop-flower .petal:nth-child(5) {
  transform: rotate(288deg) translateY(-42px);
}

.hop-bud {
  position: absolute;
  left: 6%;
  bottom: 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--wheat);
}

.eyebrow-chip {
  display: inline-block;
  background-color: var(--amber);
  color: var(--bg);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 8px 18px;
  border-radius: 3px;
  margin-bottom: 26px;
}

.mirror-hero-text {
  text-align: left;
}

.mirror-hero-text h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 24px;
  font-weight: 700;
}

.mirror-hero-subcopy p {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 18px;
}

.mirror-hero-subcopy p:last-child {
  margin-bottom: 0;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background-color: var(--amber);
  color: var(--bg);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 34px;
  border-radius: 3px;
  border: 2px solid var(--amber);
  cursor: pointer;
  font-family: inherit;
}

.btn-primary:hover {
  background-color: var(--wheat);
  border-color: var(--wheat);
  color: var(--bg);
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--wheat);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 34px;
  border-radius: 3px;
  border: 2px solid var(--wheat);
  cursor: pointer;
  font-family: inherit;
}

.btn-outline:hover {
  background-color: var(--wheat);
  color: var(--bg);
}

.btn-dark {
  display: inline-block;
  background-color: var(--bg);
  color: var(--wheat);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 34px;
  border-radius: 3px;
  border: 2px solid var(--bg);
  cursor: pointer;
  font-family: inherit;
}

.btn-dark:hover {
  background-color: var(--panel);
}

.steps-section {
  background-color: var(--bg);
  padding: 40px 0 110px;
}

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

.steps-eyebrow {
  color: var(--wheat);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  font-weight: 700;
  display: block;
  margin-bottom: 14px;
}

.steps-head h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.2;
}

.steps-head p {
  color: var(--text);
  font-size: 17px;
  margin-bottom: 16px;
}

.steps-head p:last-child {
  margin-bottom: 0;
}

.steps-progression {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.steps-progression::before {
  content: "";
  position: absolute;
  left: 41px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background-color: var(--amber);
}

.step-item {
  position: relative;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 26px;
  padding-bottom: 52px;
}

.step-item:last-child {
  padding-bottom: 0;
}

.step-num {
  position: relative;
  font-size: 40px;
  font-weight: 700;
  color: var(--amber);
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
}

.step-num::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background-color: var(--wheat);
  border: 3px solid var(--amber);
  border-radius: 50%;
}

.step-body h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  color: var(--text);
  margin-bottom: 10px;
}

.step-body p {
  color: var(--text);
  font-size: 16.5px;
}

.steps-closing {
  max-width: 800px;
  margin: 56px auto 0;
  color: var(--text);
  font-size: 17px;
  font-style: italic;
}

.metric-band {
  background-color: var(--amber);
}

.metric-band-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric {
  text-align: center;
  padding: 60px 24px;
  border-right: 1px solid var(--hairline-amber);
}

.metric:last-child {
  border-right: none;
}

.metric-num {
  display: block;
  font-size: 52px;
  font-weight: 700;
  color: var(--wheat);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
}

.metric-label {
  display: block;
  color: var(--bg);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

.cta-band {
  background-color: var(--wheat);
  color: var(--bg);
  padding: 100px 0;
  text-align: center;
}

.cta-band h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  color: var(--bg);
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-band p {
  max-width: 720px;
  margin: 0 auto 16px;
  color: var(--bg);
  font-size: 17.5px;
}

.cta-band .btn-primary {
  margin-top: 22px;
  background-color: var(--bg);
  border-color: var(--bg);
  color: var(--wheat);
}

.cta-band .btn-primary:hover {
  background-color: var(--amber);
  border-color: var(--amber);
  color: var(--bg);
}

.stack-footer {
  background-color: var(--panel);
  text-align: center;
  padding: 56px 24px 46px;
}

.stack-footer .wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 700;
  color: var(--wheat);
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 24px;
}

.stack-footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 30px;
  margin-bottom: 28px;
}

.stack-footer-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
}

.stack-footer-links a:hover {
  color: var(--amber);
}

.stack-footer .legal-line {
  font-size: 13.5px;
  color: var(--wheat);
}

.stack-footer .legal-line a {
  color: var(--wheat);
  text-decoration: underline;
}

.stack-footer .legal-line a:hover {
  color: var(--amber);
}

.page-hero {
  background-color: var(--bg);
  padding: 100px 0 84px;
}

.page-hero .eyebrow-chip {
  margin-bottom: 22px;
}

.page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 50px;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 22px;
}

.page-hero p {
  font-size: 18px;
  color: var(--text);
  max-width: 800px;
  margin-bottom: 16px;
}

.page-hero p:last-child {
  margin-bottom: 0;
}

.service-list {
  background-color: var(--bg);
}

.service-block {
  border-top: 1px solid var(--hairline);
}

.service-block:first-child {
  border-top: none;
}

.service-block-inner {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 34px;
  padding: 78px 0;
}

.service-index {
  font-size: 42px;
  font-weight: 700;
  color: var(--amber);
  font-family: Georgia, "Times New Roman", serif;
}

.service-body h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  color: var(--text);
  margin-bottom: 14px;
}

.service-body p {
  color: var(--text);
  font-size: 16.5px;
  margin-bottom: 14px;
}

.service-body p:last-child {
  margin-bottom: 0;
}

.process-section {
  background-color: var(--panel);
  padding: 96px 0;
}

.process-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  color: var(--text);
  margin-bottom: 20px;
}

.process-section p {
  color: var(--text);
  font-size: 17px;
  margin-bottom: 16px;
  max-width: 820px;
}

.process-section .process-list {
  margin: 26px 0 10px;
  padding-left: 24px;
  max-width: 820px;
}

.process-section .process-list li {
  color: var(--text);
  font-size: 16.5px;
  margin-bottom: 12px;
}

.contact-page-main {
  background-color: var(--bg);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 110px;
}

.contact-form label {
  display: block;
  color: var(--wheat);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  background-color: var(--panel);
  border: 1px solid #4A3A22;
  color: var(--text);
  font-size: 16px;
  margin-bottom: 22px;
  border-radius: 3px;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--amber);
  outline: none;
}

.form-status {
  color: var(--wheat);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  min-height: 22px;
}

.contact-info h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  font-size: 27px;
  margin: 30px 0 12px;
}

.contact-info h2:first-child {
  margin-top: 0;
}

.contact-info p {
  color: var(--text);
  font-size: 16.5px;
  margin-bottom: 14px;
}

.contact-info .info-line {
  display: block;
  margin-bottom: 10px;
}

.contact-info .info-label {
  color: var(--amber);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  display: block;
  margin-bottom: 2px;
}

.hours-list {
  list-style: none;
}

.hours-list li {
  color: var(--text);
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list .hours-day {
  color: var(--wheat);
  font-weight: 700;
}

.faq-section {
  background-color: var(--bg);
  padding-bottom: 110px;
}

.faq-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  color: var(--text);
  margin-bottom: 34px;
}

.faq-item {
  border: 1px solid var(--hairline);
  background-color: var(--panel);
  margin-bottom: 14px;
  border-radius: 3px;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 22px;
  color: var(--text);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}

.faq-question .faq-mark {
  color: var(--amber);
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--text);
  font-size: 16px;
}

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

@media (max-width: 900px) {
  .side-nav {
    transform: translateX(-100%);
    transition: transform 0.28s ease;
  }

  .side-nav.open {
    transform: translateX(0);
  }

  .side-nav-toggle {
    display: flex;
    position: fixed;
    top: 18px;
    left: 18px;
    z-index: 70;
    width: 48px;
    height: 48px;
    background-color: var(--amber);
    border: none;
    border-radius: 3px;
    cursor: pointer;
    padding: 14px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }

  .side-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--bg);
    transition: transform 0.25s ease;
  }

  .side-nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .side-nav-toggle.active span:nth-child(2) {
    width: 0;
  }

  .side-nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-main {
    margin-left: 0;
  }

  .mirror-hero {
    padding: 92px 0 84px;
  }

  .mirror-hero-inner {
    grid-template-columns: 1fr;
  }

  .hops-graphic {
    min-height: 300px;
    max-width: 440px;
    margin: 0 auto;
  }

  .mirror-hero-text h1 {
    font-size: 40px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .metric-band-inner {
    grid-template-columns: 1fr 1fr;
  }

  .metric:nth-child(2) {
    border-right: none;
  }

  .metric:nth-child(3) {
    border-top: 1px solid var(--hairline-amber);
  }

  .metric:nth-child(4) {
    border-top: 1px solid var(--hairline-amber);
    border-right: none;
  }

  .step-num::before {
    bottom: -28px;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 20px;
  }

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

  .mirror-hero-subcopy p {
    font-size: 16.5px;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .metric-band-inner {
    grid-template-columns: 1fr;
  }

  .metric {
    border-right: none;
    border-bottom: 1px solid var(--hairline-amber);
    padding: 44px 20px;
  }

  .metric:last-child {
    border-bottom: none;
  }

  .step-item {
    grid-template-columns: 60px 1fr;
    gap: 18px;
  }

  .steps-progression::before {
    left: 29px;
  }

  .step-num {
    font-size: 32px;
  }

  .step-num::before {
    bottom: -26px;
    width: 12px;
    height: 12px;
  }

  .service-block-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 56px 0;
  }

  .service-index {
    font-size: 34px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band h2 {
    font-size: 32px;
  }

  .stack-footer-links {
    gap: 10px 20px;
  }
}
