:root {
  --ink: #163e35;
  --ink-deep: #102d27;
  --text: #243d35;
  --muted: #63736d;
  --line: #dce5df;
  --paper: #fff;
  --soft: #f5f7f3;
  --mint: #e9f1e9;
  --lime: #d6ef7a;
  --radius: 14px;
  --font: "Segoe UI", Arial, Helvetica, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font: 16px/1.65 var(--font);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #688524;
  outline-offset: 5px;
}
a:hover {
  text-decoration: none;
}
p {
  margin: 0 0 1.2rem;
}
h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 650;
  margin: 0;
  line-height: 1.14;
}
h1 {
  font-size: clamp(2.8rem, 4.6vw, 4.75rem);
  letter-spacing: -0.055em;
}
h2 {
  font-size: clamp(2rem, 3.1vw, 2.85rem);
  letter-spacing: -0.045em;
}
h3 {
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}
address {
  font-style: normal;
}
button {
  border: 0;
}
svg {
  flex-shrink: 0;
}
.icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}
.wrap {
  width: min(1240px, calc(100% - 96px));
  margin-inline: auto;
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.6;
  color: #526d5e;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow .icon {
  width: 18px;
  height: 18px;
}
.eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #789e4d;
}
.muted {
  color: var(--muted);
}
.small {
  font-size: 0.875rem;
}
.lead {
  font-size: 1.18rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 710px;
  margin-top: 26px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 15px 23px;
  min-height: 54px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.45;
  transition:
    background 0.15s,
    transform 0.15s;
}
.button:hover {
  transform: translateY(-2px);
}
.button .icon {
  width: 19px;
  height: 19px;
}
.button-dark {
  background: var(--ink);
  color: white;
}
.button-dark:hover {
  background: #235d4f;
}
.button-lime {
  background: var(--lime);
  color: var(--ink-deep);
}
.button-lime:hover {
  background: #e3f6a6;
}
.button-outline {
  border-color: var(--line);
  background: white;
  color: var(--ink);
}
.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: #a5b8a4;
  text-underline-offset: 6px;
}
.text-link .icon {
  width: 19px;
  height: 19px;
}
.text-link:hover {
  text-decoration-color: var(--ink);
}
.skip-link {
  position: fixed;
  z-index: 50;
  top: 10px;
  left: 20px;
  transform: translateY(-150%);
  background: var(--lime);
  padding: 12px 20px;
}
.skip-link:focus {
  transform: translateY(0);
}
[hidden] {
  display: none !important;
}
.topbar {
  background: var(--ink);
  color: #edf5e9;
  font-size: 0.76rem;
  line-height: 1.4;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 10px;
}
.topbar span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar .icon {
  width: 14px;
  height: 14px;
}
.topbar a {
  letter-spacing: 0.015em;
}
.header {
  background: rgba(255, 255, 255, 0.98);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #eef1ec;
}
.nav-row {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-mark {
  width: 37px;
  height: 37px;
  background: var(--ink);
  color: var(--lime);
  border-radius: 9px;
  font-weight: 750;
  display: grid;
  place-items: center;
  line-height: 1;
  text-align: center;
  font-size: 16px;
  letter-spacing: -1px;
}
.brand-mark span {
  font-size: 17px;
}
.brand-name {
  font-size: 29px;
  font-weight: 750;
  letter-spacing: -1.5px;
  line-height: 1;
}
.brand-dot {
  color: #7d9c46;
}
.header nav {
  display: flex;
  align-items: center;
  gap: 29px;
}
.header nav > a {
  font-size: 0.87rem;
  font-weight: 550;
}
.header nav > a:not(.button):hover,
.header nav > a[aria-current] {
  color: #567c29;
}
.nav-cta {
  min-height: 44px;
  padding: 12px 18px;
  margin-left: 8px;
}
.menu-toggle {
  display: none;
  background: var(--soft);
  padding: 9px;
  border-radius: 5px;
  color: var(--ink);
}
.hero {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 65px;
  align-items: center;
  padding-top: 46px;
  padding-bottom: 50px;
}
.hero .eyebrow {
  margin-bottom: 18px;
}
.hero .hero-title {
  font-size: clamp(3.2rem, 4.9vw, 4.5rem);
  font-weight: 650;
  color: var(--ink);
  letter-spacing: -0.063em;
  line-height: 1.04;
  margin-bottom: 20px;
}
.hero .hero-title > span {
  color: #648b36;
}
.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.45;
  font-weight: 550;
  margin-bottom: 15px;
  letter-spacing: -0.015em;
}
.hero-description {
  font-size: 1rem;
  color: var(--muted);
  max-width: 425px;
  line-height: 1.75;
  margin-bottom: 24px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}
.hero-actions .text-link {
  font-size: 0.875rem;
}
.hero-proof {
  display: flex;
  gap: 24px;
  font-size: 0.76rem;
  color: #586d60;
  margin-top: 27px;
}
.hero-proof span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-proof .icon {
  width: 16px;
  height: 16px;
}
.hero-visual {
  background: #eaf0e8;
  border: 1px solid #e2e9de;
  border-radius: 21px;
  padding: 24px 24px 17px;
  position: relative;
  min-width: 0;
  box-shadow: inset 0 0 60px #f0f5e9;
}
.visual-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  gap: 15px;
  color: #57705f;
  margin: 0 1px 19px;
}
.visual-kicker span:last-child {
  font-size: 0.54rem;
  white-space: nowrap;
}
.product-window {
  background: white;
  border: 1px solid #d0dacf;
  border-radius: 10px;
  box-shadow: 0 17px 35px #1a372715;
  overflow: hidden;
}
.window-bar {
  background: #173e35;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 17px;
  gap: 10px;
}
.mini-brand {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -1px;
}
.preview-tabs {
  display: flex;
  gap: 4px;
}
.preview-tabs button {
  color: #cedcd2;
  background: transparent;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 5px;
}
.preview-tabs button[aria-selected="true"] {
  background: #d8ec9c;
  color: #203e2d;
}
.preview-tabs button:hover {
  background: #3b6152;
}
.preview-tabs button[aria-selected="true"]:hover {
  background: #e2f3b9;
}
.pos-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 17px 16px;
  border-bottom: 1px solid #edf1eb;
  gap: 5px;
}
.pos-top > span:first-child {
  display: grid;
  gap: 4px;
}
.pos-top strong {
  font-size: 0.96rem;
}
.pos-top small {
  font-size: 0.64rem;
  color: #7b8c80;
}
.sample-badge {
  font-size: 0.48rem;
  font-weight: 650;
  letter-spacing: 0.065em;
  background: #f2f5ef;
  color: #6e7f71;
  padding: 5px 7px;
  border-radius: 4px;
}
.pos-layout {
  display: flex;
  min-height: 289px;
}
.pos-sidebar {
  padding: 15px 9px;
  background: #f8faf6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: #7c9183;
  border-right: 1px solid #edf1eb;
}
.pos-sidebar > .icon,
.pos-sidebar .sidebar-active > .icon {
  width: 18px;
  height: 18px;
}
.sidebar-active {
  padding: 8px;
  background: #e3eddc;
  border-radius: 6px;
  color: var(--ink);
}
.sidebar-bottom {
  margin-top: auto;
  border-radius: 50%;
  font-size: 0.5rem;
  background: #e3eadf;
  padding: 6px;
  font-weight: 700;
}
.pos-main {
  padding: 18px 17px 13px;
  flex: 1;
  min-width: 0;
}
.pos-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 17px;
  gap: 5px;
}
.pos-label b {
  font-size: 0.72rem;
}
.pos-label > span {
  font-size: 0.5rem;
  display: flex;
  align-items: center;
  gap: 5px;
}
.legend {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: inline-block;
}
.legend.free {
  background: #aec398;
}
.legend.busy {
  background: #e7b980;
  margin-left: 4px;
}
.tables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.table-tile {
  position: relative;
  border: 1px solid #dce8d5;
  border-radius: 7px;
  padding: 11px 7px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #f0f6ec;
  color: #718465;
  min-height: 64px;
}
.table-number {
  font-size: 0.64rem;
  font-weight: 700;
  position: absolute;
  top: 7px;
  left: 8px;
}
.table-tile > .icon {
  width: 25px;
  height: 25px;
  margin-top: 3px;
  stroke-width: 1.3;
}
.table-tile small {
  font-size: 0.51rem;
}
.table-tile.occupied {
  background: #fbf1e3;
  border-color: #edddc3;
  color: #a17d45;
}
.table-tile.bill {
  background: #eef0fb;
  border-color: #dfe2f2;
  color: #7d83ad;
}
.table-tile.selected {
  background: #2e5945;
  color: white;
  border-color: #2e5945;
}
.pos-caption {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.58rem;
  color: #668458;
  margin-top: 15px;
}
.pos-caption .icon {
  width: 14px;
  height: 14px;
}
.order-notification {
  margin: 17px 7px 0 7px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #dce6d6;
  border-radius: 9px;
  box-shadow: 0 8px 16px #2e4b2110;
}
.order-notification > .icon:first-child {
  width: 29px;
  height: 29px;
  background: #e9f2dd;
  box-sizing: content-box;
  padding: 8px;
  border-radius: 8px;
  color: #5e853c;
}
.order-notification > span {
  display: grid;
  gap: 3px;
}
.order-notification strong {
  font-size: 0.84rem;
  letter-spacing: -0.02em;
}
.order-notification small {
  font-size: 0.65rem;
  color: var(--muted);
}
.notification-check {
  margin-left: auto;
  color: #567b39;
  width: 18px;
}
.preview-note {
  text-align: center;
  font-size: 0.6rem;
  color: #667b66;
  margin: 15px 0 0;
}
.sample-kitchen {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  min-height: 289px;
  background: #f9fbf7;
}
.kitchen-ticket {
  background: white;
  border: 1px solid #dce4d7;
  border-radius: 6px;
  overflow: hidden;
}
.kitchen-ticket header {
  background: #e9eee6;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.kitchen-ticket strong {
  font-size: 0.75rem;
}
.kitchen-ticket small {
  font-size: 0.53rem;
}
.kitchen-ticket p {
  font-size: 0.68rem;
  margin: 8px 12px;
}
.kitchen-ticket.new header {
  background: #dcecba;
}
.kitchen-ticket.changed header {
  background: #f7e9cf;
}
.voice-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  grid-column: 1/-1;
  background: #173e35;
  color: #eff6e8;
  border-radius: 6px;
  padding: 13px;
}
.voice-strip b {
  font-size: 0.7rem;
  display: block;
}
.voice-strip small {
  font-size: 0.62rem;
  color: #c3d3bf;
}
.sample-bill {
  padding: 14px 35px;
  max-width: 365px;
  margin: auto;
  min-height: 289px;
}
.bill-brand {
  font-weight: 700;
  text-align: center;
  letter-spacing: -1px;
}
.sample-bill > p {
  font-size: 0.65rem;
  text-align: center;
  margin: 2px 0 15px;
  color: var(--muted);
}
.bill-line {
  display: flex;
  justify-content: space-between;
  padding-block: 9px;
  font-size: 0.73rem;
  border-bottom: 1px dashed #dce4d7;
}
.bill-total {
  margin-top: 6px;
  font-size: 0.95rem;
  border-bottom: 0;
}
.sample-bill > small {
  font-size: 0.59rem;
  color: var(--muted);
}
.feature-ribbon {
  border-block: 1px solid var(--line);
  background: #fcfdfb;
}
.feature-ribbon .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 25px;
}
.feature-ribbon span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 550;
  font-size: 0.87rem;
  color: #4f6555;
}
.feature-ribbon .icon {
  color: #809879;
  width: 21px;
  height: 21px;
}
.section {
  padding-block: 95px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 41px;
}
.section-heading .eyebrow {
  margin-bottom: 15px;
}
.section-heading > p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
  max-width: 340px;
  padding-bottom: 3px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  display: block;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 28px 22px;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
  background: #fff;
}
.feature-card:hover {
  border-color: #92aa76;
  box-shadow: 0 8px 25px #203d2110;
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 47px;
  border-radius: 10px;
  background: #eff4e8;
  color: #55723d;
}
.feature-index {
  position: absolute;
  top: 34px;
  right: 27px;
  color: #63736d;
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
}
.feature-card h3 {
  margin-top: 23px;
  margin-bottom: 13px;
  font-size: 1.19rem;
}
.feature-card p {
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.8;
  min-height: 76px;
  margin-bottom: 18px;
}
.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.77rem;
  font-weight: 650;
  padding-top: 16px;
  border-top: 1px solid #edf0e9;
}
.card-link .icon {
  width: 18px;
  height: 18px;
}
.workflow-section {
  background: var(--ink);
  color: #d9e5d9;
  padding-block: 78px;
}
.workflow-section h2,
.workflow-section h3 {
  color: #f6faef;
}
.workflow-section .eyebrow {
  color: #c5de96;
}
.light-link {
  color: #e0edc9;
  text-decoration-color: #5e8165;
}
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 29px;
}
.workflow-steps article {
  border-top: 1px solid #4a6c57;
  padding-top: 24px;
}
.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  color: #c7e08e;
}
.step-top > span {
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.step-top .icon {
  width: 25px;
  height: 25px;
}
.workflow-steps h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
}
.workflow-steps p {
  font-size: 0.89rem;
  line-height: 1.8;
  color: #bdcfc2;
  margin: 0;
}
.restaurant-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}
.section-intro {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
  max-width: 470px;
  margin-block: 24px;
}
.restaurant-types {
  border-top: 1px solid var(--line);
}
.restaurant-types article {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.restaurant-types article > .icon {
  margin-top: 3px;
  width: 30px;
  height: 30px;
  color: #78945c;
}
.restaurant-types h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}
.restaurant-types p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}
.chennai-section {
  background: var(--soft);
  border-block: 1px solid #e9eee4;
  padding: 72px 0;
}
.chennai-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 85px;
  align-items: center;
}
.chennai-layout > div > p:not(.eyebrow) {
  margin-block: 24px;
  max-width: 500px;
  color: var(--muted);
  font-size: 0.95rem;
}
.area-preview {
  border: 1px solid #d5dfcf;
  border-radius: 15px;
  background: #fff;
  padding: 29px;
}
.area-preview-head {
  font-size: 0.67rem;
  letter-spacing: 0.11em;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
  padding-bottom: 22px;
  border-bottom: 1px solid #e8ede4;
  color: #5c7658;
}
.area-preview-head .icon {
  width: 18px;
  height: 18px;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding-block: 23px;
}
.area-tags span {
  display: inline-block;
  padding: 7px 12px;
  border: 1px solid #dce5d4;
  border-radius: 5px;
  font-size: 0.78rem;
  color: #536a4c;
  background: #fafcf7;
}
.area-tags span:last-child {
  background: #eaf3d7;
  border-color: #cddbaf;
}
.area-preview .text-link {
  font-size: 0.8rem;
}
.area-preview > p {
  font-size: 0.67rem;
  color: #798575;
  margin: 16px 0 0;
}
.faq-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 85px;
}
.faq-section h2 {
  max-width: 390px;
}
.faq-section .muted {
  margin-top: 25px;
  line-height: 2;
  font-size: 0.92rem;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  padding: 21px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 550;
  line-height: 1.55;
}
summary::-webkit-details-marker {
  display: none;
}
.faq-plus {
  font-size: 1.5rem;
  color: #657d51;
  font-weight: 400;
  line-height: 1;
}
details[open] .faq-plus {
  transform: rotate(45deg);
}
details p {
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.85;
  margin: 0 34px 23px 0;
}
.cta-section {
  background: var(--ink);
  border-radius: 17px;
  padding: 46px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 90px;
}
.cta-section .eyebrow {
  color: #c6e09b;
  font-size: 0.67rem;
  margin-bottom: 18px;
}
.cta-section h2 {
  color: #f9fcf3;
  font-size: 2.35rem;
}
.cta-section p:not(.eyebrow) {
  font-size: 0.85rem;
  color: #c1d3c5;
  margin: 19px 0 0;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  flex-shrink: 0;
}
.cta-phone {
  display: flex;
  gap: 8px;
  color: #e0eada;
  font-size: 0.81rem;
}
.cta-phone .icon {
  width: 16px;
  height: 16px;
}
.footer {
  background: #f7f9f5;
  border-top: 1px solid #e7ede1;
  padding-top: 53px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 1.05fr 1fr;
  gap: 42px;
  padding-bottom: 50px;
}
.footer .brand {
  margin-bottom: 18px;
}
.footer-about p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.footer-grid h2 {
  font-size: 0.85rem;
  letter-spacing: 0;
  margin: 7px 0 21px;
  font-weight: 650;
}
.footer-grid > div > a:not(.brand) {
  display: block;
  font-size: 0.78rem;
  color: #5e7362;
  margin-top: 8px;
}
.footer-grid > div > a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-grid address {
  font-size: 0.79rem;
  line-height: 1.9;
  color: #5e7362;
  max-width: 245px;
}
.footer-grid .footer-directions {
  font-weight: 650;
  margin-top: 13px !important;
  margin-bottom: 17px;
}
.footer-directions .icon {
  width: 14px;
  height: 14px;
  margin-left: 4px;
}
.footer-grid .footer-call {
  font-size: 0.98rem !important;
  color: var(--ink) !important;
  font-weight: 650;
}
.footer-bottom {
  border-top: 1px solid #dee6d8;
  padding-block: 21px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #63736d;
  font-size: 0.69rem;
}
.mobile-contact {
  display: none;
}
.breadcrumbs {
  display: flex;
  gap: 11px;
  font-size: 0.77rem;
  align-items: center;
  color: #71806e;
  padding-top: 28px;
  flex-wrap: wrap;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs > span[aria-hidden] {
  color: #a4b29c;
}
.feature-hero {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 80px;
  padding-top: 51px;
  padding-bottom: 68px;
  align-items: center;
}
.feature-hero h1 {
  font-size: clamp(2.6rem, 4.2vw, 4.1rem);
}
.feature-hero .lead {
  font-size: 1.08rem;
  line-height: 1.85;
  margin-bottom: 29px;
}
.feature-statement {
  background: #eaf1e2;
  border: 1px solid #d6e2ce;
  border-radius: 17px;
  padding: 35px;
  min-height: 335px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.feature-statement .feature-icon {
  background: #fff;
  width: 61px;
  height: 61px;
}
.feature-statement .icon {
  width: 30px;
  height: 30px;
}
.feature-statement p {
  font-size: 2.55rem;
  line-height: 1.2;
  letter-spacing: -0.05em;
  color: var(--ink);
  font-weight: 600;
  margin: 26px 0;
}
.feature-statement > span:last-child {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: #5f7652;
  font-weight: 650;
}
.feature-details {
  border-top: 1px solid var(--line);
  padding-top: 65px;
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 70px;
}
.detail-grid article {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.detail-number {
  font-size: 0.78rem;
  color: #7b9367;
  letter-spacing: 0.1em;
}
.detail-grid h3 {
  margin: 13px 0 15px;
  font-size: 1.3rem;
}
.detail-grid p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.85;
}
.example-section {
  background: var(--soft);
  padding: 70px 0;
}
.example-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
}
.scenario {
  font-size: 1.1rem;
  line-height: 1.9;
  margin: 25px 0;
  color: #506447;
}
.demo-checklist {
  border: 1px solid #dce5d2;
  border-radius: 12px;
  padding: 31px;
  background: white;
}
.demo-checklist h3 {
  font-size: 1.4rem;
  margin-bottom: 13px;
}
.demo-checklist > p {
  color: var(--muted);
  font-size: 0.93rem;
}
.demo-checklist ul {
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}
.demo-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.94rem;
  margin-bottom: 14px;
}
.demo-checklist li .icon {
  width: 17px;
  height: 17px;
  margin-top: 4px;
  color: #729443;
}
.related-section {
  margin-bottom: 70px;
}
.related-section h2 {
  font-size: 2rem;
  margin-bottom: 25px;
}
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.related-links a {
  border: 1px solid var(--line);
  padding: 14px 18px;
  border-radius: 7px;
  display: flex;
  gap: 13px;
  align-items: center;
  font-size: 0.86rem;
}
.related-links a:hover {
  background: var(--soft);
}
.related-links .icon {
  width: 19px;
  height: 19px;
}
.related-links .icon:last-child {
  margin-left: 8px;
  width: 16px;
}
.page-intro {
  padding-top: 55px;
  padding-bottom: 55px;
}
.page-intro h1 {
  max-width: 940px;
}
.page-intro .lead {
  max-width: 760px;
}
.area-directory {
  margin-bottom: 75px;
}
.directory-tools {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 35px;
}
.directory-tools > div {
  flex: 1;
  max-width: 530px;
}
.directory-tools label {
  display: block;
  font-weight: 650;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.directory-tools > p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 15px;
}
.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #b8c9ad;
  border-radius: 6px;
  padding: 3px 15px;
  background: #fbfcf9;
}
.search-box > .icon {
  width: 20px;
  height: 20px;
  color: #6c8657;
}
.search-box input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 12px 0;
  font-size: 0.9rem;
  color: var(--ink);
}
.search-box input:focus {
  outline: 0;
}
.search-box:focus-within {
  outline: 2px solid #8eaa6c;
  outline-offset: 3px;
}
.search-box button {
  background: transparent;
  color: var(--ink);
  font-size: 0.8rem;
  text-decoration: underline;
}
.area-jumps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 35px;
}
.area-jumps a {
  border: 1px solid var(--line);
  padding: 7px 12px;
  border-radius: 5px;
  font-size: 0.8rem;
  background: var(--soft);
}
.area-jumps a:hover {
  border-color: #8fa776;
}
.area-group {
  padding: 35px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}
