:root {
  --navy: #201611;
  --navy-2: #0f0a07;
  --navy-3: #2b211c;
  --blue: #7a8662;
  --blue-soft: #eef1e7;
  --gold: #b59661;
  --gold-deep: #a85635;
  --gold-soft: #f6ede2;
  --cream: #f9f4eb;
  --olive: #50553c;
  --text: #241913;
  --muted: #736255;
  --line: #e8daca;
  --white: #ffffff;
  --success: #25864a;
  --danger: #c94f39;
  --oncall: #4b79d8;
  --shadow: 0 24px 50px rgba(36, 25, 19, 0.14);
  --shadow-soft: 0 18px 36px rgba(36, 25, 19, 0.1);
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Source Sans 3", Arial, sans-serif;
  --script: "Allura", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

button,
input,
select,
textarea {
  font: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  height: 44px;
  padding: 0 25px;
  border: 0;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

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

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 18px rgba(23, 16, 13, 0.18);
}

.btn-gold {
  background: linear-gradient(135deg, #d99a8d, #c87565);
  color: var(--white);
}

.btn-outline {
  background: #ffffff;
  border: 1px solid var(--gold);
  color: #7a4438;
}

.btn-soft {
  background: #f5e9e3;
  color: var(--navy);
}

.btn-line {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--navy);
}

.btn-rose {
  background: #bd735f;
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(189, 115, 95, 0.18);
}

.btn-dark {
  background: #050403;
  border: 1px solid #050403;
  color: #ffffff;
}

.btn-ember,
.btn-cream,
.btn-line-light,
.btn-portal-strong,
.btn-success,
.btn-danger {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.btn-ember {
  background: linear-gradient(135deg, #b85f3d, #8e3f22);
  color: #fff8f0;
  box-shadow: 0 14px 28px rgba(143, 63, 34, 0.24);
}

.btn-cream {
  background: linear-gradient(180deg, #fff7ec, #f3e6d2);
  color: var(--gold-deep);
  border: 1px solid rgba(181, 150, 97, 0.35);
}

.btn-line-light {
  background: transparent;
  border: 1px solid rgba(255, 236, 206, 0.7);
  color: #fff4df;
}

.btn-portal-strong {
  background: rgba(19, 12, 9, 0.8);
  border: 1px solid rgba(255, 228, 189, 0.45);
  color: #f7e4c4;
  box-shadow: 0 12px 22px rgba(15, 10, 7, 0.22);
}

.btn-success {
  background: linear-gradient(135deg, #329d59, #1f733d);
  color: #f7fff8;
  box-shadow: 0 12px 24px rgba(37, 134, 74, 0.2);
}

.btn-danger {
  background: linear-gradient(135deg, #d75d47, #b54332);
  color: #fff7f4;
  box-shadow: 0 12px 24px rgba(201, 79, 57, 0.2);
}

.icon-inline,
.brand-icon,
.trust-icon svg,
.gold-icon svg,
.service-link-icon svg,
.footer-contact-icon svg {
  display: block;
}

.brand-icon {
  width: 38px;
  height: 38px;
  color: var(--gold);
}

.service-link-icon,
.footer-contact-icon {
  width: 18px;
  height: 18px;
}

.landing-page {
  background: #ffffff;
}

.nav {
  height: 78px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 20;
}

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

.logo-copy strong {
  display: block;
  font-family: var(--serif);
  font-size: 25px;
  letter-spacing: 0.04em;
  color: var(--navy);
  line-height: 0.9;
}

.logo-copy small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 9px;
  font-weight: 800;
  color: #50627a;
}

.links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
}

.links a:hover {
  color: var(--blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-portal {
  border-color: rgba(5, 36, 81, 0.16);
  background: #ffffff;
  color: var(--navy);
  box-shadow: 0 10px 22px rgba(5, 36, 81, 0.08);
}

.btn-portal:hover {
  color: var(--blue);
  border-color: rgba(29, 103, 178, 0.22);
}

.hero {
  min-height: 553px;
  background:
    linear-gradient(
      90deg,
      #f9fcff 0%,
      rgba(249, 252, 255, 0.92) 35%,
      rgba(249, 252, 255, 0.48) 61%,
      rgba(249, 252, 255, 0.12) 100%
    ),
    url("https://images.unsplash.com/photo-1629909613654-28e377c37b09?q=80&w=1800&auto=format&fit=crop")
      center right / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.09));
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  min-height: 553px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 15px;
  background: var(--gold);
}

.hero h1 {
  margin: 0 0 26px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 66px;
  line-height: 0.93;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero-copy p {
  max-width: 455px;
  margin: 0 0 33px;
  color: #485a72;
  font-size: 17px;
  line-height: 1.82;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.hero-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check {
  width: 17px;
  height: 17px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: var(--gold);
  font-size: 11px;
  flex: 0 0 auto;
}

.appt-card {
  width: 320px;
  justify-self: center;
  padding: 28px 28px 31px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.appt-card h2 {
  margin: 0 0 21px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 23px;
  text-align: center;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  gap: 10px;
}

.field {
  width: 100%;
  height: 36px;
  padding: 0 12px;
  border: 1px solid #dbe2e8;
  border-radius: 2px;
  background: #ffffff;
  color: #526174;
  font-size: 12px;
  outline: none;
}

.field:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29, 103, 178, 0.09);
}

textarea.field {
  height: 70px;
  padding-top: 11px;
  resize: none;
}

.success-text {
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.trust-strip {
  position: relative;
  z-index: 4;
  max-width: 1110px;
  margin: -66px auto 0;
  min-height: 130px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 18px 38px rgba(13, 35, 69, 0.13);
}

.trust-item {
  padding: 26px 18px;
  text-align: center;
  color: var(--navy);
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 8px;
  color: var(--blue);
}

.trust-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.04;
}

.section {
  padding: 38px 0 22px;
  background: #ffffff;
}

.section-title {
  margin-bottom: 25px;
  text-align: center;
}

.kicker {
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-title h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1.05;
}

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

.service-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: 0 8px 18px rgba(5, 36, 81, 0.04);
}

.service-img {
  height: 128px;
}

.service-body {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 13px;
  padding: 19px;
}

.gold-icon {
  width: 33px;
  height: 33px;
  color: var(--gold);
}

.service-card h3 {
  margin: 0 0 7px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1;
}

.service-card p {
  margin: 0 0 9px;
  color: #5e6f84;
  font-size: 12px;
  line-height: 1.45;
}

.learn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
}

.learn svg {
  width: 12px;
  height: 12px;
}

.care-band {
  margin-top: 18px;
  padding: 44px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 85% 0%, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(135deg, #052451, #071a3a);
}

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

.care-left {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  align-items: center;
}

.circle-tooth {
  width: 85px;
  height: 85px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
}

.circle-tooth svg {
  width: 42px;
  height: 42px;
}

.care-band h2 {
  margin: 0 0 9px;
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1.02;
  text-transform: uppercase;
}

.care-band p {
  margin: 0;
  color: #d9e6f3;
}

.care-list {
  display: grid;
  gap: 12px;
}

.care-list div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #ffffff;
}

.care-list .check {
  margin-top: 2px;
  background: var(--gold);
  border-color: var(--gold);
  color: #ffffff;
}

.who {
  padding: 37px 0 24px;
}

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

.who-card {
  min-height: 145px;
  display: grid;
  grid-template-columns: 135px 1fr;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 8px 18px rgba(5, 36, 81, 0.04);
}

.who-img {
  height: 145px;
}

.who-body {
  position: relative;
  padding: 23px 18px;
}

.who-body h3 {
  margin: 0 0 9px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 21px;
}

.who-body p {
  margin: 0 0 11px;
  color: #5e6f84;
  font-size: 12px;
  line-height: 1.45;
}

.floating-icon {
  position: absolute;
  left: -25px;
  bottom: 14px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(13, 35, 69, 0.11);
  color: var(--gold);
}

.floating-icon svg {
  width: 24px;
  height: 24px;
}

.process {
  padding: 13px 0 30px;
}

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

.step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  padding: 0 16px;
  border-right: 1px solid var(--line);
}

.step:last-child {
  border-right: 0;
}

.num {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
}

.step-icon {
  width: 32px;
  height: 32px;
  color: var(--blue);
}

.step strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy);
  font-weight: 900;
}

