/* ============ Esencia Coffee — Design System ============ */

:root {
  --espresso: #3b2a20;
  --roast: #6f4e37;
  --roast-dark: #5a3d2b;
  --tan: #d9c4a9;
  --tan-light: #ead9c4;
  --cream: #f5efe6;
  --white: #fffdf9;
  --sunset: #c97b4a;

  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia,
    serif;

  --max-width: 1180px;
  --radius: 14px;
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--espresso);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--espresso);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.08; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1.15; }
h3 { font-size: 1.3rem; }

p.lead {
  font-size: 1.15rem;
  color: var(--roast-dark);
  max-width: 46ch;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--roast);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.lang-note {
  font-size: 14px;
  color: var(--sunset);
  font-family: var(--font-sans);
  font-weight: 600;
}

.footer-lang-note {
  font-size: 0.85rem;
  color: var(--tan);
  margin-top: 6px;
  display: block;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 600;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition),
    box-shadow var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--espresso);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(59, 42, 32, 0.25);
}
.btn-primary:hover { background: var(--roast-dark); }

.btn-secondary {
  background: transparent;
  color: var(--espresso);
  border-color: var(--espresso);
}
.btn-secondary:hover { background: var(--espresso); color: var(--white); }

.btn-light {
  background: var(--white);
  color: var(--espresso);
}
.btn-light:hover { background: var(--tan-light); }

/* Terracotta accent — the closing CTA band's single action */
.btn-accent {
  background: var(--sunset);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(201, 123, 74, 0.3);
}
.btn-accent:hover { background: #b86a3b; }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 253, 249, 0.7);
}
.btn-outline-light:hover {
  background: rgba(255, 253, 249, 0.12);
  border-color: var(--white);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Nav ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245, 239, 230, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(59, 42, 32, 0.08);
}

.site-header.on-dark {
  background: rgba(28, 20, 15, 0.28);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  letter-spacing: 0.03em;
  font-weight: 600;
}

.brand img {
  height: 140px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 500;
}

.site-header.on-dark .nav-links,
.site-header.on-dark .brand {
  color: var(--white);
}

.nav-links a {
  opacity: 0.85;
  transition: opacity var(--transition);
  position: relative;
}
.nav-links a:hover { opacity: 1; }
.nav-links a.active { opacity: 1; }

/* Visible at every width. The header is fixed, so this keeps the primary
   action on screen while scrolling on phones too. */
.nav-cta { display: inline-flex; }

