:root {
  --navy: #082b58;
  --navy-deep: #041d3d;
  --navy-soft: #123d6d;
  --gold: #d7ba78;
  --gold-light: #ecdfbc;
  --gold-dark: #a98745;
  --white: #ffffff;
  --paper: #fbfaf7;
  --paper-2: #f4f0e8;
  --ink: #0d1a2a;
  --muted: #687387;
  --line: #dfd9cc;
  --shadow: 0 28px 90px rgba(7, 34, 69, 0.10);
  --radius: 28px;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", Inter, ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(215, 186, 120, 0.22);
}

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

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

.brand-symbol {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(215, 186, 120, 0.6);
  background: var(--navy);
  color: white;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: -0.04em;
}

.brand-name {
  display: flex;
  gap: 5px;
  align-items: baseline;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}

.brand-name small {
  font-size: 14px;
  color: #617087;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 600;
  color: #455368;
}

.nav-links a {
  transition: 0.2s ease;
}

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

.nav-contact {
  color: var(--navy) !important;
  border: 1px solid rgba(8, 43, 88, 0.22);
  padding: 10px 17px;
  border-radius: 999px;
}

.nav-contact:hover {
  background: var(--navy);
  color: white !important;
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}

.menu-button span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  padding: 95px 0 48px;
  background:
    radial-gradient(circle at 82% 13%, rgba(215, 186, 120, 0.13), transparent 24%),
    linear-gradient(180deg, #fff 0%, var(--paper) 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  right: -180px;
  top: 100px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(215, 186, 120, 0.18);
}

