:root {
  --laurel-maroon: #7f0025;
  --laurel-maroon-dark: #64001d;
  --laurel-ink: #1b1d26;
  --laurel-ink-soft: #2b2e39;
  --laurel-cream: #f5f1ee;
  --laurel-paper: #fffdfb;
  --laurel-gold: #c6a76a;
  --laurel-line: rgba(27, 29, 38, 0.12);
  --laurel-shadow: 0 24px 60px rgba(27, 29, 38, 0.14);
}

html {
  scroll-behavior: smooth;
}

body.laurel-home-page {
  margin: 0;
  color: var(--laurel-ink);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(127, 0, 37, 0.18), transparent 28%),
    radial-gradient(circle at left top, rgba(198, 167, 106, 0.18), transparent 30%),
    linear-gradient(180deg, #f2ede7 0%, #fff 42%, #f6f1ed 100%);
}

body.laurel-home-page .container {
  max-width: none;
  margin: 0;
  padding: 0;
}

body.laurel-home-page .app-shell {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.laurel-home-page .btn-orange {
  background: var(--laurel-maroon);
  border-color: var(--laurel-maroon);
}

body.laurel-home-page .btn-dark {
  background: var(--laurel-ink);
  color: #fff;
}

body.laurel-home-page .chat-fab {
  background: linear-gradient(135deg, var(--laurel-maroon), var(--laurel-ink));
  box-shadow: 0 20px 44px rgba(27, 29, 38, 0.28);
}

body.laurel-home-page .chat-window {
  border: 1px solid rgba(127, 0, 37, 0.12);
  box-shadow: 0 30px 60px rgba(27, 29, 38, 0.24);
}

body.laurel-home-page .chat-head {
  background: var(--laurel-ink);
}

body.laurel-home-page .chat-input button {
  background: var(--laurel-maroon);
}

body.laurel-home-page .app-bottombar {
  background: rgba(27, 29, 38, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body.laurel-home-page .app-tab.active,
body.laurel-home-page .app-tab:hover {
  color: #fff;
}

.laurel-shell {
  width: min(1420px, calc(100% - 48px));
  margin: 0 auto;
}

.laurel-header {
  position: relative;
  z-index: 40;
}

.laurel-utility-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(27, 29, 38, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.laurel-utility-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 76px;
}

.laurel-menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
}

.laurel-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  margin: 3px 0;
}

.laurel-nav {
  flex: 1 1 auto;
}

.laurel-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.laurel-menu-item {
  position: relative;
}

.laurel-menu-link,
.laurel-submenu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 12px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.laurel-menu-link:hover,
.laurel-submenu-toggle:hover,
.laurel-menu-item:focus-within > .laurel-menu-link,
.laurel-menu-item:focus-within > .laurel-submenu-toggle {
  background: rgba(255, 255, 255, 0.08);
}

.laurel-caret {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.laurel-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 280px;
  padding: 12px;
  display: grid;
  gap: 6px;
  background: rgba(255, 253, 251, 0.98);
  border-radius: 22px;
  border: 1px solid rgba(27, 29, 38, 0.08);
  box-shadow: var(--laurel-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.laurel-submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--laurel-ink);
  font-weight: 600;
}

.laurel-submenu a:hover {
  background: rgba(127, 0, 37, 0.08);
  color: var(--laurel-maroon);
}

.laurel-menu-item.has-children:hover .laurel-submenu,
.laurel-menu-item.has-children:focus-within .laurel-submenu,
.laurel-menu-item.has-children.is-open .laurel-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.laurel-utility-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.laurel-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.laurel-icon-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.laurel-icon-btn:hover {
  transform: translateY(-1px);
  background: rgba(127, 0, 37, 0.44);
  border-color: rgba(255, 255, 255, 0.3);
}

.laurel-brand-bar {
  background: #7f0025;
  color: #fff;
}

.laurel-brand-inner {
  display: grid;
  grid-template-columns: minmax(380px, 520px) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 30px 0 38px;
}

.laurel-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.laurel-brand-mark img {
  display: block;
  width: min(100%, 620px);
  height: auto;
  object-fit: contain;
}

.laurel-overline,
.laurel-section-label {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--laurel-gold);
  font-weight: 800;
}

.laurel-brand-contact h2,
.laurel-section-head h2,
.laurel-story-copy h1,
.laurel-footer-block h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.laurel-brand-contact h2 {
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.14;
}

.laurel-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.laurel-contact-grid a {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.laurel-contact-grid span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
}

.laurel-brand-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.laurel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.laurel-btn-primary {
  color: #fff;
  background: var(--laurel-maroon);
}

.laurel-btn-light {
  color: var(--laurel-ink);
  background: #fff;
}

.laurel-btn-outline {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.32);
}

.laurel-btn-secondary {
  color: var(--laurel-ink);
  background: #fbf7f2;
  border-color: rgba(27, 29, 38, 0.12);
}

.laurel-main {
  padding: 38px 0 72px;
}

.laurel-story {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 30px;
  align-items: stretch;
}

.laurel-story-copy,
.laurel-story-media,
.laurel-resource-panel,
.laurel-location-panel,
.laurel-footer-block {
  border-radius: 30px;
  box-shadow: var(--laurel-shadow);
}

.laurel-story-copy {
  padding: 36px;
  background: var(--laurel-paper);
  border: 1px solid var(--laurel-line);
}

.laurel-story-copy h1 {
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: 0.98;
  margin-bottom: 22px;
}

.laurel-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.laurel-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.laurel-hero-tags li {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(127, 0, 37, 0.06);
  border: 1px solid rgba(127, 0, 37, 0.1);
  font-size: 14px;
  font-weight: 700;
}

.laurel-story-copy p {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.72;
  color: rgba(27, 29, 38, 0.88);
}

.laurel-notice-card {
  margin-top: 28px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(127, 0, 37, 0.08), rgba(27, 29, 38, 0.02));
  border: 1px solid rgba(127, 0, 37, 0.18);
  border-radius: 24px;
}

.laurel-notice-card a {
  color: var(--laurel-maroon);
  font-weight: 800;
}

.laurel-story-media {
  padding: 18px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(27, 29, 38, 0.08);
}

.laurel-story-image {
  position: relative;
  height: 100%;
  min-height: 540px;
  overflow: hidden;
  border-radius: 24px;
}

.laurel-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.03);
  display: block;
}

.laurel-services-section {
  margin-top: 36px;
  padding: 44px 0 52px;
  background: linear-gradient(180deg, var(--laurel-ink) 0%, var(--laurel-ink-soft) 100%);
}

.laurel-section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.laurel-section-head.compact {
  margin-bottom: 22px;
}

.laurel-section-head h2 {
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.04;
  color: #fff;
}

.laurel-resource-section .laurel-section-head h2,
.laurel-footer .laurel-section-label,
.laurel-resource-panel .laurel-section-head h2,
.laurel-location-panel .laurel-section-head h2 {
  color: var(--laurel-ink);
}

.laurel-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.laurel-service-card {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 50px rgba(9, 11, 16, 0.28);
}

.laurel-service-media {
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
}

.laurel-service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.laurel-service-body {
  padding: 24px;
}

.laurel-service-body h3 {
  margin: 0 0 12px;
  font-size: 24px;
  font-family: Georgia, "Times New Roman", serif;
}

.laurel-service-body p {
  margin: 0 0 20px;
  line-height: 1.75;
  color: rgba(27, 29, 38, 0.82);
}

.laurel-resource-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.laurel-resource-panel,
.laurel-location-panel {
  padding: 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(27, 29, 38, 0.08);
}

.laurel-resource-links {
  display: grid;
  gap: 12px;
}

.laurel-resource-links a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 18px;
  background: var(--laurel-paper);
  border: 1px solid rgba(127, 0, 37, 0.14);
  color: var(--laurel-ink);
  font-weight: 700;
}

.laurel-resource-links a:hover {
  color: var(--laurel-maroon);
  border-color: rgba(127, 0, 37, 0.32);
}

.laurel-location-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.laurel-location-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(127, 0, 37, 0.08);
  border: 1px solid rgba(127, 0, 37, 0.12);
  font-weight: 700;
}

.laurel-footer {
  padding: 0 0 120px;
}

.laurel-footer-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.laurel-footer-block {
  padding: 26px;
  background: var(--laurel-ink);
  color: #fff;
}

.laurel-footer-block h3 {
  font-size: 28px;
  line-height: 1.16;
}

.laurel-footer-block a {
  color: var(--laurel-gold);
}

.laurel-search-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 72px 18px 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
  z-index: 90;
}

.laurel-search-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.laurel-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 29, 38, 0.72);
}

.laurel-search-panel {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: 26px;
  border-radius: 30px;
  background: var(--laurel-paper);
  box-shadow: 0 36px 90px rgba(9, 11, 16, 0.34);
}

.laurel-search-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.laurel-search-head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.02;
  font-family: Georgia, "Times New Roman", serif;
}

.laurel-search-close {
  border: 0;
  background: transparent;
  color: var(--laurel-ink);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.laurel-search-input-wrap {
  margin-top: 18px;
}

.laurel-search-input-wrap input {
  width: 100%;
  min-height: 62px;
  padding: 0 20px;
  border-radius: 18px;
  border: 1px solid rgba(27, 29, 38, 0.12);
  background: #fff;
  color: var(--laurel-ink);
  font-size: 18px;
}

.laurel-search-results {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  max-height: min(58vh, 520px);
  overflow: auto;
}

.laurel-search-result {
  display: block;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(27, 29, 38, 0.08);
  background: #fff;
  color: var(--laurel-ink);
}

.laurel-search-result strong,
.laurel-search-result span {
  display: block;
}

.laurel-search-result strong {
  font-size: 16px;
}

.laurel-search-result span {
  margin-top: 4px;
  color: rgba(27, 29, 38, 0.58);
  font-size: 13px;
}

.laurel-search-empty {
  padding: 18px;
  border-radius: 18px;
  background: rgba(127, 0, 37, 0.06);
  color: rgba(27, 29, 38, 0.72);
}

body.laurel-search-open {
  overflow: hidden;
}

@media (max-width: 1180px) {
  .laurel-contact-grid {
    grid-template-columns: 1fr;
  }

  .laurel-story {
    grid-template-columns: 1fr;
  }

  .laurel-story-image {
    min-height: 440px;
  }

  .laurel-service-grid,
  .laurel-resource-section,
  .laurel-footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .laurel-header {
    position: relative;
  }

  .laurel-menu-toggle {
    display: inline-flex;
  }

  .laurel-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 16px 24px 24px;
    background: rgba(27, 29, 38, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: none;
  }

  .laurel-home-page.nav-open .laurel-nav {
    display: block;
  }

  .laurel-menu {
    flex-direction: column;
    align-items: stretch;
  }

  .laurel-menu-link,
  .laurel-submenu-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 14px 0;
    border-radius: 0;
  }

  .laurel-submenu {
    position: static;
    min-width: 0;
    padding: 0 0 8px 16px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .laurel-menu-item.has-children:hover .laurel-submenu,
  .laurel-menu-item.has-children:focus-within .laurel-submenu {
    display: none;
  }

  .laurel-menu-item.has-children.is-open .laurel-submenu {
    display: grid;
  }

  .laurel-submenu a {
    color: rgba(255, 255, 255, 0.82);
    padding: 10px 0;
  }

  .laurel-submenu a:hover {
    background: transparent;
    color: #fff;
  }

  .laurel-brand-inner {
    grid-template-columns: 1fr;
    padding-top: 20px;
  }
}

@media (max-width: 640px) {
  .laurel-shell {
    width: min(100% - 24px, 100%);
  }

  .laurel-utility-inner {
    gap: 12px;
    min-height: 68px;
  }

  .laurel-utility-tools {
    gap: 8px;
  }

  .laurel-icon-btn {
    width: 38px;
    height: 38px;
  }

  .laurel-brand-mark {
    min-height: 124px;
    padding: 18px;
  }

  .laurel-story-copy,
  .laurel-resource-panel,
  .laurel-location-panel,
  .laurel-footer-block,
  .laurel-search-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .laurel-story-copy h1,
  .laurel-section-head h2,
  .laurel-search-head h2,
  .laurel-footer-block h3 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .laurel-story-copy p,
  .laurel-service-body p {
    font-size: 16px;
  }

  .laurel-story-image {
    min-height: 320px;
  }

  .laurel-brand-actions,
  .laurel-contact-grid,
  .laurel-hero-actions {
    gap: 10px;
  }

  .laurel-btn,
  .laurel-resource-links a {
    width: 100%;
  }

  .laurel-search-modal {
    padding-top: 24px;
  }

  .laurel-footer {
    padding-bottom: 104px;
  }
}