@media (max-width: 859px) {
  .nav-cta {
    padding: 10px 18px;
    font-size: 0.85rem;
    margin-left: auto;
    margin-right: 12px;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

@media (max-width: 859px) {
  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 18px;
    transform: translateY(-130%);
    transition: transform var(--transition);
    border-bottom: 1px solid rgba(59, 42, 32, 0.1);
    color: var(--espresso) !important;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { color: var(--espresso); opacity: 1; font-size: 1.05rem; }
  .nav-toggle { display: flex; }
  .site-header.on-dark .nav-toggle { color: var(--white); }
}

/* ---------- Hero ---------- */

/* Tan block spans the full viewport; content sits left inside the container
   so the right side reads as deliberate open space, not a dead column. */
/* Height is content-driven: no min-height, so the photo band below stays
   partly visible above the fold as a scroll cue. */
.hero {
  background: var(--tan-light);
  padding: 96px 0 72px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.hero-content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content {
  padding: 0;
}

.hero .text-card {
  background: none;
  border-radius: 0;
  box-shadow: none;
  max-width: 60%;
  padding: 0;
}

@media (max-width: 900px) {
  .hero .text-card {
    max-width: 80%;
  }
}

.hero-content h1 {
  color: var(--espresso);
  margin-top: 20px;
  margin-bottom: 24px;
}

.hero-content .lead {
  color: var(--espresso);
  margin-bottom: 32px;
  max-width: 90%;
}

.hero-content .eyebrow {
  color: var(--roast-dark);
}

.hero-content .cta-row .btn {
  font-size: 1rem;
}

/* Proof block under the CTA: client types, then the Google rating */
.hero-proof {
  margin-top: 36px;
}

.hero-proof-clients {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  color: rgba(59, 42, 32, 0.85);
}

.hero-proof-rating {
  margin: 10px 0 0;
  font-family: var(--font-sans);
  font-size: 15px;
  color: rgba(59, 42, 32, 0.85);
}

.hero-proof-stars {
  color: var(--sunset);
  letter-spacing: 0.06em;
}

.hero-proof-sep {
  opacity: 0.4;
}

/* ---------- Full-bleed photo band ---------- */

.photo-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0;
  width: 100%;
}

.photo-band picture {
  display: block;
  min-width: 0;
}

/* centre crop keeps the subjects in frame */
.photo-band img {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

/* Mobile: swipeable strip, cards at 75vw keeping the desktop aspect */
@media (max-width: 640px) {
  .photo-band {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .photo-band picture {
    flex: 0 0 75vw;
    scroll-snap-align: start;
  }

  .photo-band img {
    height: auto;
    aspect-ratio: 1.1;
  }
}


@media (max-width: 640px) {
  /* Left at 104px top: the header is fixed at 77px, so a smaller top pad
     tucks the eyebrow underneath it. */
  .hero {
    padding: 104px 0 56px;
  }

  .hero .text-card {
    max-width: 100%;
  }

  .hero-content .lead {
    max-width: 100%;
  }

  .hero .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero .cta-row .btn {
    width: 100%;
  }

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

  .hero-img-primary {
    grid-column: span 1;
    height: 280px;
  }

  .hero-img-secondary {
    height: 200px;
  }
}

.hero-content h1 {
  font-size: clamp(2.4rem, 3.6vw, 3.6rem);
  max-width: none;
  line-height: 1.05;
}

@media (max-width: 640px) {
  .hero-content h1 {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
  }
}

/* Subtle accent on the last word of the headline */
.hero-content h1 .accent {
  color: var(--sunset);
  font-style: italic;
}

/* Refined eyebrow with a small accent rule */
.hero-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-content .eyebrow::before {
  content: "";
  width: 34px;
  height: 1.5px;
  background: var(--sunset);
  display: inline-block;
}

/* ---------- Sections ---------- */

section {
  padding: 96px 0;
}

.section-tight { padding: 64px 0; }

.section-header {
  max-width: 640px;
  margin-bottom: 52px;
}
@media (min-width: 761px) {
  .section-header .no-wrap-heading { white-space: nowrap; max-width: none; }
}

.bg-tan { background: var(--tan-light); }
.bg-espresso { background: var(--espresso); color: var(--white); }
.bg-espresso h2, .bg-espresso h3 { color: var(--white); }
.bg-espresso p { color: rgba(255, 253, 249, 0.85); }
.bg-espresso .eyebrow { color: var(--tan-light); }
.bg-espresso .offer-card h3 { color: var(--espresso); }

/* What we do columns */

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

@media (max-width: 780px) {
  .cols-3 { grid-template-columns: 1fr; }
}

.offer-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: 0 10px 30px rgba(59, 42, 32, 0.06);
}

.offer-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--tan-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--espresso);
}
.offer-card .icon svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.offer-card p { color: var(--roast-dark); font-size: 0.98rem; }

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(59, 42, 32, 0.06);
  display: flex;
  flex-direction: column;
}
.blog-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.blog-card-body {
  padding: 26px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.blog-card-body .eyebrow { margin-bottom: 0; }
.blog-card-body h3 { font-size: 1.25rem; }
.blog-card-body p { color: var(--roast-dark); font-size: 0.95rem; flex: 1; }
.blog-card-body .read-more { color: var(--sunset); font-weight: 600; font-size: 0.92rem; }

.blog-post-body {
  max-width: 720px;
  margin: 0 auto;
  color: var(--roast-dark);
  font-size: 1.05rem;
  line-height: 1.7;
}
.blog-post-body p { margin-bottom: 20px; }
.blog-post-body h2 { margin: 36px 0 14px; }

/* Gallery grid */

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

@media (max-width: 900px) {
  .grid-photos { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid-photos { grid-template-columns: 1fr; }
}

.photo-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--tan);
  cursor: pointer;
}

.photo-tile.wide { aspect-ratio: 8 / 5; }

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}
.photo-tile:hover img { transform: scale(1.06); }

.photo-tile .tag {
  display: none;
}

.photo-group {
  grid-column: 1 / -1;
}