.area-group h2 {
  font-size: 1.6rem;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}
.area-group p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.85;
}
.area-group ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  gap: 10px 16px;
  padding: 0;
  margin: 0;
  align-content: start;
}
.area-group li {
  font-size: 0.86rem;
  padding: 3px 0;
  color: #476141;
}
.coverage-note {
  padding: 32px;
  background: var(--soft);
  border-radius: 10px;
  margin-top: 30px;
}
.coverage-note h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.coverage-note p {
  color: var(--muted);
  max-width: 850px;
  font-size: 0.95rem;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 95px;
  margin-bottom: 95px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.contact-method > span {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.contact-method small {
  font-size: 0.66rem;
  letter-spacing: 0.09em;
  color: #6c815d;
  font-weight: 650;
}
.contact-method strong {
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 600;
  overflow-wrap: anywhere;
}
.contact-method > .icon:first-child {
  color: #718d56;
}
.contact-method > .icon:last-child {
  margin-left: auto;
  width: 18px;
}
.office-card {
  padding: 29px;
  border: 1px solid #dce6d2;
  background: #f1f6e9;
  border-radius: 12px;
  margin-top: 25px;
}
.office-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #6b8159;
}
.office-card h2 {
  font-size: 1.9rem;
  margin: 15px 0 20px;
}
.office-card address {
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 18px;
  max-width: 330px;
}
.office-card .small {
  margin: 20px 0 0;
}
.secondary-office {
  margin-top: 27px;
  padding-left: 4px;
}
.secondary-office h3 {
  font-size: 1.12rem;
  margin-bottom: 13px;
}
.secondary-office address {
  font-size: 0.91rem;
  color: var(--muted);
  margin-bottom: 13px;
}
.enquiry-card {
  padding: 33px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fcfdfb;
  align-self: start;
}
.enquiry-card h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 17px;
}
.enquiry-card > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.86rem;
}
.enquiry-card .eyebrow {
  font-size: 0.64rem;
  margin-bottom: 16px;
}
form label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  margin: 17px 0 7px;
}
form label span {
  color: var(--muted);
  font-weight: 400;
  font-size: 0.75rem;
}
form input,
form textarea {
  width: 100%;
  border: 1px solid #c9d5c1;
  background: white;
  border-radius: 5px;
  padding: 11px 12px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.5;
}
form textarea {
  resize: vertical;
  min-height: 110px;
  max-height: 450px;
}
.form-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
form .button {
  width: 100%;
  margin-top: 22px;
}
.form-note {
  font-size: 0.69rem;
  line-height: 1.75;
  color: #708168;
  margin: 15px 0 0;
}
.form-note a {
  text-decoration: underline;
}
#draft-result {
  border-top: 1px solid var(--line);
  padding-top: 23px;
  margin-top: 22px;
}
#draft-result h3 {
  margin-bottom: 12px;
}
#draft-result p {
  font-size: 0.87rem;
  color: var(--muted);
}
#draft-result a {
  overflow-wrap: anywhere;
  text-decoration: underline;
}
#draft-text {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font: 0.85rem/1.8 var(--font);
  padding: 18px;
  background: var(--mint);
  border-radius: 6px;
}
.guide {
  max-width: 900px;
}
.guide .page-intro h1 {
  font-size: clamp(2.5rem, 4.1vw, 4rem);
}
.guide-steps section {
  display: flex;
  gap: 30px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.guide-steps .detail-number {
  margin-top: 7px;
}
.guide-steps h2 {
  font-size: 1.65rem;
  margin-bottom: 15px;
}
.guide-steps p {
  color: var(--muted);
  line-height: 1.9;
}
.guide-note {
  padding: 34px;
  background: var(--soft);
  border-radius: 12px;
  margin: 30px 0 75px;
}
.guide-note h2 {
  font-size: 1.8rem;
  margin-bottom: 19px;
}
.guide-note p {
  color: var(--muted);
}
.prose {
  max-width: 820px;
  padding-block: 60px 85px;
}
.prose h1 {
  margin-bottom: 35px;
}
.prose h2 {
  font-size: 1.65rem;
  margin: 30px 0 18px;
}
.prose p,
.prose address {
  color: var(--muted);
  line-height: 1.9;
}
.prose a {
  text-decoration: underline;
  overflow-wrap: anywhere;
}
.error-page {
  min-height: 60vh;
}
.error-page p:not(.eyebrow) {
  margin-top: 20px;
}
@media (min-width: 1500px) {
  .hero {
    gap: 80px;
    padding-block: 85px;
  }
  .hero .hero-title {
    font-size: 5.25rem;
  }
  .hero-visual {
    padding: 29px 27px 20px;
  }
  .table-tile {
    min-height: 75px;
  }
  .pos-layout {
    min-height: 315px;
  }
  .sample-kitchen,
  .sample-bill {
    min-height: 315px;
  }
}
@media (max-width: 1150px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero {
    gap: 35px;
  }
  .hero .hero-title {
    font-size: 4rem;
  }
  .header nav {
    gap: 19px;
  }
  .nav-row {
    gap: 20px;
  }
  .hero-visual {
    padding: 19px 16px 14px;
  }
  .visual-kicker span:last-child {
    display: none;
  }
  .pos-label > span {
    font-size: 0.45rem;
  }
  .pos-sidebar {
    padding-inline: 6px;
  }
  .pos-main {
    padding-inline: 12px;
  }
  .hero-actions {
    gap: 17px;
    flex-wrap: wrap;
  }
  .hero-proof {
    gap: 15px;
  }
  .order-notification {
    margin-inline: 0;
    padding: 12px;
  }
  .order-notification strong {
    font-size: 0.75rem;
  }
  .order-notification small {
    font-size: 0.57rem;
  }
  .section-heading > p {
    max-width: 280px;
  }
  .feature-card {
    padding: 25px 22px;
  }
  .restaurant-section,
  .chennai-layout,
  .faq-section {
    gap: 50px;
  }
  .footer-grid {
    gap: 26px;
  }
  .contact-layout {
    gap: 50px;
  }
  .feature-hero {
    gap: 45px;
  }
  .feature-statement {
    padding: 27px;
  }
  .feature-statement p {
    font-size: 2.2rem;
  }
  .cta-section {
    padding-inline: 38px;
  }
  .cta-section h2 {
    font-size: 2.1rem;
  }
  .area-group {
    gap: 35px;
  }
}
@media (max-width: 900px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .topbar .wrap {
    justify-content: center;
  }
  .topbar a {
    display: none;
  }
  .nav-row {
    height: 75px;
  }
  .header nav {
    gap: 15px;
  }
  .header nav > a {
    font-size: 0.77rem;
  }
  .header nav .nav-cta {
    padding: 10px 12px;
    gap: 8px;
    margin-left: 0;
  }
  .brand-name {
    font-size: 25px;
  }
  .brand-mark {
    width: 33px;
    height: 33px;
    line-height: 29px;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 27px;
    padding-top: 47px;
    padding-bottom: 51px;
  }
  .hero .hero-title {
    font-size: 3.25rem;
  }
  .hero .eyebrow {
    font-size: 0.62rem;
  }
  .hero-subtitle {
    font-size: 1.05rem;
  }
  .hero-description {
    font-size: 0.9rem;
  }
  .hero-proof {
    flex-direction: column;
    gap: 8px;
    font-size: 0.7rem;
  }
  .hero-visual {
    padding: 15px 12px;
  }
  .pos-top {
    padding: 12px 10px;
  }
  .sample-badge {
    display: none;
  }
  .preview-tabs button {
    font-size: 0.6rem;
    padding: 5px 7px;
  }
  .mini-brand {
    font-size: 17px;
  }
  .window-bar {
    padding: 9px 12px;
  }
  .pos-sidebar {
    display: none;
  }
  .table-tile {
    min-height: 60px;
  }
  .table-tile small {
    font-size: 0.48rem;
  }
  .tables {
    gap: 7px;
  }
  .pos-main {
    padding: 12px;
  }
  .pos-top strong {
    font-size: 0.85rem;
  }
  .order-notification {
    gap: 7px;
  }
  .order-notification > .icon:first-child {
    width: 21px;
    height: 21px;
    padding: 5px;
  }
  .notification-check {
    display: none;
  }
  .order-notification small {
    font-size: 0.54rem;
  }
  .preview-note {
    font-size: 0.52rem;
  }
  .feature-ribbon .wrap {
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 28px;
    row-gap: 14px;
    padding-block: 19px;
  }
  .feature-ribbon span {
    font-size: 0.78rem;
  }
  .section {
    padding-block: 65px;
  }
  .section-heading {
    align-items: flex-start;
    gap: 25px;
  }
  .section-heading > p {
    max-width: 245px;
    font-size: 0.83rem;
  }
  .section-heading h2 {
    font-size: 2.25rem;
  }
  .feature-grid {
    gap: 14px;
  }
  .feature-card {
    padding: 22px 18px;
  }
  .feature-card h3 {
    font-size: 1.06rem;
  }
  .feature-card p {
    font-size: 0.83rem;
    min-height: 88px;
  }
  .feature-index {
    right: 19px;
    top: 25px;
  }
  .workflow-steps {
    gap: 20px;
  }
  .workflow-steps h3 {
    font-size: 1.06rem;
  }
  .workflow-steps p {
    font-size: 0.82rem;
  }
  .restaurant-section,
  .chennai-layout,
  .faq-section {
    gap: 35px;
  }
  .chennai-section {
    padding-block: 55px;
  }
  .chennai-layout h2 {
    font-size: 2rem;
  }
  .area-preview {
    padding: 24px;
  }
  .area-tags {
    gap: 7px;
  }
  .area-tags span {
    padding: 6px 9px;
    font-size: 0.7rem;
  }
  .cta-section {
    padding: 33px 28px;
    gap: 25px;
  }
  .cta-section h2 {
    font-size: 1.85rem;
  }
  .cta-section p:not(.eyebrow) {
    max-width: 380px;
  }
  .cta-section .eyebrow {
    font-size: 0.6rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 55px;
  }
  .feature-hero {
    gap: 30px;
  }
  .feature-hero h1 {
    font-size: 3rem;
  }
  .feature-statement p {
    font-size: 2rem;
  }
  .feature-statement {
    padding: 25px;
    min-height: 300px;
  }
  .feature-hero .lead {
    font-size: 0.97rem;
  }
  .example-grid {
    gap: 40px;
  }
  .area-group {
    grid-template-columns: 1fr 1.8fr;
  }
  .area-group ul {
    grid-template-columns: 1fr 1fr;
  }
  .contact-layout {
    gap: 30px;
  }
  .enquiry-card {
    padding: 25px;
  }
  .contact-method strong {
    font-size: 0.93rem;
  }
  .enquiry-card h2 {
    font-size: 1.7rem;
  }
  .form-pair {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .sample-kitchen {
    padding: 12px;
    gap: 9px;
  }
  .kitchen-ticket header {
    padding: 7px;
    flex-wrap: wrap;
  }
  .kitchen-ticket p {
    font-size: 0.6rem;
    margin: 7px;
  }
  .voice-strip {
    padding: 10px;
  }
  .voice-strip b {
    font-size: 0.62rem;
  }
  .voice-strip small {
    font-size: 0.54rem;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 87px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .topbar {
    font-size: 0.67rem;
  }
  .topbar .wrap {
    padding-block: 8px;
  }
  .nav-row {
    height: 68px;
  }
  .brand-name {
    font-size: 27px;
  }
  .header nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 20px #163e3510;
    padding: 15px 20px 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .header nav.is-open {
    display: flex;
  }
  .header nav > a {
    font-size: 0.95rem;
    padding: 13px 8px;
  }
  .header nav .nav-cta {
    padding: 14px 18px;
    margin-top: 10px;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 37px;
    padding-bottom: 40px;
  }
  .hero .hero-title {
    font-size: clamp(3.25rem, 12vw, 4.4rem);
    letter-spacing: -0.065em;
  }
  .hero .eyebrow {
    font-size: 0.65rem;
    margin-bottom: 21px;
  }
  .hero-subtitle {
    font-size: 1.18rem;
  }
  .hero-description {
    font-size: 0.96rem;
    max-width: 500px;
    margin-bottom: 25px;
  }
  .hero-actions {
    gap: 22px;
    flex-wrap: wrap;
  }
  .hero-actions .button {
    font-size: 0.86rem;
    padding-inline: 19px;
  }
  .hero-proof {
    flex-direction: row;
    gap: 22px;
    margin-top: 22px;
    font-size: 0.68rem;
  }
  .hero-visual {
    padding: 22px 18px 16px;
    max-width: 510px;
    width: 100%;
    margin: auto;
  }
  .visual-kicker {
    font-size: 0.53rem;
    margin-bottom: 16px;
  }
  .visual-kicker span:last-child {
    display: inline;
    font-size: 0.48rem;
  }
  .pos-top {
    padding: 15px;
  }
  .pos-top strong {
    font-size: 0.89rem;
  }
  .pos-top small {
    font-size: 0.6rem;
  }
  .pos-main {
    padding: 15px;
  }
  .pos-sidebar {
    display: flex;
  }
  .pos-label b {
    font-size: 0.67rem;
  }
  .pos-label > span {
    font-size: 0.48rem;
  }
  .table-tile {
    min-height: 64px;
  }
  .table-number {
    font-size: 0.61rem;
  }
  .table-tile small {
    font-size: 0.49rem;
  }
  .pos-layout {
    min-height: 284px;
  }
  .window-bar {
    padding: 10px 15px;
  }
  .mini-brand {
    font-size: 19px;
  }
  .preview-tabs button {
    font-size: 0.65rem;
    padding: 6px 9px;
  }
  .order-notification {
    padding: 12px;
    gap: 10px;
  }
  .order-notification strong {
    font-size: 0.79rem;
  }
  .order-notification small {
    font-size: 0.6rem;
  }
  .order-notification > .icon:first-child {
    width: 25px;
    height: 25px;
    padding: 6px;
  }
  .notification-check {
    display: block;
  }
  .preview-note {
    font-size: 0.56rem;
  }
  .sample-kitchen {
    min-height: 284px;
    padding: 17px;
    gap: 11px;
  }
  .kitchen-ticket header {
    padding: 8px 10px;
    flex-wrap: nowrap;
  }
  .kitchen-ticket p {
    font-size: 0.66rem;
    margin: 8px 10px;
  }
  .voice-strip {
    padding: 13px;
  }
  .voice-strip b {
    font-size: 0.69rem;
  }
  .voice-strip small {
    font-size: 0.58rem;
  }
  .sample-bill {
    min-height: 284px;
  }
  .feature-ribbon .wrap {
    gap: 12px 23px;
    padding-block: 19px;
  }
  .feature-ribbon span {
    font-size: 0.73rem;
    gap: 7px;
  }
  .feature-ribbon .icon {
    width: 18px;
    height: 18px;
  }
  .section {
    padding-block: 56px;
  }
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 21px;
    margin-bottom: 29px;
  }
  .section-heading h2 {
    font-size: 2.05rem;
  }
  .section-heading > p {
    max-width: 100%;
    font-size: 0.93rem;
  }
  .eyebrow {
    font-size: 0.67rem;
    margin-bottom: 17px;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 13px;
  }
  .feature-card {
    padding: 21px 17px 17px;
  }
  .feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
  .feature-icon .icon {
    width: 22px;
    height: 22px;
  }
  .feature-index {
    font-size: 0.65rem;
    top: 25px;
    right: 17px;
  }
  .feature-card h3 {
    font-size: 1.05rem;
    line-height: 1.25;
    margin-top: 20px;
    margin-bottom: 12px;
  }
  .feature-card p {
    font-size: 0.81rem;
    line-height: 1.8;
    min-height: 115px;
    margin-bottom: 18px;
  }
  .card-link {
    font-size: 0.7rem;
  }
  .workflow-section {
    padding-block: 53px;
  }
  .workflow-steps {
    grid-template-columns: 1fr 1fr;
    gap: 30px 24px;
  }
  .workflow-steps p {
    font-size: 0.85rem;
  }
  .workflow-steps h3 {
    font-size: 1.12rem;
  }
  .workflow-steps article {
    padding-top: 19px;
  }
  .step-top {
    margin-bottom: 19px;
  }
  .workflow-section .section-heading {
    gap: 24px;
  }
  .restaurant-section,
  .chennai-layout,
  .faq-section {
    grid-template-columns: 1fr;
    gap: 33px;
  }
  .section-intro {
    font-size: 0.95rem;
    margin-block: 21px;
  }
  .restaurant-types article {
    padding: 24px 0;
  }
  .chennai-section {
    padding-block: 51px;
  }
  .chennai-layout h2 {
    font-size: 2.2rem;
  }
  .area-preview {
    padding: 24px;
  }
  .area-tags span {
    font-size: 0.81rem;
    padding: 7px 12px;
  }
  .area-preview .text-link {
    font-size: 0.86rem;
  }
  .area-preview > p {
    font-size: 0.74rem;
  }
  .faq-section {
    gap: 28px;
  }
  .faq-section h2 {
    max-width: 330px;
  }
  .faq-section .muted {
    font-size: 0.9rem;
    margin-top: 20px;
  }
  .faq-section .muted br {
    display: none;
  }
  summary {
    font-size: 0.92rem;
    padding-block: 19px;
  }
  details p {
    font-size: 0.9rem;
  }
  .cta-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 33px 27px;
    margin-bottom: 55px;
    gap: 29px;
  }
  .cta-section h2 {
    font-size: 2rem;
  }
  .cta-section p:not(.eyebrow) {
    font-size: 0.87rem;
    line-height: 1.9;
  }
  .cta-section .eyebrow {
    font-size: 0.6rem;
  }
  .cta-actions {
    align-items: flex-start;
  }
  .cta-phone {
    font-size: 0.82rem;
  }
  .footer {
    padding-top: 39px;
    padding-bottom: 64px;
  }
  .footer-grid {
    gap: 30px 25px;
    padding-bottom: 35px;
  }
  .footer-about {
    grid-column: 1/-1;
  }
  .footer-about p {
    margin-bottom: 13px;
  }
  .footer-grid h2 {
    font-size: 0.84rem;
    margin-bottom: 17px;
  }
  .footer-grid address,
  .footer-grid > div > a:not(.brand) {
    font-size: 0.8rem;
  }
  .footer-bottom {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 20px;
    line-height: 1.6;
  }
  .footer-bottom span:nth-child(2) {
    display: none;
  }
  .footer-bottom a {
    margin-left: auto;
  }
  .mobile-contact {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 25;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #dae4d3;
    background: white;
    padding: 9px 14px max(9px, env(safe-area-inset-bottom));
    gap: 10px;
    box-shadow: 0 -4px 15px #183a2110;
  }
  .mobile-contact > a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.79rem;
    font-weight: 600;
    padding: 10px;
    border-radius: 5px;
    background: var(--soft);
  }
  .mobile-contact > a:last-child {
    background: var(--ink);
    color: white;
  }
  .mobile-contact .icon {
    width: 17px;
    height: 17px;
  }
  .breadcrumbs {
    font-size: 0.69rem;
    gap: 8px;
    padding-top: 22px;
  }
  .feature-hero {
    grid-template-columns: 1fr;
    padding-top: 33px;
    padding-bottom: 45px;
    gap: 30px;
  }
  .feature-hero h1 {
    font-size: 2.85rem;
  }
  .feature-hero .lead {
    font-size: 1rem;
    margin-top: 21px;
  }
  .feature-statement {
    min-height: 220px;
    padding: 26px;
  }
  .feature-statement p {
    font-size: 2rem;
    margin: 21px 0;
  }
  .feature-statement .feature-icon {
    width: 48px;
    height: 48px;
  }
  .feature-statement .icon {
    width: 26px;
    height: 26px;
  }
  .feature-statement > span:last-child {
    font-size: 0.58rem;
  }
  .feature-details {
    padding-top: 48px;
  }
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 21px;
  }
  .detail-grid h3 {
    font-size: 1.23rem;
  }
  .detail-grid p {
    font-size: 0.93rem;
    margin-bottom: 10px;
  }
  .example-section {
    padding-block: 49px;
  }
  .example-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .example-grid h2 {
    font-size: 2rem;
  }
  .scenario {
    font-size: 1rem;
    margin-block: 23px;
  }
  .demo-checklist {
    padding: 25px;
  }
  .related-section {
    margin-bottom: 49px;
  }
  .related-section h2 {
    font-size: 1.85rem;
  }
  .related-links a {
    font-size: 0.8rem;
    padding: 12px 15px;
    gap: 9px;
  }
  .related-links .icon:last-child {
    margin-left: auto;
  }
  .related-links {
    display: grid;
    grid-template-columns: 1fr;
  }
  .page-intro {
    padding-block: 36px 40px;
  }
  .page-intro h1 {
    font-size: 2.85rem;
  }
  .page-intro .lead {
    font-size: 1.02rem;
    margin-top: 23px;
  }
  .directory-tools {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding-top: 24px;
  }
  .directory-tools > div {
    width: 100%;
    max-width: none;
  }
  .directory-tools > p {
    margin: 0;
    font-size: 0.78rem;
  }
  .search-box {
    padding-inline: 10px;
  }
  .search-box input {
    font-size: 0.82rem;
  }
  .area-jumps {
    gap: 8px;
    margin: 23px 0 25px;
  }
  .area-jumps a {
    font-size: 0.75rem;
    padding: 6px 9px;
  }
  .area-group {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-block: 28px;
  }
  .area-group h2 {
    font-size: 1.55rem;
  }
  .area-group p {
    margin-bottom: 9px;
    font-size: 0.87rem;
  }
  .area-group ul {
    gap: 7px 16px;
  }
  .area-group li {
    font-size: 0.84rem;
    padding: 3px 0;
  }
  .coverage-note {
    padding: 25px;
  }
  .coverage-note p {
    font-size: 0.9rem;
  }
  .area-directory {
    margin-bottom: 50px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 55px;
  }
  .contact-method strong {
    font-size: 1rem;
  }
  .office-card {
    padding: 25px;
  }
  .secondary-office {
    margin-top: 25px;
  }
  .enquiry-card {
    padding: 25px;
  }
  .enquiry-card h2 {
    font-size: 1.8rem;
  }
  .enquiry-card .eyebrow {
    font-size: 0.6rem;
  }
  .form-pair {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .form-note {
    font-size: 0.73rem;
  }
  .guide .page-intro h1 {
    font-size: 2.65rem;
  }
  .guide-steps section {
    gap: 18px;
    padding-block: 24px;
  }
  .guide-steps h2 {
    font-size: 1.45rem;
  }
  .guide-steps p {
    font-size: 0.93rem;
    margin-bottom: 0;
  }
  .guide-note {
    padding: 25px;
    margin-bottom: 50px;
  }
  .guide-note h2 {
    font-size: 1.6rem;
  }
  .guide-note p {
    font-size: 0.95rem;
  }
  .prose {
    padding-block: 40px 55px;
  }
  .prose h1 {
    font-size: 3rem;
  }
  .prose h2 {
    font-size: 1.5rem;
  }
  .prose p,
  .prose address {
    font-size: 0.95rem;
  }
}
@media (max-width: 370px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .hero .hero-title {
    font-size: 3.2rem;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero-proof {
    gap: 12px;
    font-size: 0.63rem;
  }
  .hero-visual {
    padding: 16px 10px;
  }
  .visual-kicker span:last-child {
    display: none;
  }
  .pos-sidebar {
    display: none;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-card p {
    min-height: 0;
  }
  .feature-card {
    padding: 24px;
  }
  .feature-card h3 {
    font-size: 1.2rem;
  }
  .feature-card p {
    font-size: 0.94rem;
  }
  .feature-index {
    right: 25px;
  }
  .card-link {
    font-size: 0.8rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-about {
    grid-column: auto;
  }
  .area-group ul {
    column-gap: 12px;
  }
  .form-pair {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-method {
    gap: 10px;
  }
  .contact-method strong {
    font-size: 0.9rem;
  }
}
.feature-hero > * {
  min-width: 0;
}
h1,
h2 {
  overflow-wrap: break-word;
}
@media (max-width: 370px) {
  .feature-hero h1 {
    font-size: 2.45rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Photography, authentic product screens and the annual restaurant plan. */
.hero {
  gap: 58px;
  padding-block: 56px 68px;
}
.hero-media {
  position: relative;
  min-width: 0;
  height: 610px;
  padding: 0 0 65px 34px;
}
.hero-photo-crop {
  height: 100%;
  overflow: hidden;
  border-radius: 160px 18px 18px 18px;
}
.dining-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transform: scale(1.5);
  transform-origin: center bottom;
}
.photo-label {
  position: absolute;
  right: 23px;
  top: 24px;
  color: white;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-shadow: 0 2px 7px #000;
  writing-mode: vertical-rl;
}
.hero-screen {
  position: absolute;
  width: 104%;
  left: -14px;
  bottom: 47px;
  display: block;
  background: white;
  border: 1px solid #cfd8d0;
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 24px 60px #12271e36;
  transition: transform 0.2s;
}
.hero-screen:hover {
  transform: translateY(-4px);
}
.screen-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--ink);
  color: #eef6e9;
  padding: 11px 16px;
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.12em;
}
.screen-bar .icon {
  width: 16px;
  height: 16px;
}
.screen-dots {
  color: #90ad99;
  letter-spacing: 3px;
  font-size: 0.5rem;
}
.hero-screen img {
  width: 100%;
  height: auto;
  display: block;
}
.screen-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  font-size: 0.69rem;
  font-weight: 600;
  background: #fbfcf9;
}
.screen-caption .icon {
  width: 17px;
  height: 17px;
}
.photo-disclosure {
  position: absolute;
  bottom: 13px;
  right: 8px;
  font-size: 0.62rem;
  color: var(--muted);
}
.hero-price {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 20px;
  margin: 23px 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: 400px;
}
.hero-price strong {
  font-size: 1.8rem;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.05em;
}
.hero-price strong span {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
}
.hero-price > span {
  grid-row: 2;
  font-size: 0.76rem;
  color: var(--muted);
}
.hero-price > .icon {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
}
.hero-price:hover strong {
  color: #567c29;
}
.hero .hero-proof {
  margin-top: 20px;
}
.software-section {
  padding-bottom: 28px;
}
.software-showcase {
  border: 1px solid #d6e0d9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 45px #173c2d0a;
  background: #f2f5f1;
}
.software-tabs {
  display: flex;
  gap: 8px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
}
.software-tabs button {
  background: transparent;
  color: #4c6255;
  padding: 12px 20px;
  border-radius: 7px;
  font-size: 0.88rem;
  font-weight: 600;
}
.software-tabs button[aria-selected="true"] {
  background: var(--ink);
  color: white;
}
.software-tabs button:hover {
  background: #e2eadb;
  color: var(--ink);
}
.software-tabs button[aria-selected="true"]:hover {
  background: #245647;
  color: white;
}
.software-panel {
  padding: 24px 24px 0;
}
.screenshot-link {
  display: block;
  border: 1px solid #d3dbd5;
  border-radius: 7px;
  overflow: hidden;
  background: white;
}
.screenshot-link img,
.feature-screenshot img {
  display: block;
  width: 100%;
  height: auto;
}
.screenshot-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 3px;
}
.screenshot-caption h3 {
  font-size: 1.1rem;
}
.screenshot-caption p {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 7px 0 0;
}
.screenshot-caption .text-link {
  flex-shrink: 0;
  font-size: 0.78rem;
}
.service-photo {
  margin: 30px 0 0;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.service-photo img {
  display: block;
  width: 100%;
  height: 255px;
  object-fit: cover;
  object-position: center 38%;
}
.service-photo figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 40px 20px 18px;
  color: #fff;
  font-size: 0.78rem;
  background: linear-gradient(transparent, #000c);
}
.restaurant-section {
  align-items: center;
}
.restaurant-types {
  border-top: 1px solid var(--line);
}
.restaurant-types article {
  padding-block: 36px;
}
.pricing-section {
  background: #edf2e7;
  border-block: 1px solid #dfe7d7;
  padding: 92px 0;
}
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.pricing-copy > p:not(.eyebrow) {
  color: #5b6f5d;
  max-width: 420px;
  margin-top: 25px;
}
.price-promises {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 35px;
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 550;
}
.price-promises span {
  display: flex;
  gap: 13px;
  align-items: center;
}
.price-promises .icon {
  background: #d7e7c7;
  border-radius: 50%;
  padding: 5px;
  width: 28px;
  height: 28px;
}
.pricing-copy > .pricing-location {
  font-size: 0.86rem;
  margin-top: 35px;
}
.price-card {
  background: white;
  border-radius: 16px;
  border: 1px solid #d8e2d0;
  padding: 35px;
  box-shadow: 0 20px 40px #29412b0a;
}
.price-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: #55714f;
}
.flat-badge {
  display: inline-block;
  padding: 5px 10px;
  background: var(--lime);
  border-radius: 4px;
  color: var(--ink);
  white-space: nowrap;
}
.price-amount {
  font-size: clamp(3.6rem, 5.5vw, 5rem);
  font-weight: 650;
  color: var(--ink);
  letter-spacing: -0.06em;
  line-height: 1.2;
  margin: 24px 0 6px;
}
.price-amount span {
  font-size: 1.1rem;
  font-weight: 450;
  letter-spacing: -0.015em;
  margin-left: 10px;
}
.price-explainer {
  font-size: 0.87rem;
  color: var(--muted);
}
.price-card ul {
  list-style: none;
  padding: 22px 0;
  margin: 24px 0;
  border-block: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 12px;
}
.price-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
}
.price-card li .icon {
  width: 17px;
  height: 17px;
  color: #638841;
}
.price-card > .button {
  width: 100%;
}
.price-footer {
  text-align: center;
  font-size: 0.68rem;
  color: var(--muted);
  margin: 15px 0 0;
}
.footer-about .footer-price {
  margin: 0 0 20px;
  font-weight: 650;
  color: var(--ink);
  font-size: 0.88rem;
}
.footer-bottom > span:nth-child(2) {
  font-size: 0.68rem;
}
.footer-bottom > span:nth-child(2) a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.feature-screenshot {
  margin-block: 10px 30px;
  padding: 15px;
  background: #f0f4ee;
  border: 1px solid var(--line);
  border-radius: 13px;
}
.feature-screenshot a {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.feature-screenshot figcaption {
  font-size: 0.77rem;
  color: var(--muted);
  padding: 15px 5px 2px;
}
@media (max-width: 1150px) {
  .hero {
    gap: 36px;
  }
  .hero-media {
    height: 560px;
    padding-left: 20px;
  }
  .header nav {
    gap: 20px;
  }
  .pricing-layout {
    gap: 55px;
  }
  .price-card {
    padding: 28px;
  }
}
@media (max-width: 900px) {
  .hero {
    gap: 27px;
  }
  .hero-media {
    height: 540px;
  }
  .hero-screen {
    width: 109%;
    left: -14px;
  }
  .screen-bar {
    font-size: 0.45rem;
    padding: 9px 10px;
  }
  .screen-caption {
    font-size: 0.55rem;
    padding: 9px;
  }
  .hero-price strong {
    font-size: 1.65rem;
  }
  .hero-price > span {
    font-size: 0.68rem;
  }
  .pricing-layout {
    gap: 30px;
  }
  .price-card ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .price-card-head {
    flex-wrap: wrap;
  }
  .price-amount {
    font-size: 3.8rem;
  }
  .header nav {
    gap: 14px;
  }
}
@media (max-width: 700px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 35px 28px;
  }
  .hero .hero-title {
    font-size: clamp(3.5rem, 11.8vw, 4.6rem);
  }
  .hero-price {
    max-width: none;
    margin-block: 20px;
  }
  .hero-price strong {
    font-size: 1.85rem;
  }
  .hero-price > span {
    font-size: 0.75rem;
  }
  .hero-actions {
    gap: 20px;
    flex-wrap: wrap;
  }
  .hero-media {
    height: 460px;
    max-width: 480px;
    width: 100%;
    justify-self: center;
    padding-left: 35px;
    padding-bottom: 55px;
  }
  .hero-photo-crop {
    border-radius: 110px 14px 14px 14px;
  }
  .hero-screen {
    width: 100%;
    left: 0;
    bottom: 30px;
  }
  .screen-bar {
    font-size: 0.51rem;
    padding: 10px 13px;
  }
  .screen-caption {
    font-size: 0.62rem;
    padding: 10px 12px;
  }
  .photo-disclosure {
    bottom: 0;
    right: 2px;
    font-size: 0.56rem;
  }
  .photo-label {
    font-size: 0.53rem;
  }
  .software-section {
    padding-block: 50px 8px;
  }
  .software-tabs {
    padding: 10px;
    gap: 5px;
  }
  .software-tabs button {
    flex: 1;
    padding: 10px 7px;
    font-size: 0.72rem;
  }
  .software-panel {
    padding: 10px 10px 0;
  }
  .screenshot-caption {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 20px 5px;
  }
  .screenshot-caption h3 {
    font-size: 1.08rem;
  }
  .screenshot-caption p {
    font-size: 0.83rem;
  }
  .service-photo img {
    height: 230px;
  }
  .restaurant-types article {
    padding-block: 25px;
  }
  .pricing-section {
    padding-block: 55px;
  }
  .pricing-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .price-promises {
    gap: 12px;
    margin-top: 25px;
    font-size: 1rem;
  }
  .pricing-copy > .pricing-location {
    margin-top: 25px;
  }
  .price-card {
    padding: 27px 24px;
  }
  .price-card-head {
    font-size: 0.57rem;
  }
  .price-card ul {
    grid-template-columns: 1fr 1fr;
    gap: 14px 9px;
  }
  .price-card li {
    font-size: 0.71rem;
    gap: 6px;
  }
  .price-card li .icon {
    width: 15px;
    height: 15px;
  }
  .price-amount {
    font-size: 4rem;
  }
  .feature-screenshot {
    padding: 9px;
  }
  .feature-screenshot figcaption {
    font-size: 0.7rem;
  }
  .header nav {
    gap: 0;
  }
}
@media (max-width: 370px) {
  .hero-media {
    height: 400px;
    padding-left: 20px;
  }
  .hero-price > span {
    font-size: 0.68rem;
  }
  .screen-caption {
    font-size: 0.55rem;
  }
  .software-tabs button {
    font-size: 0.63rem;
  }
  .price-card {
    padding: 24px 20px;
  }
  .price-card ul {
    grid-template-columns: 1fr;
  }
  .price-amount {
    font-size: 3.4rem;
  }
  .price-card-head {
    gap: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-screen {
    transition: none;
  }
}

.resource-intro { padding: 42px 0 52px; }
.resource-intro h1 { max-width: 1000px; font-size: clamp(2.2rem, 4.3vw, 4.2rem); line-height: 1.09; letter-spacing: -.045em; margin: 20px 0 24px; }
.resource-intro .lead { max-width: 790px; font-size: 1.15rem; line-height: 1.75; color: #4d625b; }
.resource-section { padding: 16px 0 62px; }
.resource-section > h2 { font-size: 2rem; margin-bottom: 28px; }
.resource-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.resource-card { display: flex; flex-direction: column; padding: 28px; border: 1px solid #d5dfd8; border-radius: 15px; background: #fff; text-decoration: none; transition: border-color .2s; }
.resource-card:hover { border-color: #266747; }
.resource-card h3 { font-size: 1.4rem; margin: 16px 0; line-height: 1.25; }
.resource-card p { color: #4d625b; line-height: 1.7; margin-bottom: 28px; }
.resource-card .text-link { margin-top: auto; }
.resource-downloads { background: #edf3e9; padding: 38px; border-radius: 20px; margin-bottom: 70px; }
.resource-downloads h2 { font-size: 2rem; margin: 14px 0; }
.resource-downloads p { max-width: 720px; line-height: 1.7; }
.resource-links { display: grid; gap: 12px; margin-top: 22px; }
.resource-links a { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid #cbd6ce; font-weight: 650; text-decoration: none; }
.resource-links .icon { flex: 0 0 20px; }
.reading-layout { display: grid; grid-template-columns: minmax(0, 2.2fr) minmax(260px, 1fr); gap: 70px; align-items: start; padding-bottom: 60px; }
.reading-body { min-width: 0; }
.resource-date { color: #53645b; font-size: .85rem; margin-bottom: 24px; }
.article-toc { padding: 26px; background: #f0f3ed; border-radius: 12px; margin-bottom: 40px; }
.article-toc strong { display: block; margin-bottom: 12px; }
.article-toc ol { padding-left: 22px; display: grid; gap: 10px; }
.article-toc a { text-underline-offset: 4px; }
.reading-section { margin-bottom: 38px; scroll-margin-top: 130px; }
.reading-section h2, .article-checklist h2, .article-related h2, .calculator-method h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); line-height: 1.25; margin: 0 0 20px; letter-spacing: -.03em; }
.reading-body p, .reading-section li { font-size: 1.025rem; line-height: 1.85; color: #334b40; margin-bottom: 18px; }
.reading-section ul { padding-left: 24px; }
.article-checklist { padding: 28px; background: #eef5e7; border-radius: 16px; margin: 42px 0; }
.article-checklist ul { padding: 0; list-style: none; display: grid; gap: 17px; }
.article-checklist li { display: flex; align-items: flex-start; gap: 12px; line-height: 1.65; }
.article-checklist .icon { flex: 0 0 20px; margin-top: 4px; }
.article-related { margin-top: 42px; }
.reading-aside { position: sticky; top: 115px; }
.reading-offer { border: 1px solid #cdd9cb; background: #edf4e7; border-radius: 18px; padding: 30px; }
.reading-price { font-size: 2.6rem; font-weight: 750; letter-spacing: -.05em; margin: 16px 0; }
.reading-price span { font-size: 1rem; font-weight: 500; letter-spacing: 0; margin-left: 8px; }
.reading-offer > p:not(.reading-price):not(.eyebrow) { line-height: 1.7; margin: 16px 0; }
.reading-promise { font-weight: 650; }
.reading-offer .button { width: 100%; margin: 12px 0 20px; }
.reading-local { padding: 30px 8px; }
.reading-local h2 { font-size: 1.25rem; margin-bottom: 14px; }
.reading-local p { line-height: 1.7; color: #4d625b; }
.reading-local a { display: block; margin-top: 18px; font-weight: 600; }
.calculator-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; margin-bottom: 52px; }
.cost-form { border: 1px solid #d1dbd1; border-radius: 18px; padding: 32px; }
.cost-form h2 { font-size: 1.6rem; margin-bottom: 26px; }
.cost-form label { display: block; font-weight: 600; margin-bottom: 9px; }
.cost-form input { display: block; width: 100%; padding: 14px 16px; border: 1px solid #899e90; border-radius: 8px; font: inherit; color: #173f31; background: #fff; margin-bottom: 24px; }
.cost-note { font-size: .85rem; line-height: 1.65; margin-top: 22px; color: #4d625b; }
.cost-results { border-radius: 18px; padding: 38px; background: #123e35; color: #fff; }
.cost-results .eyebrow { color: #c5e89c; }
.cost-total { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 750; letter-spacing: -.05em; margin: 18px 0; overflow-wrap: anywhere; }
.cost-results > p { line-height: 1.65; }
.cost-results dl { margin: 30px 0; }
.cost-results dl > div { border-top: 1px solid #5b7b67; padding: 22px 0; }
.cost-results dt { color: #d4e3d6; line-height: 1.6; }
.cost-results dd { margin: 10px 0 0; font-size: 1.5rem; font-weight: 600; }
.cost-results .button { margin-top: 28px; }
.calculator-method { max-width: 800px; padding-bottom: 50px; }
.footer-resources { padding-bottom: 34px; display: flex; flex-wrap: wrap; gap: 18px 30px; }
.footer-resources a { font-size: .85rem; text-decoration: underline; text-underline-offset: 5px; }
.service-guide-links { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 20px; }
.service-guide-links a { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 650; text-underline-offset: 5px; }
.service-guide-links .icon { width: 16px; height: 16px; flex: 0 0 16px; }
.feature-guides { padding-top: 55px; padding-bottom: 10px; }
.feature-guides h2 { font-size: 2rem; margin: 12px 0 26px; }
.guide-teasers { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.guide-teasers article { border-top: 1px solid #cbd6ce; padding-top: 22px; }
.guide-teasers h3 { font-size: 1.2rem; line-height: 1.5; margin-bottom: 12px; }
.guide-teasers h3 a { display: flex; align-items: center; justify-content: space-between; gap: 20px; text-underline-offset: 5px; }
.guide-teasers .icon { width: 20px; height: 20px; flex: 0 0 20px; }
.guide-teasers p { color: #4d625b; line-height: 1.75; }
@media(max-width: 650px) { .guide-teasers { grid-template-columns: 1fr; gap: 24px; } }
@media(max-width: 1000px) { .resource-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .reading-layout { gap: 32px; } .reading-offer { padding: 22px; } }
@media(max-width: 760px) { .resource-grid, .reading-layout, .calculator-layout { grid-template-columns: 1fr; } .resource-intro { padding: 24px 0 32px; } .resource-intro .lead { font-size: 1.05rem; } .reading-aside { position: static; } .resource-card, .resource-downloads, .cost-form, .cost-results { padding: 24px; } .resource-section { padding-bottom: 38px; } .reading-layout { padding-bottom: 28px; } }
@media print { .header, .topbar, .footer, .mobile-contact, .cta-section, .reading-aside, .article-toc, .article-related { display: none; } .reading-layout { display: block; } .reading-section, .article-checklist { break-inside: avoid; } }
.article-photo { margin: 0 auto 48px; }
.article-photo img { display: block; width: 100%; height: auto; max-height: 560px; object-fit: cover; border-radius: 20px; }
.article-photo figcaption { padding: 12px 2px 0; color: #536158; font-size: .82rem; line-height: 1.6; }
.article-photo figcaption a { color: inherit; text-underline-offset: 3px; }
.resource-card-photo { overflow: hidden; }
.resource-card-photo > img { display: block; width: calc(100% + 56px); max-width: none; height: 190px; object-fit: cover; margin: -28px -28px 24px; }
@media (max-width: 600px) { .article-photo { margin-bottom: 30px; } .article-photo img { border-radius: 12px; } }

/* Chennai: warm plaster, leaf green, terracotta and a restrained kolam motif. */
:root {
  --paper: #fffdf8;
  --soft: #f8f3e9;
  --mint: #f2ecdE;
  --line: #e2ded1;
  --muted: #626960;
  --lime: #efce8c;
  --terracotta: #9b452c;
}
.topbar { background: #f0e7d7; color: #354a3f; }
.header { background: #fffdf8; }
.hero { position: relative; gap: 58px; padding-block: 52px 55px; }
.chennai-welcome { display: flex; align-items: center; gap: 13px; color: var(--terracotta); margin: 0 0 23px; }
.chennai-welcome [lang="ta"] { font-family: "Nirmala UI", "Tamil Sangam MN", sans-serif; font-size: 1.05rem; font-weight: 600; line-height: 1.8; }
.chennai-welcome > span:last-child { font-size: .59rem; letter-spacing: .15em; font-weight: 750; }
.welcome-rule { height: 1px; width: 25px; background: #bfa58a; }
.hero .hero-title { font-size: clamp(3.2rem, 4.9vw, 4.5rem); line-height: 1.08; letter-spacing: -.058em; margin-bottom: 26px; }
.hero .hero-title > span { color: var(--terracotta); }
.hero-subtitle { font-size: 1.22rem; line-height: 1.5; }
.hero-description { max-width: 450px; }
.hero-price { border-color: #d9cab3; }
.chennai-hero-media { height: 575px; padding: 0; }
.chennai-photo { position: absolute; inset: 0 0 auto 38px; height: 300px; overflow: hidden; border-radius: 130px 130px 13px 13px; background: #b5a28e; }
.chennai-photo img { display: block; height: 100%; width: 100%; object-fit: cover; object-position: 65% bottom; }
.city-photo-caption { position: absolute; top: 126px; left: 20px; writing-mode: vertical-rl; transform: rotate(180deg); font-size: .56rem; letter-spacing: .17em; font-weight: 700; color: #fff; background: #52382bc9; padding: 10px 6px; border-radius: 3px; }
.chennai-seal { position: absolute; top: 12px; left: 4px; width: 126px; height: 126px; border-radius: 50%; background: #fff7e8; border: 1px solid #c8a17a; outline: 5px solid #fffdf8; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; transform: rotate(-10deg); color: var(--terracotta); z-index: 1; }
.chennai-seal strong { font: italic 28px Georgia, serif; }
.chennai-seal span { font-size: .48rem; letter-spacing: .15em; font-weight: 700; }
.chennai-hero-media .hero-screen { bottom: 24px; left: 0; width: 98%; border-color: #cabda7; box-shadow: 0 22px 55px #61442724; }
.chennai-hero-media .screen-caption { background: #fff9ee; }
.photo-disclosure { bottom: 0; right: 0; font-size: .61rem; }
.feature-ribbon { background: #f1eddf; border-block: 1px solid #ded6c5; }
.chennai-day { display: grid; grid-template-columns: 1.04fr 1fr 1fr 1fr; align-items: center; gap: 25px; padding-block: 35px; border-bottom: 1px solid var(--line); }
.day-intro { display: flex; align-items: center; gap: 14px; }
.local-kolam { display: block; flex-shrink: 0; width: 53px; height: 53px; background: url('/assets/kolam.svg') center / contain no-repeat; }
.day-intro p { font-size: .74rem; line-height: 1.7; margin: 0; }
.day-intro strong { font-weight: 650; }
.chennai-day > a { position: relative; display: grid; gap: 6px; padding-left: 23px; border-left: 1px solid var(--line); }
.chennai-day > a > span { font-size: .55rem; color: var(--terracotta); letter-spacing: .12em; font-weight: 750; }
.chennai-day > a > strong { font-size: .83rem; line-height: 1.5; font-weight: 650; padding-right: 18px; }
.chennai-day > a .icon { position: absolute; right: -6px; bottom: 4px; width: 15px; height: 15px; }
.chennai-day > a:hover strong { text-decoration: underline; text-underline-offset: 4px; }
.software-showcase, .feature-screenshot { background: #f3efe6; border-color: #ded4c3; }
.software-tabs button { color: #495b4d; }
.chennai-section { background: #f2eadb; position: relative; overflow: hidden; }
.chennai-section::before { content: ""; position: absolute; width: 220px; height: 220px; top: -110px; right: 5%; background: url('/assets/kolam.svg') center / contain no-repeat; opacity: .28; pointer-events: none; }
.chennai-section .eyebrow { color: var(--terracotta); }
.chennai-section .eyebrow [lang="ta"] { letter-spacing: 0; font-size: .93rem; }
.area-preview { background: #fffdf8; }
.area-tags span { background: #f7f0e3; border-color: #e2d5bd; }
.pricing-section { background: #faf7f0; }
.flat-badge { background: #f2dfbb; color: #75442b; }
.footer { background: #f8f4eb; }
.footer-bottom { flex-wrap: wrap; }
@media (max-width: 1100px) {
  .hero { gap: 32px; }
  .hero .hero-title { font-size: clamp(2.8rem, 5vw, 3.8rem); }
  .chennai-welcome { flex-wrap: wrap; gap: 8px; }
  .chennai-hero-media { height: 555px; }
  .chennai-day { grid-template-columns: 1fr 1fr; gap: 25px 35px; }
  .chennai-day > a { border-left: 0; padding-left: 0; }
  .chennai-day > a .icon { right: 5px; }
}
@media (max-width: 700px) {
  .hero { grid-template-columns: 1fr; padding-block: 30px 33px; gap: 26px; }
  .hero .hero-title { font-size: clamp(2.55rem, 9.9vw, 4.5rem); margin-bottom: 21px; }
  .chennai-welcome { gap: 11px; margin-bottom: 19px; }
  .chennai-welcome [lang="ta"] { font-size: .94rem; }
  .chennai-welcome > span:last-child { font-size: .51rem; }
  .welcome-rule { width: 18px; }
  .hero-subtitle { font-size: 1.17rem; }
  .hero-description { max-width: none; }
  .chennai-hero-media { height: 420px; max-width: 480px; padding: 0; }
  .chennai-photo { inset: 0 0 auto 24px; height: 240px; border-radius: 110px 110px 10px 10px; }
  .chennai-hero-media .hero-screen { left: 0; width: 100%; bottom: 25px; }
  .chennai-seal { width: 107px; height: 107px; left: 0; top: 8px; }
  .chennai-seal strong { font-size: 25px; }
  .chennai-seal span { font-size: .42rem; }
  .city-photo-caption { top: 115px; left: 13px; font-size: .49rem; }
  .photo-disclosure { font-size: .53rem; }
  .chennai-day { grid-template-columns: 1fr; padding-block: 22px; gap: 0; }
  .day-intro { margin-bottom: 17px; }
  .day-intro p { font-size: .84rem; }
  .chennai-day > a { border-top: 1px solid var(--line); padding-block: 17px; gap: 4px; }
  .chennai-day > a > span { font-size: .59rem; }
  .chennai-day > a > strong { font-size: .94rem; }
  .chennai-day > a .icon { bottom: 21px; }
  .chennai-section::before { width: 160px; height: 160px; top: -85px; }
}
@media (max-width: 370px) {
  .chennai-welcome { gap: 6px; }
  .chennai-welcome [lang="ta"] { font-size: .83rem; }
  .chennai-welcome > span:last-child { font-size: .43rem; }
  .chennai-hero-media { height: 370px; }
  .hero-proof { flex-wrap: wrap; gap: 9px 20px; }
}

/* Original Chennai landmark system. Flat warm colour, generous space, no tinted image overlays. */
:root { --ink: #234d40; --terracotta:#a3472d; --paper:#fffdf8; }
.brand .chennai-brand { width:242px; height:auto; display:block; }
.brand { flex-shrink:0; }
.nav-row { min-height:100px; }
.city-hero { margin:0; min-width:0; align-self:center; }
.city-hero img { width:100%; height:auto; display:block; border-radius:28px; }
.city-hero figcaption { margin:12px 0 0; font-size:.72rem; text-align:center; color:#667064; }
.hero { gap:38px; align-items:center; padding-block:38px 58px; }
.hero .hero-title { font-size:clamp(3rem,5.2vw,5rem); }
.hero-subtitle { font-size:1.35rem; font-weight:650; }
.software-showcase,.hero-screen,.feature-screenshot,.service-photo { box-shadow:none; }
.software-showcase { background:#f4ead7; }
.software-showcase img,.feature-screenshot img { filter:none; mix-blend-mode:normal; }
.service-photo.local-food-art { max-width:460px; margin-top:30px; }
.service-photo.local-food-art img { aspect-ratio:900/660; object-fit:contain; border-radius:20px; }
.cta-section { display:grid; grid-template-columns:180px 1fr auto; align-items:center; gap:30px; }
.cta-city-art img { width:180px; height:auto; display:block; border-radius:18px; }
.cta-section h2 { font-size:clamp(1.7rem,2.8vw,2.6rem); }
.footer .chennai-brand { width:230px; max-width:100%; }
.locality-hero { display:grid; grid-template-columns:1.05fr 1fr; gap:48px; align-items:center; padding-block:38px 54px; }
.locality-hero h1 { font-size:clamp(2.5rem,4.4vw,4.2rem); line-height:1.09; letter-spacing:-.045em; margin:16px 0 24px; max-width:650px; }
.locality-hero .lead { font-size:1.02rem; line-height:1.85; max-width:590px; }
.locality-art { margin:0; background:#f4e9d4; border:1px solid #e6d9be; border-radius:28px; overflow:hidden; }
.locality-art img { width:100%; height:auto; display:block; }
.locality-art figcaption { padding:14px 20px; text-align:center; font-size:.72rem; color:#5d634e; border-top:1px solid #e6d9be; }
.locality-actions { display:flex; align-items:center; gap:22px; flex-wrap:wrap; margin:27px 0 20px; }
.locality-price { font-size:.79rem; font-weight:600; color:var(--terracotta); }
.local-quick-nav { display:flex; flex-wrap:wrap; gap:16px 28px; padding-block:20px; border-block:1px solid var(--line); margin-bottom:40px; font-size:.83rem; }
.local-quick-nav a:hover { text-decoration:underline; text-underline-offset:5px; }
.reading-body { min-width:0; }
.reading-section p { line-height:1.85; }
.local-workflow-art { margin:34px 0; }
.local-workflow-art img { width:100%; height:auto; border-radius:18px; display:block; }
.local-workflow-art figcaption { font-size:.75rem; color:var(--muted); margin-top:12px; }
.local-guide-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:25px; margin:30px 0 50px; }
.local-guide-card { display:flex; flex-direction:column; border:1px solid #e5dac5; background:#fffdf8; border-radius:20px; overflow:hidden; transition:transform .18s,border-color .18s; }
.local-guide-card[hidden] { display:none; }
.local-guide-card:hover { transform:translateY(-4px); border-color:#a97950; }
.local-guide-card:focus-visible { outline:3px solid #a3472d; outline-offset:5px; }
.local-guide-card img { width:100%; height:auto; aspect-ratio:900/660; display:block; border-bottom:1px solid #e5dac5; }
.local-guide-card > div { padding:25px; flex:1; display:flex; flex-direction:column; align-items:flex-start; }
.local-guide-card h3 { font-size:1.24rem; line-height:1.35; margin:10px 0 25px; }
.local-guide-card .text-link { margin-top:auto; font-size:.79rem; }
.guide-search-label { display:block; font-weight:650; font-size:.84rem; margin:24px 0 10px; }
.local-guide-search { width:min(100%,560px); padding:16px 18px; border:1px solid #bcbba9; border-radius:10px; font:inherit; background:white; color:var(--ink); }
.local-guide-count { font-size:.9rem; color:var(--terracotta); }
.article-checklist li { gap:12px; }
.area-group li a { text-decoration:underline; text-underline-offset:4px; }
@media(max-width:1000px) {
 .brand .chennai-brand { width:210px; }
 .locality-hero { gap:28px; }
 .local-guide-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
 .cta-section { grid-template-columns:140px 1fr; }
 .cta-city-art img { width:140px; }
 .cta-actions { grid-column:2; }
}
@media(max-width:700px) {
 .nav-row { min-height:78px; }
 .brand .chennai-brand { width:218px; }
 .hero { padding-block:28px 35px; gap:22px; }
 .hero .hero-title { font-size:clamp(2.8rem,11vw,4.2rem); }
 .hero-subtitle { font-size:1.18rem; }
 .city-hero { width:100%; max-width:520px; margin-inline:auto; }
 .city-hero figcaption { font-size:.68rem; }
 .locality-hero { display:flex; flex-direction:column; align-items:stretch; gap:18px; padding-block:22px 28px; }
 .locality-hero-copy { display:contents; }
 .locality-hero .eyebrow { order:0; margin:0; }
 .locality-hero h1 { order:1; margin:0 0 4px; }
 .locality-hero .locality-art { order:2; }
 .locality-hero .lead { order:3; margin:4px 0 0; }
 .locality-hero .locality-actions { order:4; margin:2px 0; }
 .locality-hero .locality-price { order:5; margin:0; }
 .locality-hero h1 { font-size:clamp(2.4rem,10vw,3.8rem); }
 .locality-hero .lead { font-size:1rem; line-height:1.75; }
 .locality-art { border-radius:20px; }
 .locality-price { font-size:.74rem; }
 .locality-actions { gap:18px; }
 .local-quick-nav { gap:16px 20px; font-size:.76rem; margin-bottom:26px; }
 .local-guide-grid { grid-template-columns:1fr; gap:22px; }
 .local-guide-card > div { padding:23px; }
 .local-guide-card img { max-height:270px; object-fit:cover; }
 .cta-section { grid-template-columns:1fr; gap:22px; }
 .cta-city-art { display:none; }
 .cta-actions { grid-column:auto; }
 .footer .chennai-brand { width:230px; }
}
@media(prefers-reduced-motion:reduce) { .local-guide-card { transition:none; } .local-guide-card:hover { transform:none; } }