.step p {
  margin: 0;
  color: #5e6f84;
  font-size: 12px;
  line-height: 1.42;
}

.testimonials {
  padding: 20px 0 42px;
  background: linear-gradient(#ffffff, #fbfdff);
}

.review-wrap {
  display: grid;
  grid-template-columns: 35px 1fr 35px;
  align-items: center;
  gap: 22px;
}

.arrow {
  color: var(--navy);
  font-size: 42px;
  text-align: center;
}

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

.review {
  padding: 22px 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 5px;
  box-shadow: 0 8px 24px rgba(13, 35, 69, 0.08);
}

.stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.review p {
  margin: 9px 0 14px;
  color: #3b4b61;
  font-size: 13px;
  line-height: 1.55;
}

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

.avatar {
  width: 36px;
  height: 36px;
  overflow: hidden;
  border-radius: 50%;
}

.client strong {
  color: var(--navy);
  font-size: 12px;
}

.bottom-cta {
  padding: 27px 0;
  color: #ffffff;
  background: linear-gradient(135deg, #062653, #071b3d);
}

.bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.bottom-cta h2 {
  margin: 0 0 3px;
  font-family: var(--serif);
  font-size: 32px;
}

.bottom-cta p {
  margin: 0;
  color: #d6e3f0;
}

.bottom-actions {
  display: flex;
  gap: 20px;
}

.bottom-actions .btn {
  min-width: 180px;
  height: 51px;
}

.footer {
  padding: 45px 0 20px;
  color: #ffffff;
  background: #041d43;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.95fr 0.85fr;
  gap: 50px;
}

.footer p,
.footer li {
  color: #d9e2ec;
  font-size: 13px;
}

.footer h4 {
  margin: 0 0 14px;
  font-weight: 900;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li {
  margin-bottom: 5px;
}

.footer-link-list a:hover {
  color: #ffffff;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.footer-contact-icon {
  flex: 0 0 auto;
  color: var(--gold);
}

.social {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.social span {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1b5b9d;
}

.copy {
  margin-top: 34px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  color: #c5d1dd;
  font-size: 11px;
}

.portal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(29, 103, 178, 0.09), transparent 28rem),
    linear-gradient(180deg, #f7fbff 0%, #eff5fb 100%);
}

.portal-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(13, 35, 69, 0.08);
}

.portal-nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.portal-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.portal-nav-links a,
.portal-nav-links button {
  padding: 10px 14px;
  border: 1px solid rgba(5, 36, 81, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.portal-nav-links a.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #ffffff;
}

.portal-main {
  padding: 30px 0 42px;
}

.portal-grid {
  display: grid;
  gap: 22px;
}

.surface-card {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(5, 36, 81, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.surface-card.padded {
  padding: 24px;
}

.page-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: stretch;
}

.page-hero h1,
.section-head h2,
.metric-card h2,
.module-card h3,
.list-card h3,
.table-head h2,
.portal-footer h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
}

.page-hero h1 {
  font-size: 46px;
  line-height: 0.95;
}

.page-lead {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: 32px;
  line-height: 1;
}

.section-head p,
.metric-card p,
.list-card p,
.status-note,
.field-help,
.mini-note,
.chart-note {
  margin: 0;
  color: var(--muted);
}

.mini-kicker {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-stack,
.stats-grid,
.module-grid,
.dual-grid,
.three-grid,
.four-grid,
.list-grid,
.payroll-grid {
  display: grid;
  gap: 18px;
}

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

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

.metric-card {
  padding: 20px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border: 1px solid rgba(5, 36, 81, 0.08);
  border-radius: 16px;
}

.metric-card h2 {
  margin-top: 6px;
  font-size: 34px;
  line-height: 1;
}

.metric-card p {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.55;
}

.login-card,
.clock-card,
.panel-card {
  padding: 24px;
}

.form-stack {
  display: grid;
  gap: 14px;
}

.split-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field-label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.field-label input,
.field-label select,
.field-label textarea {
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid #d9e4ef;
  border-radius: 10px;
  background: #ffffff;
  color: var(--text);
}

.field-label textarea {
  min-height: 96px;
  padding-top: 12px;
  resize: vertical;
}

.field-label input:focus,
.field-label select:focus,
.field-label textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29, 103, 178, 0.09);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.session-chip,
.status-badge,
.tool-chip,
.period-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.session-chip {
  background: var(--gold-soft);
  color: var(--navy);
}

.status-badge {
  background: #edf5ff;
  color: var(--navy);
}

.status-badge.is-warn {
  background: #fff4e2;
  color: #845000;
}

.status-badge.is-done {
  background: #e6f4ed;
  color: #166534;
}

.tool-chip {
  background: rgba(5, 36, 81, 0.06);
  color: var(--navy);
}

.period-chip {
  border: 1px solid rgba(5, 36, 81, 0.1);
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  cursor: pointer;
}

.period-chip.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #ffffff;
}

.status-line {
  min-height: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.status-line.is-muted {
  color: var(--muted);
}

.module-grid {
  grid-template-columns: repeat(4, 1fr);
}

.module-card {
  padding: 18px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border: 1px solid rgba(5, 36, 81, 0.08);
  border-radius: 16px;
}

.module-card h3 {
  margin-top: 10px;
  font-size: 25px;
  line-height: 1;
}

.module-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.module-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(217, 164, 65, 0.14);
  color: var(--gold-deep);
  font-weight: 900;
}

.dual-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.three-grid {
  grid-template-columns: repeat(3, 1fr);
}

.four-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.list-card,
.schedule-card,
.customer-card,
.timecard-card,
.invoice-card {
  padding: 18px;
  border: 1px solid rgba(5, 36, 81, 0.08);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98));
}

.list-card h3,
.schedule-card h3,
.customer-card h3,
.timecard-card h3,
.invoice-card h3 {
  font-size: 23px;
  line-height: 1;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.mini-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(5, 36, 81, 0.06);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.time-display {
  display: grid;
  gap: 8px;
  align-items: start;
}

.timer-value {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 44px;
  line-height: 0.95;
}

.toolbar-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

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

.customer-card .split-fields,
.mini-grid {
  margin-top: 14px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.customer-card p,
.schedule-card p,
.timecard-card p,
.invoice-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.customer-card .form-actions,
.schedule-card .form-actions {
  margin-top: 14px;
}

.schedule-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.schedule-column {
  padding: 18px;
  border-radius: 16px;
  background: rgba(5, 36, 81, 0.03);
  border: 1px solid rgba(5, 36, 81, 0.08);
}

.schedule-column h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 25px;
}

.schedule-stack {
  display: grid;
  gap: 12px;
}

.shift-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(29, 103, 178, 0.09);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.month-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.month-switcher button {
  padding: 10px 14px;
  border: 1px solid rgba(5, 36, 81, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.month-switcher button.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #ffffff;
}

.bar-chart-shell {
  display: grid;
  gap: 16px;
}

.bar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.bar-legend span::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 7px;
  display: inline-block;
  border-radius: 999px;
}

.bar-legend .legend-collections::before {
  background: var(--navy);
}

.bar-legend .legend-payroll::before {
  background: var(--gold);
}

.bar-legend .legend-supplies::before {
  background: var(--blue);
}

.bar-legend .legend-overhead::before {
  background: #a7b6c8;
}

.bar-chart {
  min-height: 270px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 12px;
}

.month-cluster {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.cluster-bars {
  width: 100%;
  min-height: 220px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 6px;
}

.bar {
  min-height: 12px;
  border-radius: 999px 999px 4px 4px;
  height: calc(var(--size) * 220px);
}

.bar-collections {
  background: var(--navy);
}

.bar-payroll {
  background: linear-gradient(180deg, #e5b45a, #cb902b);
}

.bar-supplies {
  background: var(--blue);
}

.bar-overhead {
  background: #9fb0c4;
}

.month-cluster strong {
  color: var(--navy);
  font-size: 12px;
}

.month-cluster.is-selected strong {
  color: var(--blue);
}

.donut-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.donut-card {
  padding: 18px;
  border: 1px solid rgba(5, 36, 81, 0.08);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  text-align: center;
}

.donut-visual {
  width: 110px;
  height: 110px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background:
    radial-gradient(closest-side, #ffffff 67%, transparent 68%),
    conic-gradient(var(--donut-fill) calc(var(--donut-value) * 1%), rgba(5, 36, 81, 0.08) 0);
}

.donut-card strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
}

.donut-card small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.line-chart-shell {
  display: grid;
  gap: 12px;
}

.line-key {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.line-key span::before {
  content: "";
  width: 18px;
  height: 3px;
  margin-right: 7px;
  display: inline-block;
  vertical-align: middle;
}

.line-key .line-key-collections::before {
  background: var(--navy);
}

.line-key .line-key-costs::before {
  background: var(--gold);
}

.line-chart-shell svg {
  width: 100%;
  height: auto;
}

.table-wrap {
  overflow-x: auto;
}

.payroll-table {
  width: 100%;
  border-collapse: collapse;
}

.payroll-table th,
.payroll-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

.payroll-table th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.payroll-table td {
  color: var(--text);
  font-size: 13px;
}

.payroll-table .actions-cell {
  min-width: 220px;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(5, 36, 81, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.mini-button.is-primary {
  background: var(--navy);
  border-color: var(--navy);
  color: #ffffff;
}

.portal-footer {
  padding: 0 0 42px;
}

.portal-footer-card {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, #052451, #0a346f);
  border-radius: 20px;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.portal-footer-card h2 {
  color: #ffffff;
  font-size: 34px;
}

.portal-footer-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.portal-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 1050px) {
  .nav {
    padding: 0 22px;
  }

  .hero .container,
  .page-hero,
  .dual-grid,
  .care-inner {
    grid-template-columns: 1fr;
  }

  .appt-card {
    justify-self: start;
    margin-top: 28px;
  }

  .stats-grid,
  .module-grid,
  .services-grid,
  .who-grid,
  .review-grid,
  .schedule-board,
  .donut-grid,
  .four-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip {
    margin: 0 20px;
    grid-template-columns: repeat(2, 1fr);
  }

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

  .bottom-inner,
  .portal-footer-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .nav {
    height: auto;
    padding: 18px 18px 16px;
    flex-wrap: wrap;
  }

  .nav-actions {
    width: 100%;
    justify-content: flex-end;
    margin-top: 12px;
    order: 2;
  }

  .links {
    width: 100%;
    order: 3;
    gap: 18px;
    overflow-x: auto;
  }

  .hero h1 {
    font-size: 48px;
  }

  .stats-grid,
  .module-grid,
  .services-grid,
  .who-grid,
  .review-grid,
  .schedule-board,
  .donut-grid,
  .footer-grid,
  .customer-grid,
  .list-grid,
  .four-grid,
  .three-grid {
    grid-template-columns: 1fr;
  }

  .split-fields,
  .mini-grid,
  .process-row {
    grid-template-columns: 1fr;
  }

  .process-row .step {
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-row .step:last-child {
    border-bottom: 0;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

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

  .who-img {
    height: 200px;
  }

  .floating-icon {
    left: 16px;
    top: 16px;
    bottom: auto;
  }

  .bottom-actions,
  .portal-footer-actions,
  .form-actions,
  .toolbar-row,
  .nav-actions {
    width: 100%;
  }

  .bottom-actions .btn,
  .portal-footer-actions .btn,
  .nav-actions .btn {
    width: 100%;
  }

  .copy {
    flex-direction: column;
    gap: 8px;
  }

  .portal-nav {
    min-height: auto;
    padding: 14px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .portal-nav-links {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }
}

body.portal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(200, 117, 101, 0.08), transparent 28rem),
    linear-gradient(180deg, #fffaf6 0%, #f8f1ed 100%);
}

.portal-topbar {
  background: rgba(255, 250, 246, 0.94);
  box-shadow: 0 10px 30px rgba(54, 31, 24, 0.08);
}

.portal-nav-links a,
.portal-nav-links button,
.module-card,
.list-card,
.schedule-card,
.customer-card,
.timecard-card,
.invoice-card,
.metric-card,
.donut-card,
.surface-card,
.schedule-column {
  border-color: rgba(54, 31, 24, 0.08);
}

.portal-nav-links a,
.portal-nav-links button,
.period-chip,
.month-switcher button,
.mini-button {
  background: rgba(255, 255, 255, 0.95);
}

.portal-nav-links a.is-active,
.period-chip.is-active,
.month-switcher button.is-active {
  background: var(--navy);
  border-color: var(--navy);
}

.session-chip {
  background: var(--gold-soft);
  color: #7a4438;
}

.tool-chip,
.mini-stat {
  background: rgba(200, 117, 101, 0.08);
}

.status-badge {
  background: #f5ebe7;
  color: var(--navy);
}

.status-badge.is-off {
  background: #fde7e2;
  color: #b13e2f;
}

.status-badge.is-on {
  background: #eaf7ef;
  color: #1f7a39;
}

.status-badge.is-oncall {
  background: #eaf1ff;
  color: #325dbe;
}

.status-badge.is-warn {
  background: #fff0e4;
  color: #9f5d2e;
}

.status-badge.is-done {
  background: #edf7f0;
  color: #1f7a39;
}

.module-card,
.metric-card,
.donut-card,
.list-card,
.schedule-card,
.customer-card,
.timecard-card,
.invoice-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 246, 241, 0.99));
}

.module-mark {
  background: rgba(200, 117, 101, 0.12);
  color: #b56352;
}

.schedule-column {
  background: rgba(255, 243, 238, 0.8);
}

.bar-legend .legend-collections::before {
  background: #bd735f;
}

.bar-legend .legend-payroll::before {
  background: var(--navy);
}

.bar-legend .legend-supplies::before {
  background: #d8b39e;
}

.bar-legend .legend-overhead::before {
  background: #6f92c4;
}

.bar-collections {
  background: linear-gradient(180deg, #d99a8d, #bd735f);
}

.bar-payroll {
  background: var(--navy);
}

.bar-supplies {
  background: #d8b39e;
}

.bar-overhead {
  background: #6f92c4;
}

.line-key .line-key-collections::before {
  background: #bd735f;
}

.line-key .line-key-costs::before {
  background: var(--navy);
}

.portal-footer-card {
  background: linear-gradient(135deg, #090807, #211815 58%, #120f0d);
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ticket-column {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 243, 238, 0.72);
  border: 1px solid rgba(54, 31, 24, 0.08);
}

.ticket-column h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 24px;
}

.ticket-stack {
  display: grid;
  gap: 12px;
}

.toggle-group,
.action-row.is-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.toggle-button {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #fff7f3;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.toggle-button.is-active {
  color: #ffffff;
}

.toggle-button.is-off.is-active {
  background: #c55447;
  border-color: #c55447;
}

.toggle-button.is-on.is-active {
  background: #289354;
  border-color: #289354;
}

.toggle-button.is-oncall.is-active {
  background: #4b79d8;
  border-color: #4b79d8;
}

.rose {
  color: #bd735f;
}

.landing-page {
  background: #ffffff;
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
}

.landing-page .container {
  max-width: 1110px;
}

.landing-page .topbar {
  height: 34px;
  background: linear-gradient(90deg, #f4dcd4, #fff8f5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  font-size: 12px;
  color: #33231d;
}

.landing-page .top-left,
.landing-page .top-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.landing-page .top-right {
  gap: 13px;
}

.landing-page .nav {
  height: 82px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 20;
}

.landing-page .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-l {
  font-family: var(--script);
  font-size: 52px;
  line-height: 0.75;
  color: #c87565;
}

.landing-page .logo strong {
  display: block;
  font-family: var(--serif);
  font-size: 27px;
  letter-spacing: 0.07em;
  line-height: 0.9;
}

.landing-page .logo small,
.portal-page .logo small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 9px;
  font-weight: 800;
  color: #6a5e57;
}

.portal-page .logo strong {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 0.07em;
  line-height: 0.9;
}

.landing-page .links {
  display: flex;
  align-items: center;
  gap: 46px;
  text-transform: uppercase;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.landing-page .links a:hover {
  color: #bd735f;
}

.landing-page .btn {
  height: 50px;
  padding: 0 28px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.landing-page .btn-outline {
  background: #ffffff;
  border: 1px solid var(--rose, #c87565);
  color: #7a4438;
}

.landing-page .btn-line {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.landing-page .hero {
  min-height: 562px;
  background:
    linear-gradient(90deg, rgba(255, 250, 246, 0.98) 0%, rgba(255, 250, 246, 0.92) 31%, rgba(255, 250, 246, 0.35) 61%, rgba(255, 250, 246, 0.1)),
    url("https://images.unsplash.com/photo-1604654894610-df63bc536371?q=80&w=1800&auto=format&fit=crop") center right / cover no-repeat;
}

.landing-page .hero .container {
  min-height: 562px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.landing-page .hero h1 {
  font-family: var(--serif);
  font-size: 70px;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0 0 23px;
  letter-spacing: -0.025em;
  color: #090807;
}

.landing-page .hero h1 span {
  color: #c87565;
  display: inline-block;
}

.landing-page .divider {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #c87565;
  margin-bottom: 24px;
}

.landing-page .divider::before,
.landing-page .divider::after {
  content: "";
  width: 58px;
  height: 1px;
  background: #d99a8d;
}

.landing-page .hero p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 410px;
  color: #51443e;
  margin: 0 0 33px;
}

.landing-page .hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.landing-page .watch {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-page .play {
  width: 31px;
  height: 31px;
  border: 1px solid #c87565;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #c87565;
}

.landing-page .booking {
  justify-self: center;
  width: 386px;
  background: rgba(255, 255, 255, 0.96);
  padding: 30px 33px 31px;
  border-radius: 5px;
  box-shadow: var(--shadow);
}

.landing-page .booking h2 {
  text-align: center;
  font-family: var(--serif);
  text-transform: uppercase;
  font-size: 23px;
  margin: 0 0 22px;
}

.landing-page .form-grid {
  display: grid;
  gap: 12px;
}

.landing-page .field {
  width: 100%;
  height: 39px;
  border: 1px solid #e2d9d3;
  border-radius: 2px;
  background: #fff;
  padding: 0 13px;
  font-size: 12px;
  color: #665a52;
  outline: none;
}

.landing-page .field:focus {
  border-color: #c87565;
  box-shadow: 0 0 0 3px rgba(200, 117, 101, 0.11);
}

.landing-page textarea.field {
  height: 76px;
  padding-top: 12px;
  resize: none;
}

.landing-page .booking .btn {
  width: 100%;
  height: 43px;
  margin-top: 2px;
}

.success-text {
  text-align: center;
  font-weight: 800;
  font-size: 12px;
}

.landing-page .service-strip {
  background: #ffffff;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  min-height: 137px;
  border-top: 1px solid #f1e8e2;
  border-bottom: 1px solid var(--line);
  padding: 0 42px;
}

.landing-page .mini {
  text-align: center;
  display: grid;
  place-items: center;
  padding: 25px 18px;
  border-right: 1px solid var(--line);
}

.landing-page .mini:last-child {
  border-right: 0;
}

.landing-page .mini-icon {
  font-size: 30px;
  color: #d99a8d;
  line-height: 1;
  margin-bottom: 8px;
}

.landing-page .mini strong {
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 900;
  margin-bottom: 7px;
}

.landing-page .mini small {
  color: #554a44;
  line-height: 1.42;
}

.landing-page .brand-band {
  display: grid;
  grid-template-columns: 0.73fr 1.27fr;
  background: #090807;
  color: #fff;
  min-height: 300px;
  background-image: linear-gradient(135deg, #080706, #15110e 60%, #050403);
}

.landing-page .brand-img {
  min-height: 300px;
}

.landing-page .brand-copy {
  padding: 55px 58px 46px;
}

.landing-page .brand-copy h2 {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1.02;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 39px;
}

.landing-page .brand-copy h2 span {
  color: #d19682;
}

.landing-page .values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.landing-page .value {
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 20px;
}

.landing-page .value:first-child {
  border-left: 0;
}

.landing-page .value .mini-icon {
  font-size: 35px;
  color: #c28c71;
  margin-bottom: 14px;
}

.landing-page .value strong {
  display: block;
  text-transform: uppercase;
  color: #d7a186;
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 7px;
}

.landing-page .value p {
  margin: 0;
  color: #e4d9d2;
  font-size: 12px;
  line-height: 1.55;
}

.landing-page .section {
  padding: 42px 0 28px;
  background: #fff;
}

.landing-page .section-title {
  text-align: center;
  margin-bottom: 28px;
}

.landing-page .section-title h2,
.landing-page .process h2,
.landing-page .gallery-head h2,
.landing-page .cta h2 {
  font-family: var(--serif);
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.03em;
}

.landing-page .section-title h2,
.landing-page .process h2 {
  font-size: 31px;
}

.landing-page .heart-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #c87565;
  margin-top: 7px;
}

.landing-page .heart-line::before,
.landing-page .heart-line::after {
  content: "";
  width: 48px;
  height: 1px;
  background: #ddb0a5;
}

.landing-page .exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.landing-page .card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(47, 24, 18, 0.05);
}

.landing-page .card-img {
  height: 168px;
}

.landing-page .card-body {
  text-align: center;
  padding: 22px 24px 26px;
}

.landing-page .card h3 {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  margin: 0 0 8px;
}

.landing-page .card p {
  color: #5e514b;
  margin: 0 0 17px;
}

.landing-page .process {
  padding: 17px 0 36px;
  background: #fff;
}

.landing-page .process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
}

.landing-page .step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 15px;
  padding: 0 19px;
  border-right: 1px solid var(--line);
  align-items: start;
}

.landing-page .step:last-child {
  border-right: 0;
}

.landing-page .num {
  font-family: var(--serif);
  font-size: 45px;
  line-height: 1;
  color: #c87565;
}

.landing-page .step-icon {
  color: #d99a8d;
  font-size: 25px;
  margin-bottom: 4px;
}

.landing-page .step strong {
  display: block;
  color: #c87565;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.landing-page .step p {
  margin: 5px 0 0;
  color: #554a44;
  font-size: 12px;
  line-height: 1.45;
}

.landing-page .reviews {
  background: linear-gradient(#fbfbfb, #fff);
  padding: 33px 0 40px;
}

.landing-page .review-wrap {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  gap: 24px;
  align-items: center;
}

.landing-page .arrow {
  font-size: 45px;
  color: #050403;
  text-align: center;
}

.landing-page .review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

.landing-page .review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 24px 26px;
  box-shadow: 0 8px 25px rgba(47, 24, 18, 0.08);
}

.landing-page .stars {
  color: #d8a64e;
  letter-spacing: 0.1em;
}

.landing-page .review p {
  font-size: 13px;
  line-height: 1.55;
  color: #362a25;
  margin: 9px 0 15px;
}

.landing-page .client {
  display: flex;
  gap: 11px;
  align-items: center;
}

.landing-page .avatar {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  overflow: hidden;
}

.landing-page .client strong {
  font-size: 12px;
  text-transform: uppercase;
}

.landing-page .client small {
  display: block;
  color: #665a52;
  font-size: 11px;
}

.landing-page .gallery {
  padding: 28px 72px 33px;
  background: #fff;
}

.landing-page .gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.landing-page .gallery-head h2 {
  font-size: 28px;
}

.landing-page .gallery-head a {
  color: #b56e5d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.landing-page .gallery-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.landing-page .gallery-row div {
  height: 118px;
  overflow: hidden;
  border-radius: 3px;
}

.landing-page .cta {
  background: #070605;
  color: #fff;
  padding: 35px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background-image: linear-gradient(135deg, #070605, #14110e 60%, #050403);
}

.landing-page .cta h2 {
  font-size: 34px;
  line-height: 1;
  color: #d7a186;
}

.landing-page .cta p {
  margin: 7px 0 0;
  color: #fff;
  font-size: 16px;
}

.landing-page .cta-actions {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
}

.landing-page .cta-actions .btn {
  height: 59px;
  min-width: 218px;
}

.landing-page .footer {
  background: #fff;
  padding: 32px 72px 16px;
  color: var(--text);
}

.landing-page .footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr 0.75fr 0.95fr;
  gap: 44px;
}

.landing-page .footer p,
.landing-page .footer li {
  font-size: 12px;
  color: #554a44;
}

.landing-page .footer h4 {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
  margin: 0 0 13px;
}

.landing-page .footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.landing-page .footer li {
  margin-bottom: 5px;
}

.landing-page .social {
  display: flex;
  gap: 15px;
  color: #c87565;
  margin-top: 15px;
}

.landing-page .copy {
  border-top: 1px solid var(--line);
  margin-top: 23px;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #6a5e57;
}

.aibiz-return-cta {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 900;
  max-width: calc(100% - 2rem);
  min-height: 2.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(66, 245, 141, 0.75);
  border-radius: 16px;
  background: linear-gradient(135deg, #42f58d, #65e4ff);
  color: #03120a;
  padding: 0.78rem 1.05rem;
  box-shadow: 0 14px 36px rgba(66, 245, 141, 0.2);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: lowercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.aibiz-return-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(66, 245, 141, 0.24);
}

@media (max-width: 1000px) {
  .landing-page .topbar,
  .landing-page .nav {
    padding-left: 24px;
    padding-right: 24px;
  }

  .landing-page .nav {
    height: auto;
    flex-wrap: wrap;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .landing-page .links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    gap: 22px;
  }

  .landing-page .hero .container {
    grid-template-columns: 1fr;
    padding-top: 52px;
    padding-bottom: 55px;
  }

  .landing-page .booking {
    justify-self: start;
    margin-top: 30px;
  }

  .landing-page .service-strip,
  .landing-page .values,
  .landing-page .exp-grid,
  .landing-page .process-row,
  .landing-page .review-grid,
  .landing-page .gallery-row,
  .landing-page .footer-grid,
  .landing-page .cta,
  .ticket-grid {
    grid-template-columns: 1fr 1fr;
  }

  .landing-page .brand-band {
    grid-template-columns: 1fr;
  }

  .landing-page .brand-img {
    height: 260px;
  }

  .landing-page .review-wrap {
    grid-template-columns: 1fr;
  }

  .landing-page .arrow {
    display: none;
  }
}

@media (max-width: 650px) {
  .landing-page .topbar {
    display: none;
  }

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

  .landing-page .booking {
    width: 100%;
  }

  .landing-page .service-strip,
  .landing-page .values,
  .landing-page .exp-grid,
  .landing-page .process-row,
  .landing-page .review-grid,
  .landing-page .gallery-row,
  .landing-page .footer-grid,
  .landing-page .cta,
  .ticket-grid {
    grid-template-columns: 1fr;
  }

  .landing-page .mini,
  .landing-page .step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .landing-page .brand-copy,
  .landing-page .gallery,
  .landing-page .cta,
  .landing-page .footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .landing-page .cta-actions {
    flex-direction: column;
  }

  .landing-page .cta-actions .btn {
    width: 100%;
  }

  .landing-page .copy {
    flex-direction: column;
    gap: 8px;
  }

  .landing-page .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .aibiz-return-cta {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
    max-width: none;
  }
}

.laurel-brand {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  color: inherit;
}

.laurel-brand-script {
  font-family: var(--script);
  font-size: 70px;
  line-height: 0.72;
  color: #f0ddc2;
  transform: translateY(-3px);
}

.laurel-brand-copy {
  display: grid;
  gap: 2px;
}

.laurel-brand-copy strong {
  display: block;
  font-family: var(--serif);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
}

.laurel-brand-portal .laurel-brand-script {
  color: #efd5b1;
}

.laurel-brand-portal .laurel-brand-copy strong {
  color: #f3e1c6;
}

.portal-page {
  background:
    radial-gradient(circle at top left, rgba(181, 150, 97, 0.18), transparent 26rem),
    radial-gradient(circle at top right, rgba(168, 86, 53, 0.08), transparent 24rem),
    linear-gradient(180deg, #f7f0e4 0%, #efe5d5 100%);
}

.portal-topbar {
  background: rgba(18, 12, 9, 0.94);
  border-bottom: 1px solid rgba(181, 150, 97, 0.22);
  box-shadow: 0 16px 34px rgba(15, 10, 7, 0.24);
}

.portal-nav {
  min-height: 88px;
  gap: 24px;
}

.portal-nav-links {
  flex: 1;
  justify-content: center;
}

.portal-nav-links a,
.portal-nav-links button {
  background: rgba(255, 247, 236, 0.06);
  border-color: rgba(181, 150, 97, 0.18);
  color: #f1e2cb;
}

.portal-nav-links a:hover,
.portal-nav-links button:hover {
  border-color: rgba(243, 224, 195, 0.34);
  background: rgba(255, 247, 236, 0.12);
}

.portal-nav-links a.is-active {
  background: linear-gradient(135deg, #b35c39, #8f4124);
  border-color: rgba(242, 198, 134, 0.42);
  color: #fff7ea;
}

.session-chip {
  border: 1px solid rgba(181, 150, 97, 0.16);
  background: rgba(181, 150, 97, 0.14);
  color: #f6e5c8;
}

.surface-card,
.metric-card,
.module-card,
.list-card,
.schedule-card,
.customer-card,
.timecard-card,
.invoice-card,
.donut-card,
.schedule-column,
.ticket-column {
  border-color: rgba(71, 48, 33, 0.08);
  box-shadow: 0 16px 34px rgba(36, 25, 19, 0.08);
}

.surface-card,
.metric-card,
.module-card,
.list-card,
.schedule-card,
.customer-card,
.timecard-card,
.invoice-card,
.donut-card {
  background: linear-gradient(180deg, rgba(255, 251, 243, 0.99), rgba(247, 239, 226, 0.98));
}

.schedule-column,
.ticket-column {
  background: linear-gradient(180deg, rgba(249, 241, 230, 0.92), rgba(244, 232, 214, 0.85));
}

.tool-chip,
.mini-stat {
  background: rgba(168, 86, 53, 0.08);
  color: var(--navy);
}

.page-hero h1,
.section-head h2,
.metric-card h2,
.module-card h3,
.list-card h3,
.schedule-card h3,
.customer-card h3,
.timecard-card h3,
.portal-footer-card h2 {
  color: var(--navy);
}

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

.module-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.module-card,
.mini-button,
.toggle-button,
.period-chip,
.month-switcher button {
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.module-card:hover,
.mini-button:hover,
.toggle-button:hover,
.period-chip:hover,
.month-switcher button:hover {
  transform: translateY(-2px);
}

.module-mark {
  background: linear-gradient(135deg, rgba(181, 150, 97, 0.18), rgba(168, 86, 53, 0.18));
  color: var(--gold-deep);
}

.status-badge.is-off {
  background: rgba(201, 79, 57, 0.14);
  color: var(--danger);
}

.status-badge.is-on {
  background: rgba(37, 134, 74, 0.14);
  color: var(--success);
}

.status-badge.is-oncall {
  background: rgba(75, 121, 216, 0.14);
  color: var(--oncall);
}

.status-badge.is-warn {
  background: rgba(232, 159, 71, 0.16);
  color: #a35a14;
}

.status-badge.is-done {
  background: rgba(37, 134, 74, 0.14);
  color: var(--success);
}

.mini-button {
  border-color: rgba(71, 48, 33, 0.12);
  background: rgba(255, 253, 248, 0.98);
  color: var(--navy);
}

.mini-button.is-warning {
  background: linear-gradient(135deg, #f0aa52, #de8332);
  border-color: #d88333;
  color: #fff9f1;
}

.mini-button.is-success {
  background: linear-gradient(135deg, #329d59, #1f733d);
  border-color: #1f733d;
  color: #f7fff8;
}

.mini-button.is-danger {
  background: linear-gradient(135deg, #d75d47, #b54332);
  border-color: #b54332;
  color: #fff7f4;
}

.shift-status-card.is-on {
  border-top: 4px solid var(--success);
}

.shift-status-card.is-oncall {
  border-top: 4px solid var(--oncall);
}

.table-wrap {
  overflow-x: auto;
}

.payroll-table {
  width: 100%;
  border-collapse: collapse;
}

.payroll-table th,
.payroll-table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(71, 48, 33, 0.08);
  vertical-align: top;
}

.payroll-table th {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.actions-cell {
  min-width: 230px;
}

.tracking-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
}

.tracking-map-shell {
  padding: 18px;
  border: 1px solid rgba(71, 48, 33, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 252, 245, 0.98), rgba(247, 238, 223, 0.96));
  box-shadow: var(--shadow-soft);
}

.tracking-map-canvas {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(181, 150, 97, 0.2);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.65), transparent 10rem),
    linear-gradient(180deg, #f7efe0 0%, #ead5b8 100%);
}

.tracking-map-header {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 248, 235, 0.8);
  border: 1px solid rgba(181, 150, 97, 0.24);
  backdrop-filter: blur(8px);
}

.tracking-map-header strong {
  color: var(--navy);
  font-size: 15px;
}

.tracking-map-header span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tracking-map-glow {
  position: absolute;
  inset: auto auto 24px 24px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 86, 53, 0.16), transparent 70%);
}

.tracking-map-state {
  position: absolute;
  inset: 18% 18% 12%;
  display: grid;
  place-items: center;
  color: rgba(80, 85, 60, 0.78);
  background: rgba(255, 252, 245, 0.55);
  border: 2px solid rgba(122, 134, 98, 0.38);
  clip-path: polygon(36% 4%, 62% 7%, 74% 20%, 72% 28%, 82% 38%, 77% 52%, 87% 65%, 82% 78%, 64% 82%, 58% 96%, 41% 94%, 34% 82%, 22% 73%, 24% 61%, 18% 53%, 21% 39%, 30% 31%, 31% 15%);
}

.tracking-map-state span {
  font-family: var(--serif);
  font-size: 44px;
  letter-spacing: 0.18em;
}

.tracking-map-road {
  position: absolute;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(181, 150, 97, 0), rgba(181, 150, 97, 0.9), rgba(181, 150, 97, 0));
  opacity: 0.8;
}

.tracking-map-road.road-one {
  top: 32%;
  left: 19%;
  width: 54%;
  transform: rotate(16deg);
}

.tracking-map-road.road-two {
  top: 54%;
  left: 30%;
  width: 44%;
  transform: rotate(-18deg);
}

.tracking-map-road.road-three {
  top: 70%;
  left: 26%;
  width: 36%;
  transform: rotate(8deg);
}

.tracking-pin {
  position: absolute;
  z-index: 3;
  transform: translate(-50%, -50%);
  display: grid;
  justify-items: center;
  gap: 8px;
}

.tracking-pin-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 18px rgba(36, 25, 19, 0.18);
  background: var(--success);
}

.tracking-pin.is-warn .tracking-pin-dot {
  background: #d68334;
}

.tracking-pin.is-oncall .tracking-pin-dot {
  background: var(--oncall);
}

.tracking-pin-label {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(17, 11, 8, 0.82);
  color: #f7ebd7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tracking-list {
  display: grid;
  gap: 16px;
}

.laurel-landing {
  background: var(--cream);
  color: #f9f1e6;
}

.laurel-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  border-bottom: 1px solid rgba(244, 226, 197, 0.08);
  background: linear-gradient(180deg, rgba(8, 5, 4, 0.72), rgba(8, 5, 4, 0));
}

.laurel-nav {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.laurel-links {
  display: flex;
  align-items: center;
  gap: 42px;
  color: #f3e4cd;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.laurel-links a {
  position: relative;
}

.laurel-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: rgba(243, 228, 205, 0.42);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.laurel-links a:hover::after {
  transform: scaleX(1);
}

.laurel-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.laurel-nav-actions .btn {
  min-width: 166px;
  height: 50px;
}

.laurel-hero {
  position: relative;
  min-height: 760px;
  padding: 148px 0 88px;
  background:
    linear-gradient(90deg, rgba(6, 4, 3, 0.84) 0%, rgba(6, 4, 3, 0.74) 34%, rgba(6, 4, 3, 0.32) 58%, rgba(6, 4, 3, 0.22) 100%),
    url("https://images.unsplash.com/photo-1544025162-d76694265947?q=80&w=1800&auto=format&fit=crop") center center / cover no-repeat;
}

.laurel-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 65% 26%, rgba(255, 224, 182, 0.12), transparent 16rem);
}

.laurel-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 44px;
}

.laurel-hero-copy h1 {
  margin: 0;
  max-width: 640px;
  color: #fff5e7;
  font-family: var(--serif);
  font-size: 78px;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.laurel-rule {
  width: 78px;
  height: 3px;
  margin: 26px 0 28px;
  background: linear-gradient(90deg, rgba(181, 150, 97, 0.1), rgba(181, 150, 97, 1), rgba(181, 150, 97, 0.1));
}

.laurel-hero-copy p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 244, 227, 0.9);
  font-size: 17px;
  line-height: 1.7;
}

.laurel-booking-card {
  width: min(404px, 100%);
  justify-self: end;
  padding: 28px 28px 24px;
  border-radius: 12px;
  border: 1px solid rgba(181, 150, 97, 0.38);
  background: rgba(252, 247, 239, 0.97);
  box-shadow: 0 28px 54px rgba(16, 10, 7, 0.22);
  color: var(--text);
}

.laurel-form-ornament {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.laurel-form-ornament span {
  position: relative;
  width: 54px;
  height: 12px;
}

.laurel-form-ornament span::before,
.laurel-form-ornament span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 1px;
  background: rgba(181, 150, 97, 0.85);
}

.laurel-form-ornament span::before {
  left: 0;
}

.laurel-form-ornament span::after {
  right: 0;
}

.laurel-form-ornament span {
  border-top: 1px solid rgba(181, 150, 97, 0.85);
  border-bottom: 1px solid rgba(181, 150, 97, 0.85);
}

.laurel-booking-card h2 {
  margin: 0 0 20px;
  color: var(--navy);
  text-align: center;
  font-family: var(--serif);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

.laurel-inline-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.laurel-field {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(71, 48, 33, 0.12);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
}

.laurel-field:focus {
  outline: none;
  border-color: rgba(168, 86, 53, 0.58);
  box-shadow: 0 0 0 3px rgba(168, 86, 53, 0.1);
}

textarea.laurel-field {
  min-height: 110px;
  padding-top: 12px;
  resize: none;
}

.laurel-form-grid .btn {
  width: 100%;
  height: 48px;
}

.laurel-form-note,
.laurel-form-success {
  margin: 0;
  text-align: center;
  font-size: 13px;
}

.laurel-form-note {
  color: var(--muted);
}

.laurel-form-success {
  color: var(--success);
  font-weight: 700;
}

.laurel-form-success[hidden] {
  display: none;
}

.laurel-trust-strip {
  border-top: 1px solid rgba(181, 150, 97, 0.16);
  border-bottom: 1px solid rgba(181, 150, 97, 0.16);
  background: linear-gradient(180deg, #fbf5eb, #f3eadc);
}

.laurel-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.laurel-trust-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 28px 18px;
  color: var(--text);
  border-right: 1px solid rgba(181, 150, 97, 0.16);
}

.laurel-trust-item:last-child {
  border-right: 0;
}

.laurel-trust-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--gold);
}

.laurel-trust-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 24px;
  line-height: 0.95;
  font-family: var(--serif);
  text-transform: uppercase;
}

.laurel-trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.laurel-section {
  padding: 46px 0 34px;
  background: linear-gradient(180deg, #fffaf3, #f7efdf);
}

.laurel-section-head {
  margin-bottom: 24px;
  text-align: center;
}

.laurel-section-head.is-light .laurel-section-mark {
  color: #f6e5ca;
}

.laurel-section-head.is-light .laurel-section-mark::before,
.laurel-section-head.is-light .laurel-section-mark::after {
  background: rgba(246, 229, 202, 0.34);
}

.laurel-section-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.laurel-section-mark::before,
.laurel-section-mark::after {
  content: "";
  width: 58px;
  height: 1px;
  background: rgba(181, 150, 97, 0.48);
}

.laurel-menu-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.laurel-menu-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(71, 48, 33, 0.08);
  box-shadow: var(--shadow-soft);
}

.laurel-menu-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 4, 4, 0) 22%, rgba(5, 4, 4, 0.82) 100%);
}

.laurel-menu-card img {
  transition: transform 220ms ease;
}

.laurel-menu-card:hover img {
  transform: scale(1.04);
}

.laurel-menu-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 22px 16px 18px;
  color: #f8edd7;
  text-align: center;
}

.laurel-menu-overlay h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 19px;
  text-transform: uppercase;
}

.laurel-menu-overlay span {
  font-size: 13px;
  font-weight: 700;
}

.laurel-story-band {
  padding: 38px 0;
  background: linear-gradient(135deg, #2b2b1a, #1c140f 58%, #1b140f);
  color: #f6ebd6;
}

.laurel-story-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.18fr 0.3fr;
  gap: 32px;
  align-items: center;
}

.laurel-story-photo {
  padding: 12px;
  background: rgba(236, 216, 183, 0.16);
  border: 1px solid rgba(236, 216, 183, 0.2);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.2);
  transform: rotate(-4deg);
}

.laurel-story-photo img {
  min-height: 252px;
  filter: sepia(0.5) saturate(0.8);
}

.laurel-story-copy h2 {
  margin: 0;
  max-width: 720px;
  font-family: var(--serif);
  font-size: 56px;
  line-height: 0.95;
  text-transform: uppercase;
}

.laurel-story-divider {
  width: 82px;
  height: 2px;
  margin: 20px 0 22px;
  background: linear-gradient(90deg, rgba(181, 150, 97, 0), rgba(181, 150, 97, 1), rgba(181, 150, 97, 0));
}

.laurel-story-copy p {
  max-width: 680px;
  margin: 0;
  color: rgba(246, 235, 214, 0.84);
  font-size: 18px;
  line-height: 1.6;
}

.laurel-story-botanical {
  color: rgba(181, 150, 97, 0.9);
}

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

.laurel-feature-card {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(71, 48, 33, 0.08);
  background: rgba(255, 251, 243, 0.98);
  box-shadow: var(--shadow-soft);
}

.laurel-feature-photo {
  min-height: 220px;
}

.laurel-feature-copy {
  padding: 22px 20px 18px;
  color: var(--text);
}

.laurel-feature-copy h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 28px;
  text-transform: uppercase;
}

.laurel-feature-copy p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.laurel-feature-copy a {
  color: var(--gold-deep);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.laurel-process-section {
  padding: 28px 0 38px;
  background: linear-gradient(180deg, #fcf7ee, #f3e8d9);
}

.laurel-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(181, 150, 97, 0.14);
  border-bottom: 1px solid rgba(181, 150, 97, 0.14);
}

.laurel-process-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 16px;
  align-items: start;
  padding: 26px 18px;
  border-right: 1px solid rgba(181, 150, 97, 0.14);
}

.laurel-process-item:last-child {
  border-right: 0;
}

.laurel-process-num {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 50px;
  line-height: 0.95;
}

.laurel-process-item h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.laurel-process-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.laurel-testimonials {
  padding: 34px 0;
  background: linear-gradient(180deg, #17120e, #231912 58%, #1c140f);
}

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

.laurel-review-card {
  min-height: 230px;
  padding: 24px 24px 20px;
  border-radius: 14px;
  border: 1px solid rgba(181, 150, 97, 0.12);
  background: linear-gradient(180deg, rgba(255, 252, 245, 0.06), rgba(255, 252, 245, 0.02));
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.laurel-review-card p {
  min-height: 106px;
  margin: 0 0 18px;
  color: rgba(246, 235, 214, 0.86);
  font-size: 15px;
  line-height: 1.6;
}

.laurel-review-stars {
  margin-bottom: 14px;
  color: #d7aa56;
  letter-spacing: 0.22em;
  font-size: 16px;
}

.laurel-review-card span {
  color: #f0ddc0;
  font-size: 14px;
  font-weight: 700;
}

.laurel-gallery-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.laurel-gallery-row img {
  min-height: 190px;
  border-top: 1px solid rgba(71, 48, 33, 0.08);
  border-bottom: 1px solid rgba(71, 48, 33, 0.08);
}

.laurel-bottom-cta {
  padding: 22px 0;
  background: linear-gradient(90deg, #924725, #b35d36 40%, #964621);
}

.laurel-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.laurel-bottom-inner h2 {
  margin: 0;
  color: #fff4df;
  font-family: var(--serif);
  font-size: 48px;
  line-height: 0.95;
  text-transform: uppercase;
}

.laurel-bottom-actions {
  display: flex;
  gap: 14px;
}

.laurel-bottom-actions .btn {
  min-width: 220px;
  height: 56px;
}

.laurel-footer {
  padding: 28px 0 34px;
  background: linear-gradient(180deg, #19120e, #120d0a);
  color: #f3e4cd;
}

.laurel-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.laurel-footer h3 {
  margin: 0 0 14px;
  color: #f0dec0;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.laurel-footer p {
  margin: 0 0 12px;
  color: rgba(243, 228, 205, 0.76);
  font-size: 14px;
  line-height: 1.6;
}

.laurel-footer-brand .laurel-brand-script {
  color: #f0dbc0;
}

.laurel-footer-brand .laurel-brand-copy strong {
  color: #f4e3cb;
}

.laurel-socials {
  display: flex;
  gap: 12px;
}

.laurel-socials span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(240, 220, 192, 0.24);
  background: rgba(255, 248, 235, 0.08);
  color: #f2e0c5;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1200px) {
  .laurel-nav {
    gap: 20px;
  }

  .laurel-links {
    gap: 26px;
  }

  .laurel-hero-copy h1,
  .laurel-story-copy h2,
  .laurel-bottom-inner h2 {
    font-size: 62px;
  }

  .laurel-menu-grid,
  .laurel-process-grid,
  .laurel-review-grid,
  .laurel-feature-grid,
  .laurel-footer-grid,
  .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tracking-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .laurel-header {
    position: relative;
    background: rgba(12, 8, 6, 0.96);
  }

  .laurel-nav {
    min-height: auto;
    padding: 18px 0;
    flex-wrap: wrap;
  }

  .laurel-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .laurel-nav-actions {
    margin-left: auto;
  }

  .laurel-hero {
    padding-top: 62px;
  }

  .laurel-hero-grid,
  .laurel-story-grid,
  .page-hero,
  .dual-grid,
  .laurel-bottom-inner {
    grid-template-columns: 1fr;
  }

  .laurel-booking-card {
    justify-self: start;
  }

  .laurel-trust-grid,
  .laurel-menu-grid,
  .laurel-feature-grid,
  .laurel-review-grid,
  .laurel-footer-grid,
  .stats-grid,
  .schedule-board,
  .ticket-grid,
  .customer-grid,
  .list-grid,
  .four-grid,
  .three-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .laurel-gallery-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .laurel-bottom-actions {
    width: 100%;
  }

  .laurel-bottom-actions .btn {
    flex: 1;
    min-width: 0;
  }

  .portal-nav {
    min-height: auto;
    padding: 14px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .portal-nav-links {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }
}

@media (max-width: 640px) {
  .laurel-brand-script {
    font-size: 58px;
  }

  .laurel-links,
  .laurel-nav-actions,
  .laurel-inline-fields,
  .split-fields,
  .mini-grid,
  .laurel-process-grid,
  .stats-grid,
  .module-grid,
  .schedule-board,
  .ticket-grid,
  .customer-grid,
  .list-grid,
  .four-grid,
  .three-grid,
  .laurel-trust-grid,
  .laurel-menu-grid,
  .laurel-feature-grid,
  .laurel-review-grid,
  .laurel-gallery-row,
  .laurel-footer-grid {
    grid-template-columns: 1fr;
  }

  .laurel-nav-actions {
    width: 100%;
    margin-left: 0;
  }

  .laurel-nav-actions .btn,
  .laurel-bottom-actions .btn,
  .portal-footer-actions .btn {
    width: 100%;
  }

  .laurel-hero-copy h1,
  .laurel-story-copy h2,
  .laurel-bottom-inner h2,
  .page-hero h1 {
    font-size: 46px;
  }

  .laurel-trust-item,
  .laurel-process-item {
    border-right: 0;
    border-bottom: 1px solid rgba(181, 150, 97, 0.16);
  }

  .laurel-trust-item:last-child,
  .laurel-process-item:last-child {
    border-bottom: 0;
  }

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

  .laurel-feature-photo {
    min-height: 190px;
  }

  .laurel-gallery-row img {
    min-height: 160px;
  }

  .tracking-map-canvas {
    min-height: 420px;
  }
}