.photo-group .group-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 900px) {
  .photo-group .group-photos { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .photo-group .group-photos { grid-template-columns: 1fr; }
}

.photo-group .group-caption {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--roast);
  font-weight: 600;
  margin-bottom: 10px;
}

.bg-espresso .photo-group .group-caption { color: var(--tan-light); }

.photo-group .group-title {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--espresso);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.filter-row {
  display: none;
}

.filter-btn {
  display: none;
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 14, 10, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 86vh;
  border-radius: 10px;
}
.lightbox-close {
  position: absolute;
  top: 28px;
  right: 32px;
  color: var(--white);
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

/* Testimonials */

.testimonial {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  line-height: 1.5;
  max-width: 720px;
  color: var(--espresso);
}
.testimonial cite {
  display: block;
  margin-top: 18px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.9rem;
  color: var(--roast);
  font-weight: 600;
}

/* Menu / pricing */

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 10px 30px rgba(59, 42, 32, 0.06);
}

.menu-step {
  border-bottom: 1px solid var(--tan-light);
  padding: 22px 0;
}
.menu-step:last-child { border-bottom: none; }

.menu-step .step-label {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.menu-step .step-num {
  color: var(--sunset);
  font-size: 0.95rem;
  font-weight: 700;
}
.menu-step .options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.menu-step .options span {
  background: var(--tan-light);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--roast-dark);
}


.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) {
  .package-grid { grid-template-columns: 1fr; }
}

.package-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(59, 42, 32, 0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.package-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-style: italic;
  color: var(--sunset);
  letter-spacing: 0.01em;
  line-height: 1.1;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 2px;
}
.package-name::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 2px;
  background: linear-gradient(90deg, var(--sunset), rgba(201, 123, 74, 0));
}

.package-price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--espresso);
}

/* Faint gradient-faded background images on the Services intro */
.menu-hero {
  position: relative;
  overflow: hidden;
}
.menu-hero .container {
  position: relative;
  z-index: 2;
}
.text-card {
  background: var(--tan-light);
  padding: 40px 44px;
  border-radius: var(--radius);
  box-shadow: 0 24px 48px rgba(59, 42, 32, 0.16), 0 6px 16px rgba(59, 42, 32, 0.08);
  max-width: 620px;
}
@media (max-width: 760px) {
  .text-card { padding: 28px 24px; }
}
.menu-hero-bg {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 14px;
  align-items: stretch;
  padding: 0 14px;
  opacity: 0.30;
  pointer-events: none;
  z-index: 1;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
}
.menu-hero-bg img {
  flex: 1;
  width: 33.33%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
@media (max-width: 760px) {
  .menu-hero-bg { display: none; }
}
.package-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--roast-dark);
  flex: 1;
}
.package-card li::before {
  content: "— ";
  color: var(--sunset);
}

/* About page */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
}
.about-grid img {
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(59, 42, 32, 0.14);
}

.value-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}
@media (max-width: 780px) {
  .value-list { grid-template-columns: 1fr; }
}

/* Contact page */

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* Intro sits close to the row below it instead of a screen of dead space */
.contact-intro {
  padding: 88px 0 0;
}

.contact-intro .lead {
  max-width: 520px;
}

.contact-form-section {
  padding-top: 56px;
}

@media (max-width: 640px) {
  .contact-intro {
    padding-top: 56px;
  }

  .contact-form-section {
    padding-top: 40px;
  }
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 36px 36px;
  box-shadow: 0 10px 30px rgba(59, 42, 32, 0.06);
  min-height: 420px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}
/* Offset so the first label lands on the same baseline as the card heading
   in the column to its left */
.contact-info-list {
  padding-top: 38px;
}

@media (max-width: 900px) {
  .contact-info-list {
    padding-top: 0;
  }
}

/* Negative margin centres the 40px circle on the label's line box rather
   than on the whole label-plus-value block */
.contact-info-item .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--tan-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--espresso);
  margin-top: calc((1.4em - 40px) / 2);
}
.contact-info-item .icon svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 4px;
}
.contact-info-item p { font-size: 0.95rem; color: var(--roast-dark); }

/* Menu page */

.menu-page-top {
  padding-top: 88px;
}