.hero-glow-two {
  right: -70px;
  top: 210px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(8, 43, 88, 0.08);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 70px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 25px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 740px;
  margin: 20px 0 24px;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: clamp(54px, 6vw, 82px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h1 em {
  display: block;
  color: var(--navy);
  font-style: normal;
}

.hero-description {
  max-width: 700px;
  margin: 0;
  color: #5e6a7c;
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
  transition: 0.25s ease;
}

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

.button-gold {
  background: var(--navy);
  color: white;
  box-shadow: 0 15px 32px rgba(8, 43, 88, 0.15);
}

.button-gold span {
  color: var(--gold);
}

.button-gold:hover {
  background: var(--navy-deep);
}

.button-ghost {
  color: var(--navy);
  border: 1px solid rgba(8, 43, 88, 0.17);
}

.button-ghost:hover {
  background: white;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-points div {
  display: grid;
  gap: 4px;
}

.hero-points strong {
  color: var(--navy);
  font-size: 13px;
}

.hero-points span {
  color: #7b8594;
  font-size: 11px;
  line-height: 1.4;
}

.brand-showcase {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
}

.logo-frame {
  position: relative;
  width: min(100%, 530px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: white;
  border: 1px solid rgba(215, 186, 120, 0.36);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.logo-frame::before,
.logo-frame::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.logo-frame::before {
  inset: 24px;
  border: 1px solid rgba(8, 43, 88, 0.08);
}

.logo-frame::after {
  inset: -15px;
  border: 1px solid rgba(215, 186, 120, 0.16);
}

.main-logo {
  width: 83%;
  height: auto;
  display: block;
}

.brand-stamp {
  position: absolute;
  left: 50%;
  bottom: 17px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: #707b8c;
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.stamp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(215, 186, 120, 0.14);
}

.floating-note {
  position: absolute;
  min-width: 155px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(8, 43, 88, 0.10);
  box-shadow: 0 15px 42px rgba(8, 43, 88, 0.10);
  border-radius: 16px;
  display: grid;
}

.floating-note > span {
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.floating-note strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 18px;
}

.floating-note small {
  color: #828b97;
  font-size: 10px;
}

.note-one {
  left: -12px;
  top: 110px;
}

.note-two {
  right: -10px;
  bottom: 118px;
}

.client-line {
  margin-top: 78px;
  padding-top: 22px;
  border-top: 1px solid rgba(8, 43, 88, 0.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #7e8794;
  font-size: 11px;
}

.client-line div {
  display: flex;
  align-items: center;
  gap: 17px;
  color: var(--navy);
}

.client-line i {
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
}

/* Shared */

.section {
  padding: 112px 0;
}

.section-header {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 48px;
}

.section-header h2,
.problem-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin: 13px 0 0;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.section-header h2 {
  font-size: clamp(40px, 5vw, 60px);
}

.section-header > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Intro */

.intro-section {
  background: var(--navy);
  color: white;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 90px;
}

.intro-label {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  color: #afbdd0;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-number {
  color: var(--gold);
}

.intro-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.intro-copy p {
  margin: 0;
  color: #c5d0dd;
  font-size: 16px;
  line-height: 1.8;
}

.intro-copy p:first-child {
  color: white;
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.35;
}

.intro-copy strong {
  color: var(--gold-light);
  font-weight: 500;
}

/* Services */

.services-section {
  background: var(--paper);
}

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

.service-card {
  min-height: 430px;
  padding: 29px;
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(8, 43, 88, 0.08);
}

.service-card-featured {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
  transform: translateY(-12px);
}

.service-card-featured:hover {
  transform: translateY(-17px);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.service-index {
  color: var(--gold-dark);
  font: 700 10px/1 var(--sans);
  letter-spacing: 0.12em;
}

.service-card-featured .service-index {
  color: var(--gold);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--paper-2);
  border-radius: 50%;
  color: var(--navy);
}

.service-card-featured .service-icon {
  color: var(--gold-light);
  background: rgba(255,255,255,0.08);
}

.service-card h3 {
  margin: 0 0 14px;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.2;
}

.service-card-featured h3 {
  color: white;
}

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

.service-card-featured p {
  color: #bac8d6;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
}

.service-card li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: #4e5b6d;
  font-size: 12px;
}

.service-card-featured li {
  color: #d6dfe9;
  border-color: rgba(255,255,255,0.12);
}

/* Problems */

.problems-section {
  background: var(--navy-deep);
  color: white;
}

.problems-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.section-kicker-light {
  color: var(--gold);
}

.problem-heading h2 {
  color: white;
  font-size: clamp(40px, 5vw, 56px);
}

.problem-list {
  border-top: 1px solid rgba(255,255,255,0.14);
}

.problem-item {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.problem-item > span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
}

.problem-item h3 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
}

.problem-item p {
  margin: 0;
  color: #aab8c8;
  font-size: 13px;
  line-height: 1.65;
}

/* Projects */

.projects-section {
  background: #f0ede6;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
}

.project-card {
  min-width: 0;
  overflow: hidden;
  background: white;
  border: 1px solid #d9d3c7;
  border-radius: 27px;
}

.project-large {
  grid-row: span 2;
}

.project-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}

.project-visual {
  min-height: 235px;
  padding: 24px;
}

.project-large .project-visual {
  min-height: 420px;
}

.project-content {
  padding: 28px;
}

.project-category {
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.project-content h3 {
  margin: 0 0 12px;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.15;
}

.project-content p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.tags span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #687387;
  font-size: 9px;
  font-weight: 600;
}

.store-visual {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 75% 22%, rgba(236,223,188,.3), transparent 20%),
    var(--navy);
}

.store-window {
  width: 100%;
  background: #fbfaf7;
  border-radius: 19px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(2, 19, 42, 0.28);
}

.store-nav {
  padding: 14px 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  background: white;
  color: #7c8593;
  font-size: 8px;
}

.store-nav b {
  margin-right: auto;
  color: var(--navy);
  font-size: 11px;
}

.store-content {
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 20px;
}

.store-content small {
  color: var(--gold-dark);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.store-content > div:first-child strong {
  display: block;
  max-width: 280px;
  margin-top: 8px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.05;
}

.store-stats {
  display: grid;
  gap: 8px;
}

.store-stats div {
  padding: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.store-stats span,
.store-stats b {
  display: block;
}

.store-stats span {
  color: #8a929e;
  font-size: 8px;
}

.store-stats b {
  color: var(--navy);
  font-size: 22px;
}

.finance-visual {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e9e2d3, #f8f5ef);
}

.finance-card {
  width: min(92%, 330px);
  padding: 24px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(44, 40, 32, 0.09);
}

.finance-card small {
  color: #84909d;
  font-size: 9px;
}

.finance-card strong {
  display: block;
  margin: 4px 0 16px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.progress {
  height: 8px;
  overflow: hidden;
  background: #ece8df;
  border-radius: 99px;
}

.progress span {
  display: block;
  width: 65%;
  height: 100%;
  background: var(--gold);
  border-radius: 99px;
}

.finance-card p {
  margin: 10px 0 0;
  color: #7e8794;
  font-size: 9px;
}

.patient-visual {
  background: linear-gradient(135deg, #dfe7ef, #f5f8fa);
}

.patient-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(8, 43, 88, 0.08);
}

.patient-avatar {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: white;
  font-family: var(--serif);
}

.patient-profile strong,
.patient-profile span {
  display: block;
}

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

.patient-profile span {
  margin-top: 2px;
  color: #8b95a1;
  font-size: 8px;
}

.patient-lines {
  display: grid;
  gap: 8px;
  margin: 19px 10px 0;
}

.patient-lines span {
  display: block;
  height: 10px;
  background: rgba(255,255,255,.85);
  border-radius: 999px;
}

.patient-lines span:nth-child(2) {
  width: 82%;
}

.patient-lines span:nth-child(3) {
  width: 67%;
}

.api-box {
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  background: var(--navy);
  color: white;
  font: 11px/1.5 ui-monospace, monospace;
}

.api-box span {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: #b7c5d4;
}

.api-box strong {
  color: var(--gold-light);
}

/* Process */

.process-section {
  background: white;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-card {
  min-height: 270px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

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

.process-card > span {
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 700;
}

.process-card h3 {
  margin: 55px 0 10px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

/* About */

.about-section {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 80px;
  align-items: center;
}

.about-identity {
  min-height: 520px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--navy);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.mini-logo {
  height: 330px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  background: white;
}

.mini-logo img {
  width: 90%;
}

.identity-text {
  padding: 16px 6px 6px;
}

.identity-text span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.identity-text strong {
  display: block;
  margin-top: 6px;
  color: white;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
}

.about-copy h2 {
  font-size: clamp(40px, 5vw, 58px);
}

.about-copy > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

.tech-list {
  margin-top: 30px;
}

.tech-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.tech-list strong {
  color: var(--navy);
  font-size: 11px;
}

.tech-list span {
  color: #778291;
  font-size: 11px;
}

/* Contact */

.contact-section {
  padding: 80px 0 100px;
  background: var(--paper);
}

.contact-card {
  padding: 54px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: center;
  background:
    radial-gradient(circle at 85% 20%, rgba(215,186,120,0.12), transparent 28%),
    var(--navy-deep);
  border-radius: 34px;
  color: white;
}

.contact-copy h2 {
  color: white;
  font-size: clamp(40px, 5vw, 58px);
}

.contact-copy h2 em {
  color: var(--gold-light);
  font-style: normal;
}

.contact-copy p {
  max-width: 650px;
  margin: 18px 0 0;
  color: #b6c3d1;
  line-height: 1.7;
}

.contact-buttons {
  display: grid;
  gap: 10px;
}

.contact-button {
  min-height: 56px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: white;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.contact-button:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.09);
}

.contact-button.primary {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

.contact-helper {
  color: #8293a6;
  font-size: 10px;
  text-align: center;
}

/* Footer */

footer {
  padding: 28px 0;
  background: #03172f;
  color: white;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-brand .brand-symbol {
  border-color: rgba(215,186,120,.4);
}

.footer-brand .brand-name {
  color: white;
}

.footer-brand .brand-name small {
  color: #8191a4;
}

.footer-inner p {
  margin: 0;
  color: #76879b;
  text-align: center;
  font-size: 10px;
}

.footer-inner > span {
  color: #6d7e91;
  font-size: 10px;
}

/* Reveal */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .7s ease,
    transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 980px) {
  .hero-grid,
  .intro-grid,
  .problems-grid,
  .about-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
  }

  .brand-showcase {
    min-height: 500px;
  }

  .logo-frame {
    width: min(100%, 500px);
  }

  .intro-grid {
    gap: 45px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card-featured,
  .service-card-featured:hover {
    transform: none;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-large {
    grid-row: auto;
  }

  .project-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-card:nth-child(2) {
    border-right: 0;
  }

  .process-card:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    height: 68px;
  }

  .menu-button {
    display: block;
  }

  .nav-links {
    position: fixed;
    left: 0;
    right: 0;
    top: 68px;
    padding: 24px 18px 28px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 25px 40px rgba(8, 43, 88, .12);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 11px 10px;
  }

  .nav-contact {
    margin-top: 6px;
    text-align: center;
  }

  .hero {
    padding-top: 62px;
  }

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

  .hero-description {
    font-size: 15px;
  }

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

  .brand-showcase {
    min-height: 410px;
  }

  .logo-frame {
    width: min(92vw, 395px);
  }

  .floating-note {
    display: none;
  }

  .client-line {
    flex-direction: column;
    align-items: flex-start;
  }

  .client-line div {
    flex-wrap: wrap;
  }

  .section {
    padding: 78px 0;
  }

  .intro-copy {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .intro-copy p:first-child {
    font-size: 28px;
  }

  .problem-heading h2,
  .section-header h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: 39px;
  }

  .project-large .project-visual {
    min-height: 290px;
  }

  .store-content {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card,
  .process-card:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .about-identity {
    min-height: 410px;
  }

  .mini-logo {
    height: 270px;
  }

  .tech-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-card {
    padding: 30px 22px;
    border-radius: 26px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-inner .brand {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button:hover,
  .service-card:hover,
  .contact-button:hover {
    transform: none;
  }
}


/* =========================================================
   Interactive demo slider
   ========================================================= */

.demos-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(215, 186, 120, .10), transparent 22%),
    linear-gradient(180deg, #fff 0%, var(--paper) 100%);
}

.demos-heading {
  margin-bottom: 34px;
}

.demo-slider-wrap {
  position: relative;
}

.demo-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(360px, 42%);
  gap: 18px;
  overflow-x: auto;
  padding: 8px 4px 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  overscroll-behavior-inline: contain;
}

.demo-slider::-webkit-scrollbar {
  display: none;
}

.demo-slider.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.demo-card {
  scroll-snap-align: start;
  min-width: 0;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(8, 43, 88, .11);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(8, 43, 88, .07);
  transition: transform .25s ease, box-shadow .25s ease;
}

.demo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(8, 43, 88, .12);
}

.demo-preview {
  height: 310px;
  padding: 18px;
  overflow: hidden;
}

.preview-browser-bar {
  height: 34px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.94);
  border-radius: 12px 12px 0 0;
  border-bottom: 1px solid rgba(8, 43, 88, .08);
}

.preview-browser-bar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(8,43,88,.17);
}

.preview-browser-bar small {
  margin-left: 7px;
  color: #84909d;
  font-size: 8px;
}

.demo-card-body {
  min-height: 210px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.demo-type {
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
}

.demo-card h3 {
  margin: 7px 0 7px;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
}

.demo-card p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.demo-open {
  min-height: 46px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border: 1px solid rgba(8, 43, 88, .12);
  background: var(--paper);
  color: var(--navy);
  border-radius: 12px;
  font: 700 11px/1 var(--sans);
  cursor: pointer;
  transition: .2s ease;
}

.demo-open:hover {
  color: white;
  background: var(--navy);
  border-color: var(--navy);
}

.demo-open span {
  color: var(--gold-dark);
  font-size: 16px;
}

.demo-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(8, 43, 88, .13);
  background: rgba(255,255,255,.96);
  color: var(--navy);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(8,43,88,.12);
  font-size: 19px;
  cursor: pointer;
  transform: translateY(-50%);
  transition: .2s ease;
}

.demo-arrow:hover {
  color: white;
  background: var(--navy);
}

.demo-arrow-left {
  left: -24px;
}

.demo-arrow-right {
  right: -24px;
}

.demo-slider-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 4px;
  color: #87909c;
  font-size: 10px;
}

.demo-slider-footer > span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.demo-slider-footer i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.demo-slider-footer strong {
  color: #717c8b;
  font-weight: 600;
}

/* Menu preview */

.demo-preview-menu {
  background: #efe4d5;
}

.menu-demo-mini {
  height: calc(100% - 34px);
  padding: 19px;
  background: #fffaf3;
  border-radius: 0 0 14px 14px;
}

.menu-demo-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.menu-demo-head small,
.catalog-mini-title small,
.service-demo-mini small,
.admin-mini-main > small {
  display: block;
  color: #9b7253;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .13em;
}

.menu-demo-head strong {
  display: block;
  margin-top: 3px;
  color: #38261b;
  font: 500 24px/1 var(--serif);
}

.menu-demo-head > span {
  padding: 5px 8px;
  background: #38261b;
  color: #fff8ee;
  border-radius: 999px;
  font-size: 7px;
}

.menu-demo-chips {
  display: flex;
  gap: 6px;
  margin-top: 18px;
}

.menu-demo-chips span {
  padding: 5px 8px;
  background: white;
  color: #725844;
  border: 1px solid #ead8c4;
  border-radius: 999px;
  font-size: 7px;
}

.menu-demo-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 12px;
}

.menu-demo-products > div {
  padding: 8px;
  background: white;
  border-radius: 11px;
}

.food-thumb {
  display: block;
  height: 65px;
  border-radius: 8px;
}

.food-one {
  background:
    radial-gradient(circle at 60% 45%, #e4c36a 0 6%, transparent 7%),
    radial-gradient(circle at 35% 65%, #7d9d68 0 7%, transparent 8%),
    linear-gradient(135deg, #d97d5d, #f2c18d);
}

.food-two {
  background:
    radial-gradient(circle at 50% 40%, #7f3f32 0 8%, transparent 9%),
    linear-gradient(135deg, #d5a75b, #edc88b);
}

.menu-demo-products b,
.menu-demo-products small {
  display: block;
}

.menu-demo-products b {
  margin-top: 7px;
  color: #3d2b20;
  font-size: 8px;
}

.menu-demo-products small {
  margin-top: 2px;
  color: #9b7253;
  font-size: 7px;
}

/* Catalog preview */

.demo-preview-catalog {
  background: #e8e2da;
}

.catalog-demo-mini {
  height: calc(100% - 34px);
  padding: 17px;
  background: #f9f7f3;
  border-radius: 0 0 14px 14px;
}

.catalog-mini-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #8b857c;
  font-size: 7px;
}

.catalog-mini-nav b {
  margin-right: auto;
  color: #1f1d1a;
  font-size: 9px;
  letter-spacing: .08em;
}

.catalog-mini-title {
  margin-top: 23px;
}

.catalog-mini-title small {
  color: #9b8f7d;
}

.catalog-mini-title strong {
  display: block;
  color: #1e1c19;
  font: 500 25px/1.1 var(--serif);
}

.catalog-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 14px;
}

.catalog-mini-grid i {
  display: block;
  height: 85px;
  border-radius: 8px;
}

.catalog-mini-grid div:nth-child(1) i {
  background: linear-gradient(155deg, #d8c5ac, #f2ece3);
}

.catalog-mini-grid div:nth-child(2) i {
  background: linear-gradient(155deg, #5b4637, #baa187);
}

.catalog-mini-grid div:nth-child(3) i {
  background: linear-gradient(155deg, #d8c09c, #eee3d1);
}

.catalog-mini-grid span {
  display: block;
  margin-top: 5px;
  color: #4c4841;
  font-size: 6px;
}

/* Service preview */

.demo-preview-service {
  background: #e5eaf0;
}

.service-demo-mini {
  height: calc(100% - 34px);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  background: linear-gradient(135deg, #0f3d70, #081f3c);
  border-radius: 0 0 14px 14px;
}

.service-demo-mini small {
  color: #f0c86e;
}

.service-demo-mini strong {
  display: block;
  max-width: 260px;
  margin: 8px 0 14px;
  color: white;
  font: 500 25px/1.08 var(--serif);
}

.service-demo-mini button {
  padding: 8px 10px;
  border: 0;
  background: #f0c86e;
  color: #082b58;
  border-radius: 8px;
  font: 700 7px/1 var(--sans);
}

.service-mini-badge {
  width: 75px;
  height: 75px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
}

.service-mini-badge span {
  color: #f0c86e;
  font: 600 21px/1 var(--serif);
}

.service-mini-badge small {
  margin-top: 3px;
  color: #aebfd0;
  font-size: 6px;
}

/* Admin preview */

.demo-preview-admin {
  background: #dfe6ee;
}

.admin-demo-mini {
  height: calc(100% - 34px);
  display: grid;
  grid-template-columns: 45px 1fr;
  overflow: hidden;
  background: #f5f7fa;
  border-radius: 0 0 14px 14px;
}

.admin-demo-mini aside {
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: #082b58;
}

.admin-demo-mini aside b {
  color: #e5ca8b;
  font: 600 15px/1 var(--serif);
}

.admin-demo-mini aside i {
  width: 15px;
  height: 4px;
  background: rgba(255,255,255,.25);
  border-radius: 99px;
}

.admin-mini-main {
  padding: 18px;
}

.admin-mini-main > small {
  color: #a98745;
}

.admin-mini-main > strong {
  display: block;
  margin-top: 2px;
  color: #082b58;
  font: 500 25px/1 var(--serif);
}

.admin-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 13px;
}

.admin-mini-stats div {
  padding: 9px;
  background: white;
  border: 1px solid #e1e5e9;
  border-radius: 8px;
}

.admin-mini-stats span,
.admin-mini-stats b {
  display: block;
}

.admin-mini-stats span {
  color: #8a95a2;
  font-size: 6px;
}

.admin-mini-stats b {
  margin-top: 2px;
  color: #082b58;
  font-size: 15px;
}

.admin-mini-row {
  margin-top: 8px;
  padding: 8px;
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid #e1e5e9;
  border-radius: 8px;
}

.admin-mini-row i {
  height: 22px;
  background: #e9e1d3;
  border-radius: 5px;
}

.admin-mini-row > span {
  width: 65%;
  height: 5px;
  background: #dce1e6;
  border-radius: 99px;
}

.admin-mini-row button {
  padding: 5px 7px;
  border: 0;
  background: #edf1f5;
  color: #5e6c7a;
  border-radius: 5px;
  font-size: 6px;
}

/* Modal */

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  padding: 24px;
  align-items: center;
  justify-content: center;
}

.demo-modal.open {
  display: flex;
}

.demo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 15, 31, .78);
  backdrop-filter: blur(10px);
}

.demo-modal-panel {
  position: relative;
  width: min(1180px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: #f7f7f6;
  border-radius: 28px;
  box-shadow: 0 40px 120px rgba(0,0,0,.32);
}

.demo-modal-top {
  position: sticky;
  z-index: 4;
  top: 0;
  padding: 17px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(247,247,246,.96);
  border-bottom: 1px solid #e1ded7;
  backdrop-filter: blur(12px);
}

.demo-modal-top > div {
  display: grid;
}

.demo-modal-top span {
  color: var(--gold-dark);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .13em;
}

.demo-modal-top strong {
  margin-top: 2px;
  color: var(--navy);
  font: 500 18px/1.2 var(--serif);
}

.demo-modal-close {
  width: 38px;
  height: 38px;
  border: 1px solid #ddd9d1;
  background: white;
  color: var(--navy);
  border-radius: 50%;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.demo-browser-frame {
  margin: 18px;
  overflow: hidden;
  background: white;
  border: 1px solid #d8d9dd;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(7, 32, 63, .10);
}

.demo-browser-toolbar {
  height: 48px;
  padding: 0 14px;
  display: grid;
  grid-template-columns: 100px 1fr 100px;
  align-items: center;
  background: #edf0f3;
  border-bottom: 1px solid #d9dde1;
}

.demo-browser-toolbar > div:first-child {
  display: flex;
  gap: 6px;
}

.demo-browser-toolbar > div:first-child span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #b9c0c7;
}

.demo-address {
  justify-self: center;
  min-width: min(430px, 80%);
  padding: 7px 14px;
  background: white;
  color: #8b939d;
  border-radius: 8px;
  text-align: center;
  font-size: 9px;
}

.demo-stage {
  min-height: 600px;
  background: white;
}

.demo-modal-bottom {
  padding: 3px 20px 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.demo-modal-bottom p {
  margin: 0;
  color: #707b87;
  font-size: 11px;
  line-height: 1.6;
}

.demo-modal-bottom p strong {
  color: var(--navy);
}

body.demo-modal-open {
  overflow: hidden;
}

/* Full demo: restaurant */

.full-demo {
  min-height: 600px;
}

.restaurant-full {
  color: #35251c;
  background: #fff9f2;
}

.restaurant-full header {
  padding: 22px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eadac9;
}

.restaurant-full header b {
  font: 600 25px/1 var(--serif);
}

.restaurant-full header nav {
  display: flex;
  gap: 24px;
  color: #745d4c;
  font-size: 11px;
}

.restaurant-hero {
  padding: 65px 5% 48px;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 60px;
  align-items: center;
}

.restaurant-hero small {
  color: #a36b46;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
}

.restaurant-hero h1 {
  max-width: 600px;
  margin: 12px 0 15px;
  font: 500 clamp(48px, 6vw, 74px)/.96 var(--serif);
  letter-spacing: -.045em;
}

.restaurant-hero p {
  max-width: 520px;
  color: #7b6759;
  line-height: 1.7;
}

.restaurant-art {
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 58% 35%, #f3d58b 0 7%, transparent 8%),
    radial-gradient(circle at 38% 52%, #60834f 0 8%, transparent 9%),
    radial-gradient(circle at 65% 67%, #9f3b30 0 8%, transparent 9%),
    radial-gradient(circle, #d98059 0 53%, #d4a061 54% 67%, #f0e0c6 68% 72%, transparent 73%);
}

.restaurant-menu-section {
  padding: 30px 5% 65px;
}

.restaurant-menu-section h2 {
  margin: 0 0 20px;
  font: 500 37px/1.1 var(--serif);
}

.full-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.full-menu-grid article {
  padding: 19px;
  background: white;
  border: 1px solid #eddfd1;
  border-radius: 16px;
}

.full-menu-grid span {
  color: #9a6949;
  font-size: 10px;
}

.full-menu-grid h3 {
  margin: 5px 0;
  font: 500 19px/1.2 var(--serif);
}

.full-menu-grid p {
  margin: 0;
  color: #8b786a;
  font-size: 10px;
  line-height: 1.55;
}

/* Full demo: catalog */

.catalog-full {
  min-height: 670px;
  color: #201f1d;
  background: #f6f3ee;
}

.catalog-full header {
  padding: 21px 5%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid #ded8cf;
}

.catalog-full header strong {
  justify-self: center;
  font-size: 14px;
  letter-spacing: .17em;
}

.catalog-full header nav {
  display: flex;
  gap: 18px;
  color: #777169;
  font-size: 9px;
}

.catalog-full header > span {
  justify-self: end;
  color: #777169;
  font-size: 10px;
}

.catalog-full-title {
  padding: 54px 5% 25px;
}

.catalog-full-title small {
  color: #998b77;
  font-size: 9px;
  letter-spacing: .15em;
}

.catalog-full-title h1 {
  margin: 8px 0 0;
  font: 500 clamp(46px, 6vw, 72px)/1 var(--serif);
  letter-spacing: -.04em;
}

.catalog-products {
  padding: 8px 5% 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.catalog-product-image {
  height: 280px;
  border-radius: 14px;
}

.catalog-products article:nth-child(1) .catalog-product-image { background: linear-gradient(150deg, #e6d7c3, #ba9770); }
.catalog-products article:nth-child(2) .catalog-product-image { background: linear-gradient(150deg, #4c4036, #bfa98f); }
.catalog-products article:nth-child(3) .catalog-product-image { background: linear-gradient(150deg, #d3bea2, #f2ebe2); }
.catalog-products article:nth-child(4) .catalog-product-image { background: linear-gradient(150deg, #c5b9ac, #6c6258); }

.catalog-products h3 {
  margin: 10px 0 3px;
  font-size: 12px;
}

.catalog-products span {
  color: #7f776d;
  font-size: 10px;
}

/* Full demo: service */

.service-full {
  min-height: 650px;
  color: white;
  background: #082b58;
}

.service-full header {
  padding: 22px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.service-full header b {
  color: #f0c86e;
  font: 600 18px/1 var(--serif);
}

.service-full header nav {
  display: flex;
  gap: 20px;
  color: #b8c7d8;
  font-size: 10px;
}

.service-full-hero {
  min-height: 500px;
  padding: 70px 5%;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
}

.service-full-hero small {
  color: #f0c86e;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}

.service-full-hero h1 {
  max-width: 700px;
  margin: 13px 0 18px;
  font: 500 clamp(48px, 6vw, 75px)/.98 var(--serif);
  letter-spacing: -.045em;
}

.service-full-hero p {
  max-width: 600px;
  color: #b9c6d5;
  line-height: 1.7;
}

.service-full-hero button {
  margin-top: 20px;
  padding: 13px 16px;
  border: 0;
  background: #f0c86e;
  color: #082b58;
  border-radius: 10px;
  font-weight: 700;
}

.service-feature-panel {
  padding: 27px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
}

.service-feature-panel article {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.service-feature-panel article:last-child {
  border-bottom: 0;
}

.service-feature-panel strong,
.service-feature-panel span {
  display: block;
}

.service-feature-panel strong {
  color: #f0c86e;
  font: 500 23px/1.2 var(--serif);
}

.service-feature-panel span {
  margin-top: 3px;
  color: #afbece;
  font-size: 10px;
}

/* Full demo: admin */

.admin-full {
  min-height: 670px;
  display: grid;
  grid-template-columns: 190px 1fr;
  color: #0f1c2d;
  background: #f4f6f8;
}

.admin-full-sidebar {
  padding: 25px 18px;
  background: #082b58;
  color: white;
}

.admin-full-sidebar b {
  display: block;
  color: #e4c785;
  font: 600 28px/1 var(--serif);
  margin-bottom: 38px;
}

.admin-full-sidebar span {
  display: block;
  padding: 10px 9px;
  margin-bottom: 4px;
  border-radius: 8px;
  color: #afbed0;
  font-size: 10px;
}

.admin-full-sidebar span.active {
  background: rgba(255,255,255,.10);
  color: white;
}

.admin-full-main {
  padding: 34px;
}

.admin-full-main small {
  color: #a98745;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
}

.admin-full-main h1 {
  margin: 5px 0 24px;
  color: #082b58;
  font: 500 42px/1 var(--serif);
}

.admin-full-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.admin-full-stats article {
  padding: 18px;
  background: white;
  border: 1px solid #dfe3e7;
  border-radius: 15px;
}

.admin-full-stats span {
  color: #8d97a4;
  font-size: 9px;
}

.admin-full-stats strong {
  display: block;
  margin-top: 3px;
  color: #082b58;
  font-size: 29px;
}

.admin-table {
  margin-top: 18px;
  overflow: hidden;
  background: white;
  border: 1px solid #dfe3e7;
  border-radius: 15px;
}

.admin-table-head,
.admin-table-row {
  display: grid;
  grid-template-columns: 1.5fr .7fr .7fr .5fr;
  gap: 10px;
  padding: 13px 16px;
  align-items: center;
}

.admin-table-head {
  color: #8c96a2;
  background: #f8f9fa;
  font-size: 8px;
  font-weight: 700;
}

.admin-table-row {
  border-top: 1px solid #edf0f2;
  color: #53606e;
  font-size: 10px;
}

.admin-table-row strong {
  color: #142033;
}

.admin-table-row em {
  color: #a98745;
  font-style: normal;
}

@media (max-width: 900px) {
  .demo-slider {
    grid-auto-columns: minmax(330px, 72%);
  }

  .demo-arrow {
    display: none;
  }

  .restaurant-hero,
  .service-full-hero {
    grid-template-columns: 1fr;
  }

  .restaurant-art {
    max-width: 390px;
  }

  .catalog-products {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .demo-slider {
    grid-auto-columns: 88%;
  }

  .demo-slider-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .demo-modal {
    padding: 8px;
  }

  .demo-modal-panel {
    max-height: calc(100vh - 16px);
    border-radius: 18px;
  }

  .demo-browser-frame {
    margin: 10px;
  }

  .demo-browser-toolbar {
    grid-template-columns: 55px 1fr 55px;
  }

  .demo-address {
    min-width: 0;
    width: 100%;
  }

  .demo-modal-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .full-menu-grid,
  .catalog-products,
  .admin-full-stats {
    grid-template-columns: 1fr;
  }

  .catalog-full header {
    grid-template-columns: 1fr auto;
  }

  .catalog-full header nav {
    display: none;
  }

  .catalog-full header strong {
    justify-self: start;
  }

  .restaurant-full header nav,
  .service-full header nav {
    display: none;
  }

  .admin-full {
    grid-template-columns: 1fr;
  }

  .admin-full-sidebar {
    display: none;
  }

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

  .admin-table-head,
  .admin-table-row {
    min-width: 560px;
  }
}


/* V3 preview cards */
.demo-open {
  text-decoration: none;
}

.demo-preview-quote {
  background: #e9e0d3;
}

.quote-mini {
  height: calc(100% - 34px);
  padding: 22px;
  background: #fffaf2;
  border-radius: 0 0 14px 14px;
}

.quote-mini small,
.agenda-mini small,
.automation-mini small {
  color: #9b7446;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .13em;
}

.quote-mini strong,
.agenda-mini strong,
.automation-mini strong {
  display: block;
  margin-top: 7px;
  color: #17304c;
  font: 500 24px/1.1 var(--serif);
}

.quote-mini-options {
  display: flex;
  gap: 6px;
  margin-top: 18px;
}

.quote-mini-options span {
  padding: 6px 9px;
  background: white;
  border: 1px solid #e9ddca;
  border-radius: 999px;
  color: #6f624f;
  font-size: 7px;
}

.quote-mini-bar {
  height: 7px;
  margin: 18px 0 14px;
  background: #eee7dc;
  border-radius: 99px;
  overflow: hidden;
}

.quote-mini-bar i {
  display: block;
  width: 55%;
  height: 100%;
  background: #d7ba78;
}

.quote-mini button {
  padding: 8px 12px;
  border: 0;
  border-radius: 8px;
  background: #082b58;
  color: white;
  font-size: 7px;
}

.demo-preview-agenda {
  background: #dfe8e7;
}

.agenda-mini {
  height: calc(100% - 34px);
  padding: 22px;
  background: #f6fbfa;
  border-radius: 0 0 14px 14px;
}

.agenda-mini-days {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 17px;
}

.agenda-mini-days span {
  padding: 8px;
  background: white;
  border: 1px solid #dce8e5;
  border-radius: 9px;
  color: #71847f;
  text-align: center;
  font-size: 6px;
}

.agenda-mini-days b {
  color: #214f47;
  font-size: 13px;
}

.agenda-mini-times {
  display: flex;
  gap: 6px;
  margin-top: 9px;
}

.agenda-mini-times span {
  padding: 7px 9px;
  background: #214f47;
  color: white;
  border-radius: 7px;
  font-size: 7px;
}

.demo-preview-automation {
  background: #dfe4eb;
}

.automation-mini {
  height: calc(100% - 34px);
  padding: 22px;
  background: #0b294d;
  border-radius: 0 0 14px 14px;
  color: white;
}

.automation-mini small {
  color: #d7ba78;
}

.automation-mini strong {
  color: white;
}

.automation-flow {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
}

.automation-flow span {
  padding: 7px 8px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
  border-radius: 8px;
  color: #dce5ef;
  font-size: 6px;
}

.automation-flow i {
  color: #d7ba78;
  font-style: normal;
  font-size: 8px;
}

.automation-status {
  margin-top: 16px;
  color: #9fb0c4;
  font-size: 7px;
}

.automation-status i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: #70c184;
}


.catalog-mini-grid-real img{
  display:block;
  width:100%;
  height:85px;
  object-fit:cover;
  border-radius:8px;
  background:#f6f2ec;
}

.menu-demo-products-real img.food-thumb-real{
  display:block;
  width:100%;
  height:65px;
  object-fit:cover;
  border-radius:8px;
  background:#f6efe5;
}
