/* @font-face declarations */
@font-face {
  font-family: 'Familjen Grotesk';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('fonts/familjen-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Familjen Grotesk';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('fonts/familjen-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('fonts/manrope-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('fonts/manrope-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('fonts/manrope-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('fonts/manrope-700.woff2') format('woff2');
}

:root {
  --ink: #1C1A17;
  --paper: #F7F4F0;
  --board: #FFFFFF;
  --cedar: #9C5A2A;
  --cedar-ink: #8A4E22;
  --cedar-lt: #C2793C;
  --cedar-glow: #E8B27C;
  --muted: #5E5850;

  --bg-page: var(--paper);
  --bg-card: var(--board);
  --text-main: var(--ink);
  --text-muted: var(--muted);
  --border-color: rgba(28, 26, 23, 0.1);
  --container-width: 1200px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-page: var(--ink);
    --bg-card: #26231F;
    --text-main: #E9E4DC;
    --text-muted: #B5ADA2;
    --border-color: rgba(233, 228, 220, 0.15);
  }
}

[data-theme="dark"] {
  --bg-page: var(--ink);
  --bg-card: #26231F;
  --text-main: #E9E4DC;
  --text-muted: #B5ADA2;
  --border-color: rgba(233, 228, 220, 0.15);
}

/* Base styles */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-page);
  color: var(--text-main);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 56px; /* Space for mobile sticky footer */
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Familjen Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-main);
  margin-top: 0;
  font-weight: 700;
  line-height: 1.15;
}

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

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

/* Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

/* Preview Ribbon */
.preview-ribbon {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 13px;
  line-height: 1.4;
  position: relative;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .preview-ribbon {
    flex-direction: row;
    gap: 15px;
    padding: 8px 40px;
  }
}

.preview-ribbon p {
  margin: 0;
  font-weight: 500;
}

.preview-ribbon-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.preview-ribbon-actions a {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
  color: #ffffff;
  transition: background-color 0.2s;
}

.preview-ribbon-actions a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.preview-ribbon-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  padding: 0 5px;
  line-height: 1;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

/* Masthead styling */
.masthead {
  background-color: var(--ink);
  color: #E9E4DC;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.masthead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-icon {
  color: var(--cedar-glow);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: 'Familjen Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #ffffff;
}

.brand-location {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav elements */
.nav-details {
  position: relative;
  width: auto;
}

.nav-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #ffffff;
}

.nav-summary::-webkit-details-marker {
  display: none;
}

/* Hamburger icon */
.nav-summary::before {
  content: "☰";
  font-size: 24px;
}

.nav-details[open] .nav-summary::before {
  content: "✕";
}

.nav-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 6px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 160px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  margin-top: 10px;
}

.nav-menu a {
  padding: 10px 15px;
  font-weight: 600;
  font-size: 15px;
  color: #E9E4DC;
  border-radius: 4px;
}

.nav-menu a:hover, .nav-menu a:focus {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 25px;
}

.nav-desktop a {
  font-weight: 600;
  font-size: 15px;
  color: #E9E4DC;
  transition: color 0.2s;
}

.nav-desktop a:hover {
  color: #ffffff;
}

.nav-desktop .btn-nav {
  background-color: var(--cedar);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background-color 0.2s;
}

.nav-desktop .btn-nav:hover {
  background-color: var(--cedar-lt);
}

@media (min-width: 768px) {
  .nav-details {
    display: none !important;
  }
  .nav-desktop {
    display: flex;
  }
}

/* Hero Section */
.hero {
  background-color: var(--bg-page);
  padding: 40px 0 60px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .hero {
    padding: 80px 0 100px;
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
  }
}

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

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cedar-ink);
  margin-bottom: 15px;
}

[data-theme="dark"] .eyebrow,
@media (prefers-color-scheme: dark) {
  :root .eyebrow {
    color: var(--cedar-glow);
  }
}

.hero-content h1 {
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 35px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 35px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
}

.btn-dark {
  background-color: var(--ink);
  color: #ffffff;
  border: 1px solid var(--ink);
}

.btn-dark:hover {
  background-color: #33302b;
  border-color: #33302b;
}

.btn-outline {
  background-color: transparent;
  color: var(--cedar-ink);
  border: 1px solid var(--cedar-ink);
}

.btn-outline:hover {
  background-color: rgba(156, 90, 42, 0.05);
}

[data-theme="dark"] .btn-dark,
@media (prefers-color-scheme: dark) {
  :root .btn-dark {
    background-color: #E9E4DC;
    color: var(--ink);
    border-color: #E9E4DC;
  }
  :root .btn-dark:hover {
    background-color: #ffffff;
    border-color: #ffffff;
  }
  :root .btn-outline {
    color: var(--cedar-glow);
    border-color: var(--cedar-glow);
  }
  :root .btn-outline:hover {
    background-color: rgba(232, 178, 124, 0.05);
  }
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Overlapping photo box styling */
.hero-image-container {
  position: relative;
  width: 100%;
}

.hero-image {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}

.hero-image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.hero-badge-card {
  position: absolute;
  bottom: -20px;
  right: 15px;
  background-color: var(--ink);
  color: #E9E4DC;
  padding: 15px 20px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  width: 110px;
  z-index: 10;
}

.hero-badge-card svg {
  color: var(--cedar-glow);
}

.hero-badge-text {
  font-family: 'Familjen Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* Services section */
.section-services {
  background-color: var(--board);
  padding: 60px 0 80px;
}

[data-theme="dark"] .section-services,
@media (prefers-color-scheme: dark) {
  :root .section-services {
    background-color: #211F1C;
  }
}

.section-header {
  margin-bottom: 45px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  margin-top: 8px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

@media (min-width: 576px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-content h3 {
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card-content p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Promise Section (No hidden fees) */
.section-promise {
  background-color: var(--ink);
  color: #E9E4DC;
  padding: 60px 0 70px;
}

.section-promise .eyebrow {
  color: var(--cedar-glow);
}

.section-promise h2 {
  color: #ffffff;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  margin-top: 8px;
  margin-bottom: 20px;
}

.promise-lead {
  font-size: 16px;
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: 40px;
}

.chips-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .chips-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.chip-card {
  background-color: #26231F;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.chip-card svg {
  color: var(--cedar-lt);
  flex-shrink: 0;
  margin-top: 2px;
}

.chip-card p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.promise-footer {
  font-size: 12px;
  color: var(--muted);
}

/* Story Section */
.section-story {
  background-color: var(--bg-page);
  padding: 60px 0 80px;
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .story-inner {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
  }
}

.story-image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}

.story-image-wrapper img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.story-image-outline {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-image-outline svg {
  width: 120px;
  height: 120px;
  color: rgba(255, 255, 255, 0.4);
}

.story-content h2 {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  margin-top: 8px;
  margin-bottom: 20px;
}

.story-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.story-body p {
  margin-top: 0;
  margin-bottom: 20px;
}

.story-quote {
  border-left: 3px solid var(--cedar);
  padding-left: 20px;
  margin: 30px 0 0;
  font-style: italic;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.5;
}

[data-theme="dark"] .story-quote,
@media (prefers-color-scheme: dark) {
  :root .story-quote {
    border-left-color: var(--cedar-glow);
  }
}

/* Service Area + Hours Band */
.section-area-hours {
  background-color: var(--board);
  padding: 60px 0 70px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

[data-theme="dark"] .section-area-hours,
@media (prefers-color-scheme: dark) {
  :root .section-area-hours {
    background-color: #211F1C;
  }
}

.area-hours-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .area-hours-inner {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
  }
}

.area-content h2 {
  font-size: clamp(28px, 4vw, 36px);
  letter-spacing: -0.02em;
  margin-top: 8px;
  margin-bottom: 20px;
}

.towns-list {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 500;
}

.hours-card {
  background-color: var(--bg-page);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 25px;
}

.hours-header {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cedar-ink);
  margin-bottom: 20px;
}

[data-theme="dark"] .hours-header,
@media (prefers-color-scheme: dark) {
  :root .hours-header {
    color: var(--cedar-glow);
  }
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.hours-table tr {
  border-bottom: 1px solid var(--border-color);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 10px 0;
  font-size: 14px;
}

.hours-day {
  font-weight: 700;
}

.hours-time {
  text-align: right;
  color: var(--text-muted);
}

.hours-note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Contact Band */
.section-contact {
  background-color: var(--ink);
  color: #E9E4DC;
  padding: 60px 0 80px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 45px;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .contact-inner {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.contact-info h2 {
  color: #ffffff;
  font-size: clamp(32px, 5vw, 44px);
  letter-spacing: -0.02em;
  margin-bottom: 25px;
}

.btn-cedar-cta {
  background-color: var(--cedar);
  color: #ffffff;
  font-size: clamp(20px, 3vw, 26px);
  font-family: 'Familjen Grotesk', sans-serif;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 4px;
  width: 100%;
  max-width: 320px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s;
  margin-bottom: 30px;
}

.btn-cedar-cta:hover {
  background-color: var(--cedar-lt);
}

.contact-details {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 480px;
}

.contact-details span {
  display: inline-block;
}

/* Mock Form Card */
.form-card {
  background-color: var(--board);
  border-radius: 8px;
  padding: 30px;
  color: var(--ink);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

[data-theme="dark"] .form-card,
@media (prefers-color-scheme: dark) {
  :root .form-card {
    background-color: #26231F;
    color: #E9E4DC;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
}

.form-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: inherit;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: inherit;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,0.12);
  background-color: var(--bg-page);
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-main);
  transition: border-color 0.2s;
}

[data-theme="dark"] .form-control,
@media (prefers-color-scheme: dark) {
  :root .form-control {
    border-color: rgba(255,255,255,0.12);
  }
}

.form-control:focus {
  outline: none;
  border-color: var(--cedar);
}

.btn-submit {
  width: 100%;
  background-color: var(--ink);
  color: #ffffff;
  border: none;
  padding: 14px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.2s;
}

[data-theme="dark"] .btn-submit,
@media (prefers-color-scheme: dark) {
  :root .btn-submit {
    background-color: var(--cedar);
  }
  :root .btn-submit:hover {
    background-color: var(--cedar-lt);
  }
}

.btn-submit:hover {
  background-color: #33302b;
}

.form-disclaimer {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.4;
}

/* Footer styling */
.footer {
  background-color: #12110F;
  color: var(--muted);
  padding: 20px 0;
  font-size: 12px;
}

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

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-left {
  line-height: 1.6;
}

.footer-right {
  font-weight: 700;
  color: #E9E4DC;
}

/* Mobile Sticky Footer */
.sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  background-color: var(--cedar);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .sticky-footer {
    display: none !important;
  }
}


/* --- SERVICES PAGE EXTRA STYLING --- */
.services-intro {
  background-color: var(--bg-page);
  padding: 50px 0 30px;
}

.services-intro h1 {
  font-size: clamp(36px, 6vw, 54px);
  letter-spacing: -0.03em;
  margin-bottom: 15px;
}

.services-intro p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0;
}

.services-list-container {
  background-color: var(--board);
  padding: 50px 0 70px;
}

[data-theme="dark"] .services-list-container,
@media (prefers-color-scheme: dark) {
  :root .services-list-container {
    background-color: #211F1C;
  }
}

.editorial-rows {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.editorial-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .editorial-row {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  
  .editorial-row:nth-child(even) .editorial-image-col {
    order: 2;
  }
}

.editorial-image-col {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.editorial-image-col img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.editorial-text-col {
  display: flex;
  flex-direction: column;
}

.editorial-text-col h2 {
  font-size: clamp(26px, 4vw, 36px);
  letter-spacing: -0.02em;
  margin-bottom: 15px;
}

.editorial-text-col p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 15px 0;
}

.editorial-text-col p:last-child {
  margin-bottom: 0;
}

.editorial-accent-box {
  background-color: var(--bg-page);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 25px;
  margin-top: 20px;
}

.editorial-accent-box h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--cedar-ink);
}

[data-theme="dark"] .editorial-accent-box h3,
@media (prefers-color-scheme: dark) {
  :root .editorial-accent-box h3 {
    color: var(--cedar-glow);
  }
}

.editorial-accent-box p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.promise-full-block {
  background-color: var(--ink);
  color: #E9E4DC;
  border-radius: 8px;
  padding: 40px;
  margin-top: 80px;
}

.promise-full-block h2 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 15px;
}

.promise-full-block p {
  font-size: 15px;
  line-height: 1.6;
  color: #E9E4DC;
  margin: 0 0 25px 0;
}

.promise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .promise-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.promise-grid-card {
  background-color: #26231F;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 20px;
}

.promise-grid-card svg {
  color: var(--cedar-lt);
  margin-bottom: 15px;
}

.promise-grid-card h3 {
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 8px;
}

.promise-grid-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
  margin: 0;
}

.promise-note-line {
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}