/* Drink builder: four columns straight on the tan, divided by brass
   hairlines. No card, no radius, no shadow. */
.drink-builder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 48px;
}

.builder-step {
  padding: 0 28px;
  border-left: 1px solid rgba(111, 78, 55, 0.2);
}

.builder-step:first-child {
  padding-left: 0;
  border-left: none;
}

.builder-step:last-child {
  padding-right: 0;
}

.builder-num {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--sunset);
  margin-bottom: 10px;
}

.builder-label {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.builder-options {
  list-style: none;
  padding: 0;
  margin: 0;
}

.builder-options li {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: rgba(59, 42, 32, 0.8);
  padding: 3px 0;
}

/* Mobile: steps stack, hairlines turn horizontal */
@media (max-width: 760px) {
  .drink-builder {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .builder-step {
    padding: 24px 0;
    border-left: none;
    border-top: 1px solid rgba(111, 78, 55, 0.2);
  }

  .builder-step:first-child {
    padding-top: 0;
    border-top: none;
  }

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

@media (max-width: 640px) {
  .menu-page-top {
    padding-top: 56px;
  }
}

/* Menu page: two photos max, side by side on desktop, stacked on mobile */
.menu-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.menu-photos img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 0;
}

@media (max-width: 640px) {
  .menu-photos {
    grid-template-columns: 1fr;
  }

  .menu-photos img {
    height: auto;
    aspect-ratio: 1;
  }
}

/* Pricing page */

.pricing-page {
  padding: 88px 0 56px;
}

.pricing-page .lead {
  max-width: 560px;
}

@media (max-width: 640px) {
  .pricing-page {
    padding: 56px 0 40px;
  }
}

/* Three items straight on the tan, divided by brass hairlines — matches
   the Menu page's drink builder rather than a card grid. */
.pricing-factors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
}

.pricing-factor {
  padding: 0 28px;
  border-left: 1px solid rgba(111, 78, 55, 0.2);
}

.pricing-factor:first-child {
  padding-left: 0;
  border-left: none;
}

.pricing-factor:last-child {
  padding-right: 0;
}

.pricing-factor h3 {
  margin-bottom: 6px;
}

.pricing-factor p {
  color: var(--roast-dark);
  font-size: 0.95rem;
}

@media (max-width: 760px) {
  .pricing-factors {
    grid-template-columns: 1fr;
  }

  .pricing-factor {
    padding: 24px 0;
    border-left: none;
    border-top: 1px solid rgba(111, 78, 55, 0.2);
  }

  .pricing-factor:first-child {
    padding-top: 0;
    border-top: none;
  }

  .pricing-factor:last-child {
    padding-bottom: 0;
  }
}

.pricing-close {
  margin-top: 40px;
  max-width: 560px;
  color: var(--roast-dark);
}

/* Closing CTA band */

.cta-band {
  background: var(--espresso);
  color: var(--white);
  text-align: center;
  padding: 90px 0;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255, 253, 249, 0.8); margin: 14px 0 32px; }
.cta-band .cta-row { justify-content: center; }

/* Footer */

.site-footer {
  background: var(--espresso);
  color: rgba(255, 253, 249, 0.75);
  padding: 56px 0 30px;
  font-size: 0.92rem;
}
.site-footer.top-border {
  border-top: 1px solid rgba(255, 253, 249, 0.12);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
.footer-grid h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-grid a {
  display: block;
  margin-bottom: 10px;
  opacity: 0.85;
  transition: opacity var(--transition);
}
.footer-grid a:hover { opacity: 1; }

.footer-grid a.footer-link-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-grid a.footer-link-icon svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-brand img { height: 140px; width: auto; }
.footer-bottom {
  border-top: 1px solid rgba(255, 253, 249, 0.12);
  padding-top: 22px;
  font-size: 0.82rem;
  opacity: 0.6;
}

/* FAQ */

.faq-list {
  max-width: 760px;
}

.faq-item {
  border-bottom: 1px solid var(--tan-light);
  padding: 22px 0;
}
.faq-item:first-child { border-top: 1px solid var(--tan-light); }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--espresso);
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 1.4rem;
  color: var(--sunset);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  margin-top: 14px;
  color: var(--roast-dark);
  font-size: 0.98rem;
  max-width: 64ch;
}

/* Utility */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }
