:root {
  --navy: #071522;
  --navy-2: #0b2338;
  --navy-3: #10334f;
  --ink: #102033;
  --muted: #5f6e7d;
  --paper: #f4efe6;
  --paper-2: #fffaf2;
  --white: #ffffff;
  --gold: #d99b3f;
  --gold-2: #f1bd63;
  --copper: #9c6427;
  --green: #2e8a5b;
  --line: rgba(18, 35, 53, 0.12);
  --line-dark: rgba(255, 255, 255, 0.14);
  --gold-line: rgba(217, 155, 63, 0.34);
  --shadow-soft: 0 18px 55px rgba(11, 22, 34, 0.12);
  --shadow-dark: 0 28px 70px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --page-max: 1580px;
  --page-gutter-total: clamp(40px, 8vw, 180px);
  --nav-max: 1780px;
  --nav-gutter-total: clamp(32px, 5vw, 120px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #061521 0 620px, var(--paper) 620px 100%);
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 14%, rgba(217, 155, 63, 0.08), transparent 30%),
    radial-gradient(circle at 88% 42%, rgba(16, 51, 79, 0.1), transparent 28%);
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

main {
  padding-bottom: 0;
}

.container {
  width: min(var(--page-max), calc(100% - var(--page-gutter-total)));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 15, 25, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.notice {
  position: relative;
  min-height: 34px;
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  color: #e9f3fb;
  background: #0a2944;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 650;
  text-align: center;
}

.notice > span {
  justify-self: center;
  min-width: 0;
  overflow-wrap: anywhere;
}

.notice-short {
  display: none;
}

.notice a {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  color: #08131f;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.notice button {
  position: static;
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  color: #c8d7e4;
  background: transparent;
  border: 0;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
}

.notice button:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-shell {
  width: min(var(--nav-max), calc(100% - var(--nav-gutter-total)));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.brand-mark {
  width: 54px;
  height: 50px;
  flex: 0 0 54px;
  position: relative;
  overflow: visible;
  display: inline-grid;
  place-items: center;
  isolation: isolate;
  background: transparent;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 8px 5px 6px;
  z-index: 0;
  display: block;
  background:
    radial-gradient(circle, rgba(241, 189, 99, 0.23), rgba(241, 189, 99, 0.02) 68%, transparent 72%);
  border-radius: 999px;
  filter: blur(7px);
  pointer-events: none;
}

.brand-mark::after {
  display: none;
}

.brand-mark img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter:
    drop-shadow(0 9px 16px rgba(0, 0, 0, 0.22))
    drop-shadow(0 0 9px rgba(241, 189, 99, 0.12));
  transform: translateY(-1px);
}

.brand-copy {
  display: block;
  min-width: 0;
  padding-top: 1px;
}

.brand strong {
  display: block;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 15.5px;
  font-weight: 900;
  line-height: 1.08;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.22);
}

.brand small {
  display: block;
  margin-top: 4px;
  color: #c1d0dd;
  font-size: 11.2px;
  line-height: 1.15;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.45vw, 26px);
  flex: 1 1 auto;
  min-width: 0;
  font-size: 13px;
  font-weight: 650;
}

.nav-links > a,
.nav-item > a {
  color: #edf5fb;
  white-space: nowrap;
}

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

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 76px;
}

.nav-item > a::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 0 2px 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  opacity: 0.74;
  transform: rotate(45deg);
}

.nav-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  width: 270px;
  display: grid;
  gap: 3px;
  padding: 10px;
  background: rgba(7, 21, 34, 0.98);
  border: 1px solid rgba(241, 189, 99, 0.22);
  border-radius: 8px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.38);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-menu a {
  display: block;
  padding: 9px 10px;
  color: #dce8f2;
  border-radius: 5px;
  font-size: 12px;
}

.nav-menu a:hover {
  color: #ffffff;
  background: rgba(241, 189, 99, 0.09);
}

.nav-item:hover .nav-menu,
.nav-item:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.nav-login {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(241, 189, 99, 0.22);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.035);
}

.nav-login a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  color: #edf5fb;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.nav-login a + a {
  color: #ffe0a1;
  border-left: 1px solid rgba(241, 189, 99, 0.18);
}

.nav-login a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 10px;
  min-height: 40px;
  padding: 0 18px;
  color: var(--ink);
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.btn:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(241, 189, 99, 0.86);
  outline-offset: 3px;
}

.btn-gold {
  color: #081421;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), 0 12px 28px rgba(217, 155, 63, 0.18);
}

.btn-gold:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 18px 34px rgba(217, 155, 63, 0.25);
}

.btn-outline {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(241, 189, 99, 0.36);
}

.btn-outline:hover {
  border-color: rgba(241, 189, 99, 0.7);
  background: rgba(255, 255, 255, 0.07);
}

.btn-outline-dark {
  color: #081421;
  background: rgba(8, 20, 33, 0.03);
  border: 1px solid rgba(8, 20, 33, 0.22);
}

.btn-outline-dark:hover {
  color: #081421;
  background: rgba(8, 20, 33, 0.08);
  border-color: rgba(8, 20, 33, 0.45);
}

.btn-soft {
  min-height: 34px;
  color: #7d4c18;
  background: #fff7e9;
  border-color: rgba(217, 155, 63, 0.45);
  box-shadow: none;
}

.btn-large {
  min-height: 50px;
  padding-inline: 25px;
  font-size: 14px;
}

.menu-button {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  padding: 9px;
  background: transparent;
  border: 0;
  cursor: pointer;
  border-radius: 4px;
  transition: background 160ms ease;
}

.menu-button:hover,
.menu-button.is-active {
  background: rgba(241, 189, 99, 0.08);
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 2px 0;
  background: var(--gold-2);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-button.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-menu[hidden] {
  display: none;
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  color: #ffffff;
}

.site-menu-backdrop {
  grid-column: 1 / -1;
  grid-row: 1;
  padding: 0;
  background: rgba(1, 7, 13, 0.72);
  border: 0;
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.site-menu-panel {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  min-height: 100%;
  max-height: 100vh;
  overflow-y: auto;
  padding: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(241, 189, 99, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(10, 37, 59, 0.98), rgba(7, 21, 34, 0.99));
  border-left: 1px solid rgba(241, 189, 99, 0.24);
  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.38);
  animation: menuSlide 180ms ease both;
}

.site-menu-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-right: 54px;
}

.site-menu-head .brand {
  min-width: 0;
  flex: 1 1 auto;
}

.site-menu-head .brand-copy {
  min-width: 0;
}

.site-menu-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-grid;
  place-items: center;
  color: #ffe0a1;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(241, 189, 99, 0.24);
  border-radius: 4px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.site-menu-account {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(241, 189, 99, 0.22);
  border-radius: 8px;
}

.site-menu-account span {
  color: var(--gold-2);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 950;
}

.site-menu-account strong {
  display: block;
  max-width: 420px;
  margin-top: 7px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.12;
  font-weight: 600;
}

.site-menu-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.site-menu-actions .btn {
  width: 100%;
  min-width: 0;
}

.site-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.site-menu-grid div {
  min-height: 180px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.site-menu-grid h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.12;
}

.site-menu-grid a {
  display: block;
  padding: 8px 0;
  color: #d6e4ef;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 13px;
  line-height: 1.25;
}

.site-menu-grid a:hover {
  color: var(--gold-2);
}

body.site-menu-open {
  overflow: hidden;
}

@keyframes menuSlide {
  from {
    opacity: 0;
    transform: translateX(18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  isolation: isolate;
  background: #071521;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("assets/funwork-home-hero-clean-hd.png") 74% center / cover no-repeat;
  filter: saturate(1.02) contrast(1.04);
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg::before {
  background:
    linear-gradient(90deg,
      #071522 0%,
      rgba(7, 21, 34, 0.99) 32%,
      rgba(7, 21, 34, 0.93) 46%,
      rgba(7, 21, 34, 0.58) 62%,
      rgba(7, 21, 34, 0.22) 78%,
      rgba(7, 21, 34, 0.06) 100%);
}

.hero-bg::after {
  background:
    linear-gradient(180deg,
      rgba(7, 21, 34, 0.18) 0%,
      rgba(7, 21, 34, 0.08) 52%,
      rgba(7, 21, 34, 0.78) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 112px 112px;
  mask-image: linear-gradient(90deg, black 0%, black 45%, transparent 86%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 22%;
  background: linear-gradient(180deg, rgba(7, 21, 34, 0), rgba(7, 21, 34, 0.72) 72%, var(--paper));
}

.hero-content {
  width: min(var(--page-max), calc(100% - var(--page-gutter-total)));
  min-height: 640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(470px, 620px);
  align-items: center;
  gap: clamp(48px, 5.4vw, 92px);
  padding: 48px 0 104px;
}

.hero-copy,
.feature-card {
  min-width: 0;
}

.hero-copy {
  max-width: 100%;
  animation: rise-in 700ms ease both;
}

.feature-card {
  animation: rise-in 780ms 90ms ease both;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.eyebrow.dark,
.section-kicker.dark {
  color: var(--copper);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 12px 8px 10px;
  color: #ffe0a1;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(241, 189, 99, 0.28);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  background: var(--gold-2);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(241, 189, 99, 0.12), 0 0 20px rgba(241, 189, 99, 0.45);
}

.hero-eyebrow span {
  display: inline-block;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
}

.hero-eyebrow strong {
  display: inline-block;
  color: #ffffff;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
  overflow-wrap: break-word;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  color: #fffdf8;
  font-size: clamp(64px, 5.65vw, 92px);
  letter-spacing: 0;
}

h1 span,
.section-intro h2 span,
.brand-intro h2 span {
  color: var(--gold-2);
}

.intro {
  max-width: min(760px, 100%);
  margin-bottom: 22px;
  color: #e6f0f8;
  font-size: 17px;
  line-height: 1.48;
  overflow-wrap: break-word;
}

.hero-stats {
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin: 0 0 22px;
  border: 1px solid rgba(241, 189, 99, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(241, 189, 99, 0.24), rgba(255, 255, 255, 0.08), rgba(241, 189, 99, 0.2));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.hero-stats article {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  column-gap: 13px;
  padding: 15px 18px 16px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0)),
    rgba(8, 27, 44, 0.82);
  transition: background 160ms ease;
}

.hero-stats article:hover {
  background: rgba(12, 42, 68, 0.82);
}

.hero-stats span {
  display: block;
  grid-column: 1 / -1;
  margin-bottom: 5px;
  color: #adc2d3;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
}

.hero-stats strong {
  display: block;
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 45px;
  line-height: 0.9;
  font-weight: 500;
}

.hero-stats p {
  margin: 0 0 4px;
  color: #f8fbff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-points span {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 7px 15px 7px 8px;
  color: #f8fbff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(241, 189, 99, 0.22);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.hero-points span:nth-child(4) {
  display: none;
}

.hero-points svg {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  padding: 6px;
  color: var(--gold-2);
  background: rgba(241, 189, 99, 0.13);
  border: 1px solid rgba(241, 189, 99, 0.34);
  border-radius: 50%;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.hero-points .icon-fill {
  fill: rgba(241, 189, 99, 0.12);
  stroke: rgba(241, 189, 99, 0.95);
}

.hero-actions,
.feature-actions,
.inline-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  flex-wrap: nowrap;
}

.hero-actions .btn-large {
  min-height: 48px;
  padding-inline: clamp(16px, 1.1vw, 22px);
  font-size: 13px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border: 1px solid rgba(241, 189, 99, 0.52);
  border-radius: 8px;
  background: #091929;
  box-shadow: var(--shadow-dark);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.09) 45%, transparent 54% 100%);
  opacity: 0;
  transform: translateX(-20%);
  transition: opacity 220ms ease, transform 420ms ease;
  pointer-events: none;
}

.feature-card:hover::after {
  opacity: 1;
  transform: translateX(20%);
}

.feature-photo,
.flagship-photo,
.location-image,
.thumb,
.corporate-photo,
.footer-city {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.feature-photo {
  position: absolute;
  inset: 0;
  background-image: url("assets/IMG_6840.webp");
  background-position: center;
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.02);
}

.feature-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      #071522 0%,
      rgba(7, 21, 34, 0.98) 34%,
      rgba(7, 21, 34, 0.84) 49%,
      rgba(7, 21, 34, 0.42) 68%,
      rgba(7, 21, 34, 0.1) 100%),
    linear-gradient(180deg, rgba(7, 21, 34, 0.06), rgba(7, 21, 34, 0.24));
}

.feature-content {
  position: relative;
  z-index: 1;
  width: min(70%, 470px);
  min-height: 390px;
  display: grid;
  align-content: center;
  padding: 34px 32px;
}

.pill {
  width: max-content;
  max-width: 100%;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  padding: 0 12px;
  color: #e5fff0;
  background: rgba(46, 138, 91, 0.34);
  border: 1px solid rgba(122, 225, 155, 0.48);
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 850;
}

.feature-card h2 {
  margin: 14px 0 8px;
  color: #fffdf8;
  font-size: clamp(34px, 2.8vw, 48px);
}

.feature-lead {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.2;
}

.feature-copy {
  max-width: 560px;
  margin-bottom: 20px;
  color: #dce8f2;
}

.feature-actions {
  flex-wrap: nowrap;
}

.feature-actions .btn {
  flex: 0 0 auto;
}

.finder {
  position: relative;
  z-index: 3;
  margin-top: -86px;
  padding: 32px 34px 30px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 242, 0.98) 42%, rgba(246, 239, 227, 0.98)),
    var(--paper-2);
  border: 1px solid rgba(18, 35, 53, 0.12);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(11, 22, 34, 0.22);
  animation: rise-in 720ms 150ms ease both;
}

.finder::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(217, 155, 63, 0), var(--gold));
  border-radius: 8px 8px 0 0;
}

.finder-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.finder h2,
.locations > h2,
.solutions > h2,
.insights h2,
.faq h2 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
}

.finder-copy {
  max-width: 560px;
  margin: 8px 0 0;
  color: #5d6a78;
  font-size: 13px;
}

.tabs {
  min-height: 44px;
  display: flex;
  gap: 4px;
  padding: 4px;
  background: rgba(239, 229, 214, 0.86);
  border: 1px solid rgba(18, 35, 53, 0.1);
  border-radius: 6px;
}

.tabs button {
  min-width: 132px;
  padding: 0 18px;
  color: #526274;
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  z-index: 5;
  pointer-events: auto;
}

.tabs button * {
  pointer-events: none !important;
}

.tabs button.active {
  color: var(--ink) !important;
  background: #ffffff !important;
  box-shadow: inset 0 -3px 0 #d99b3f !important;
  border-bottom: 3px solid #d99b3f !important;
  font-weight: 850 !important;
}

.tab-short {
  display: none;
}

.finder-form {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(210px, 1.12fr) minmax(190px, 1fr) minmax(150px, 0.8fr) minmax(170px, 0.92fr) minmax(162px, 0.68fr);
  gap: 12px;
  align-items: end;
}

.finder-form[data-finder-mode="cafe"] {
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(162px, 0.62fr);
}

.finder-form[data-finder-mode="corporate"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.finder-form[data-finder-mode="corporate"] .btn {
  justify-self: start;
  padding-inline: 22px;
}

.finder-form [hidden] {
  display: none !important;
}

.finder-form label,
.contact-form label {
  display: grid;
  gap: 6px;
}

.finder-form span {
  color: #5d6a78;
  font-size: 12px;
  font-weight: 700;
}

.finder-form .btn {
  width: 100%;
  min-height: 46px;
  padding-inline: 16px;
  white-space: nowrap;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(18, 35, 53, 0.14);
  border-radius: 4px;
  padding: 0 14px;
  outline: 0;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #526274 50%),
    linear-gradient(135deg, #526274 50%, transparent 50%);
  background-position: calc(100% - 18px) 20px, calc(100% - 13px) 20px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

input::placeholder,
textarea::placeholder {
  color: #7d8b99;
}

.finder-mode-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
  margin-top: 20px !important;
  width: 100% !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.finder-mode-card {
  position: relative !important;
  min-height: 104px;
  display: block;
  width: 100%;
  padding: 18px 20px 18px 24px;
  text-align: left;
  overflow: hidden;
  background: #fbf8f3 !important;
  border: 1px solid rgba(18, 35, 53, 0.12) !important;
  border-left: 4px solid #d99b3f !important;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background-color 160ms ease;
}

.finder-mode-card::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  width: 5px !important;
  background: linear-gradient(180deg, #f1bd63, #d99b3f) !important;
  z-index: 5 !important;
}

.finder-mode-card:hover {
  background: #ffffff !important;
  border-color: rgba(217, 155, 63, 0.42) !important;
  box-shadow: 0 12px 28px rgba(11, 22, 34, 0.08) !important;
  transform: translateY(-1px);
}

.finder-mode-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.finder-mode-card span {
  display: block;
  color: #5b6876;
  font-size: 13px;
  line-height: 1.45;
}

.finder-mode-card em,
.text-cta,
.mini-card-grid a,
.dark-card a,
.solution-grid a,
.insight-grid small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8a531a;
  font-size: 12px;
  font-weight: 900;
}

.finder-mode-card em {
  margin-top: 10px;
  font-style: normal;
}

.helper {
  margin: 16px 0 0;
  color: #687686;
  text-align: center;
  font-size: 12px;
}

.restriction-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.restriction-notes span {
  position: relative;
  min-height: 46px;
  display: block;
  padding: 11px 12px 11px 34px;
  color: #4c5d6e;
  background: #ffffff;
  border: 1px solid rgba(18, 35, 53, 0.1);
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.restriction-notes span::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 13px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(217, 155, 63, 0.13);
}

.light-card {
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid rgba(18, 35, 53, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.section-intro {
  min-width: 0;
}

.section-intro h2,
.flagship-main h2,
.cafe-flagship h2,
.experience-section h2,
.spotlight h2,
.authority-section h2,
.proof-stats h2 {
    margin-bottom: 14px;
    color: var(--ink);
    font-size: clamp(34px, 3vw, 54px);
}

.section-intro p:not(.section-kicker) {
  color: #566576;
}

.section-subhead,
.solutions-subtitle {
  color: #617082;
  font-size: 17px;
  line-height: 1.45;
}

.center-copy {
  max-width: 740px;
  margin-inline: auto;
  text-align: center;
}

.note {
  margin: 18px 0 0;
  color: #788593;
  font-size: 12px;
  line-height: 1.5;
}

.brands-v3 {
  display: grid;
  grid-template-columns: minmax(250px, 0.82fr) minmax(320px, 1.18fr) minmax(320px, 1.18fr) minmax(260px, 0.88fr);
  gap: 16px;
  margin-top: 28px;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.brands-v3 .section-intro,
.brand-support {
  min-height: 300px;
  padding: 30px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(12, 45, 72, 0.98), rgba(6, 20, 33, 0.98));
  border: 1px solid rgba(241, 189, 99, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brands-v3 .section-intro h2,
.brand-support h3 {
  color: #ffffff;
}

.brands-v3 .section-intro p:not(.section-kicker),
.brand-support p:not(.section-kicker) {
  color: #d5e2ed;
}

.brand-proof,
.brand-support-line,
.brand-micro,
.flagship-chips,
.cafe-availability,
.cafe-journey {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brand-proof {
  margin-top: auto;
  padding-top: 16px;
}

.brand-proof span,
.brand-support-line span,
.brand-micro span,
.flagship-chips span,
.cafe-availability span,
.cafe-journey span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
}

.brand-proof span,
.brand-support-line span {
  color: #ffe0a1;
  background: rgba(241, 189, 99, 0.1);
  border: 1px solid rgba(241, 189, 99, 0.2);
}

.brand-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 242, 0.94)),
    #fffdf8;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.brand-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent 0 34%, rgba(217, 155, 63, 0.08) 100%),
    radial-gradient(circle at 82% 82%, rgba(241, 189, 99, 0.15), transparent 25%);
  opacity: 0.75;
}

.brand-card > * {
  position: relative;
  z-index: 1;
}

.brand-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 60px rgba(11, 22, 34, 0.16);
}

.brand-media {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  background: #081927;
}

.brand-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: saturate(1.04) contrast(1.04);
}

.brand-card-work .brand-media::before {
  inset: -6px;
  background-image: url("assets/funwork-brand-card-banner.webp");
  background-position: center 58%;
}

.brand-card-cafe .brand-media::before {
  background-image: url("assets/divine-bite-brand-card-banner.webp");
  background-position: center 50%;
}

.brand-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 26px 30px 30px;
}

.logo-tile {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border-radius: 8px;
  text-align: center;
  line-height: 1.05;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.logo-image-tile {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.logo-image-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 18px 24px rgba(11, 22, 34, 0.12));
}

.fun-logo {
  background: transparent;
}

.cafe-logo {
  background: transparent;
}

.brand-card h3,
.brand-support h3 {
  margin-bottom: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.08;
}

.brand-logo-heading {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 14px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 0;
  line-height: 1;
}

.brand-logo-heading img {
  width: auto;
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
}

.brand-card-cafe .brand-logo-heading img {
  max-height: 48px;
}

.brand-pill {
  align-self: flex-start;
  width: fit-content;
  max-width: 100%;
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 5px;
  padding: 0 10px;
  color: #8a531a;
  background: rgba(217, 155, 63, 0.12);
  border: 1px solid rgba(217, 155, 63, 0.2);
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
}

.brand-card p {
  max-width: 390px;
  margin-bottom: 14px;
  color: #435469;
}

.brand-authority {
  min-height: 78px;
  line-height: 1.45;
}

.brand-card-meta {
  max-width: 390px;
  margin: 0 0 16px;
  padding: 0 0 0 14px;
  color: #4b5a6a;
  border-left: 2px solid rgba(217, 155, 63, 0.52);
}

.brand-card-meta strong {
  display: block;
  margin-bottom: 3px;
  color: #8a531a;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0;
}

.brand-card-meta span {
  display: block;
  font-size: 12px;
  line-height: 1.35;
}

.brand-micro {
  margin-bottom: 18px;
}

.brand-micro span {
  color: #4e5d6c;
  background: rgba(16, 32, 51, 0.05);
  border: 1px solid rgba(16, 32, 51, 0.08);
}

.brand-check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-height: 112px;
  margin: 4px 0 24px;
  padding: 0;
  list-style: none;
}

.brand-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #253548;
  font-size: 12.5px;
  font-weight: 850;
  line-height: 1.3;
  white-space: nowrap;
}

.brand-check-list li::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.4 8.2 6.6 11.2 12.7 4.7' fill='none' stroke='%23d99b3f' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.brand-card-cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.brand-support {
  display: grid;
  align-content: center;
}

.brand-route-list {
  display: grid;
  margin: 20px 0 8px;
}

.brand-route-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3px 12px;
  align-items: center;
  padding: 12px 0;
  color: inherit;
  text-decoration: none;
  border-top: 1px solid rgba(241, 189, 99, 0.2);
}

.brand-route-list a:last-child {
  border-bottom: 1px solid rgba(241, 189, 99, 0.2);
}

.brand-route-list a::after {
  content: "\2192";
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--gold-2);
  font-weight: 900;
  transition: transform 160ms ease;
}

.brand-route-list strong {
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
}

.brand-route-list span {
  min-width: 0;
  color: #aebdcb;
  font-size: 12px;
  line-height: 1.35;
}

.brand-route-list a:hover::after {
  transform: translateX(3px);
}

.brand-support-line {
  margin: 20px 0 6px;
}

.brand-support .btn {
  justify-self: start;
  margin-top: 10px;
}

.hyderabad-launch {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  display: block;
  height: clamp(310px, 22vw, 390px);
  min-height: 0;
  padding: 0;
  color: #f7fbff;
  background: #0a253b;
  border: 1px solid rgba(241, 189, 99, 0.22);
  border-radius: 8px;
  box-shadow: 0 22px 52px rgba(11, 22, 34, 0.16);
}

.hyderabad-launch::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 16% 22%, rgba(241, 189, 99, 0.08), transparent 32%),
    linear-gradient(90deg,
      #03101a 0%,
      rgba(3, 16, 26, 1) 34%,
      rgba(3, 16, 26, 0.98) 48%,
      rgba(3, 16, 26, 0.88) 60%,
      rgba(3, 16, 26, 0.58) 72%,
      rgba(3, 16, 26, 0.16) 88%,
      rgba(6, 21, 33, 0) 100%);
  pointer-events: none;
}

.hyderabad-launch > * {
  position: relative;
  z-index: 2;
}

.launch-copy {
  width: min(50%, 660px);
  height: 100%;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 30px 36px;
  background: transparent;
}

.launch-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 9px;
  padding: 0 10px;
  color: var(--gold-2);
  background: rgba(241, 189, 99, 0.12);
  border: 1px solid rgba(241, 189, 99, 0.24);
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 950;
}

.hyderabad-launch strong {
  display: block;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.2vw, 40px);
  line-height: 1.04;
  font-weight: 950;
}

.hyderabad-launch p {
  max-width: 620px;
  margin: 9px 0 0;
  color: #d7e4ee;
}

.launch-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.launch-facts span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: #ffe0a1;
  background: rgba(241, 189, 99, 0.1);
  border: 1px solid rgba(241, 189, 99, 0.2);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
}

.launch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.launch-actions .btn {
  margin-top: 0;
}

.launch-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-width: 0;
  height: auto;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-left: 0;
}

.launch-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center right;
}

.flagship,
.cafe-flagship,
.experience-section,
.spotlight,
.authority-section,
.proof-stats {
  margin-top: 28px;
  border-radius: 8px;
}

.flagship {
  display: grid;
  grid-template-columns: minmax(420px, 0.78fr) minmax(0, 1fr);
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 18%, rgba(241, 189, 99, 0.11), transparent 30%),
    #071522;
  border: 1px solid rgba(241, 189, 99, 0.24);
  box-shadow: var(--shadow-soft);
}

.flagship,
.cafe-flagship,
.solutions,
.experience-section,
.locations,
.spotlight,
.authority-section,
.command-card,
.corporate,
.proof-stats,
.insights-faq {
  scroll-margin-top: 128px;
}

.flagship-photo {
  min-height: 520px;
}

.flagship-photo.conference {
  background-image:
    linear-gradient(180deg, rgba(7, 21, 34, 0), rgba(7, 21, 34, 0.06)),
    url("assets/patia-flagship-conference-hall.png");
  background-position: center 54%;
  background-size: cover;
  filter: saturate(1.02) contrast(1.02);
}

.flagship-main {
  padding: clamp(34px, 3.7vw, 58px);
}

.flagship-main h2,
.cafe-flagship h2,
.experience-section h2,
.spotlight h2,
.authority-section h2,
.proof-stats h2,
.command-card h2 {
  color: #ffffff;
}

.flagship-main > p:not(.eyebrow):not(.section-subhead):not(.note),
.cafe-flagship .section-intro p:not(.section-kicker),
.experience-section .section-intro p:not(.section-kicker),
.spotlight p:not(.eyebrow):not(.section-subhead),
.authority-section .section-intro p:not(.section-kicker) {
  color: #d7e4ee;
}

.flagship-main .section-subhead,
.spotlight .section-subhead,
.command-card .section-subhead {
  color: #eaf2f9;
}

.flagship-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 16px;
}

.flagship-chips {
  margin-bottom: 22px;
}

.flagship-chips span,
.cafe-availability span {
  color: #ffe0a1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(241, 189, 99, 0.2);
}

.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.mini-card-grid article,
.dark-card,
.benefit-grid article {
  position: relative;
  min-height: 148px;
  padding: 22px 21px 19px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.mini-card-grid article::before,
.dark-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-2), rgba(241, 189, 99, 0));
  opacity: 0.65;
}

.mini-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.mini-label {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  color: #f7cf88;
  background: rgba(241, 189, 99, 0.09);
  border: 1px solid rgba(241, 189, 99, 0.16);
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 900;
}

.mini-number {
  color: rgba(241, 189, 99, 0.74);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 0.9;
  font-weight: 500;
}

.mini-card-grid article:hover,
.dark-card:hover,
.benefit-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 189, 99, 0.32);
  background: rgba(255, 255, 255, 0.085);
}

.mini-card-grid h3,
.dark-card h3,
.benefit-grid h3 {
  margin: 0 0 9px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.08;
}

.mini-card-grid p,
.dark-card p,
.benefit-grid p {
  color: #cbd8e3;
  font-size: 13px;
}

.mini-card-grid a,
.dark-card a {
  margin-top: 4px;
  color: var(--gold-2);
}

.cafe-flagship {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 4vw, 64px);
  color: #ffffff;
  background:
    radial-gradient(circle at 76% 70%, rgba(241, 189, 99, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(7, 21, 34, 0.98) 0%, rgba(7, 21, 34, 0.92) 48%, rgba(7, 21, 34, 0.68) 100%),
    url("assets/divine-bite-brand-card-banner.webp") center 52% / cover no-repeat;
  border: 1px solid rgba(241, 189, 99, 0.22);
}

.cafe-intro {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) minmax(260px, 0.38fr);
  align-items: center;
  gap: 24px;
  max-width: none;
}

.cafe-logo-mark {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
}

.cafe-logo-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.28));
}

.cafe-feature-panel {
  align-self: stretch;
  display: grid;
  align-content: center;
  padding: 22px 24px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(241, 189, 99, 0.2);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cafe-feature-panel span {
  margin-bottom: 8px;
  color: var(--gold-2);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 950;
}

.cafe-feature-panel strong {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1.08;
  font-weight: 600;
}

.cafe-feature-panel p {
  margin: 12px 0 0;
  color: #cbd8e3;
  font-size: 13px;
}

.cafe-availability {
  margin-top: 20px;
}

.cafe-journey {
  margin-top: 14px;
}

.cafe-journey span {
  min-height: 38px;
  gap: 8px;
  color: #eaf2f9;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.cafe-journey strong {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 950;
}

.outlet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px 0 18px;
}

.cafe-flagship .inline-actions,
.experience-section .inline-actions,
.authority-section .inline-actions,
.spotlight .inline-actions {
  margin-top: 20px;
}

.experience-section {
  padding: clamp(34px, 4vw, 56px);
  color: #ffffff;
  background: #0a253b;
  border: 1px solid rgba(241, 189, 99, 0.18);
}

.experience-section .mini-card-grid {
  grid-template-columns: repeat(4, 1fr);
}

.solutions {
  margin-top: 28px;
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 4.3vw, 62px);
  background:
    radial-gradient(circle at 16% 12%, rgba(241, 189, 99, 0.18), transparent 26%),
    linear-gradient(180deg, #fffdf8 0%, #fff8eb 100%);
  border: 1px solid rgba(18, 35, 53, 0.09);
  box-shadow: 0 24px 70px rgba(11, 22, 34, 0.11);
}

.solutions::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-2), rgba(241, 189, 99, 0.15), transparent);
}

.solutions > * {
  position: relative;
  z-index: 1;
}

.solutions-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: end;
}

.solutions h2 {
  max-width: 760px;
}

.solutions h2,
.locations > h2 {
  text-align: left;
}

.solutions-subtitle {
  max-width: 820px;
  margin: 10px 0 0;
  color: #526273;
  text-align: left;
}

.solution-guidance {
  padding: 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 0%, rgba(241, 189, 99, 0.14), transparent 34%),
    linear-gradient(145deg, #0b253b, #071522);
  border: 1px solid rgba(241, 189, 99, 0.24);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(11, 22, 34, 0.16);
}

.solution-guidance span,
.solution-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  color: #8c5519;
  background: rgba(241, 189, 99, 0.13);
  border: 1px solid rgba(217, 155, 63, 0.2);
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 950;
}

.solution-guidance span {
  color: #f7cf88;
  background: rgba(241, 189, 99, 0.1);
  border-color: rgba(241, 189, 99, 0.22);
}

.solution-guidance strong {
  display: block;
  margin-top: 12px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.08;
  font-weight: 600;
}

.solution-guidance p {
  margin: 12px 0 16px;
  color: #d6e3ee;
  font-size: 13px;
}

.solution-guidance .btn {
  width: 100%;
}

.solution-quick-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.solution-quick-row a {
  position: relative;
  min-height: 96px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 13px;
  align-content: center;
  padding: 18px 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 35, 53, 0.1);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(11, 22, 34, 0.06);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.solution-quick-row a:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 155, 63, 0.32);
  box-shadow: 0 18px 40px rgba(11, 22, 34, 0.09);
}

.solution-quick-row span {
  grid-row: 1 / span 2;
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  color: #8c5519;
  background: rgba(241, 189, 99, 0.16);
  border: 1px solid rgba(217, 155, 63, 0.24);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 950;
}

.solution-quick-row strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
}

.solution-quick-row small {
  margin-top: 4px;
  color: #5d6d7f;
  font-size: 12px;
  line-height: 1.35;
}

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

.solution-grid article {
  position: relative;
  min-height: 216px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  grid-template-rows: auto auto 1fr auto;
  gap: 0 16px;
  padding: 22px 22px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 252, 246, 0.96));
  border: 1px solid rgba(18, 35, 53, 0.1);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.solution-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(217, 155, 63, 0.78), rgba(241, 189, 99, 0));
  opacity: 0;
  transition: opacity 160ms ease;
}

.solution-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 155, 63, 0.28);
  box-shadow: 0 22px 45px rgba(11, 22, 34, 0.12);
}

.solution-grid article:hover::before,
.solution-card-featured::before {
  opacity: 1;
}

.solution-card-featured {
  background:
    linear-gradient(180deg, rgba(255, 249, 237, 0.99), rgba(255, 245, 224, 0.98));
  border-color: rgba(217, 155, 63, 0.3);
}

.solution-icon {
  position: relative;
  display: block;
  width: 46px;
  height: 40px;
  grid-row: 1 / span 4;
  align-self: start;
  margin: 4px 0 0;
  color: var(--gold);
}

.solution-icon::before,
.solution-icon::after {
  content: "";
  position: absolute;
  border: 2px solid currentColor;
}

.solution-icon.chair::before {
  left: 8px;
  top: 8px;
  width: 26px;
  height: 18px;
  border-radius: 5px 5px 2px 2px;
}

.solution-icon.chair::after {
  left: 13px;
  top: 27px;
  width: 16px;
  height: 10px;
  border-top: 0;
}

.solution-icon.building::before,
.solution-icon.corporate::before {
  left: 7px;
  top: 4px;
  width: 30px;
  height: 31px;
}

.solution-icon.building::after,
.solution-icon.corporate::after {
  left: 15px;
  top: 12px;
  width: 4px;
  height: 4px;
  background: currentColor;
  border: 0;
  box-shadow: 10px 0 0 currentColor, 0 10px 0 currentColor, 10px 10px 0 currentColor;
}

.solution-icon.meeting::before {
  left: 4px;
  top: 9px;
  width: 37px;
  height: 20px;
}

.solution-icon.meeting::after {
  left: 10px;
  top: 31px;
  width: 26px;
  height: 5px;
  border-top: 0;
}

.solution-icon.hall::before {
  left: 5px;
  top: 14px;
  width: 36px;
  height: 20px;
}

.solution-icon.hall::after {
  left: 19px;
  top: 5px;
  width: 9px;
  height: 9px;
  transform: rotate(45deg);
}

.solution-icon.virtual::before {
  left: 14px;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.solution-icon.virtual::after {
  left: 8px;
  top: 22px;
  width: 30px;
  height: 13px;
  border-radius: 0 0 20px 20px;
  border-top: 0;
}

.solution-grid h3 {
  grid-column: 2;
  min-height: auto;
  margin: 12px 0 8px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.08;
}

.solution-grid p {
  grid-column: 2;
  min-height: auto;
  margin: 0;
  color: #5b6a79;
  font-size: 13px;
  line-height: 1.45;
}

.solution-grid a {
  grid-column: 2;
  align-self: end;
  margin-top: 16px;
  color: #8a4f12;
  font-size: 13px;
  font-weight: 900;
}

.solution-grid a:hover {
  color: #63360a;
}

.locations {
  margin-top: 28px;
}

.locations > .section-kicker {
  text-align: center;
}

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

.location-card {
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.location-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(11, 22, 34, 0.15);
}

.location-card h3 {
  margin: 16px 18px 8px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.12;
}

.location-card p {
  margin: 0 18px 12px;
  color: #536273;
  font-size: 12px;
  line-height: 1.45;
}

.location-card ul {
  margin: 0 18px 14px;
  padding: 0;
  list-style: none;
}

.location-card li {
  position: relative;
  margin: 7px 0;
  padding-left: 22px;
  color: #3d5064;
  font-size: 12px;
}

.location-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.location-card div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 18px 18px;
}

.location-image {
  position: relative;
  min-height: 134px;
  transition: filter 160ms ease, transform 240ms ease;
}

.location-card:hover .location-image {
  filter: saturate(1.05) contrast(1.04);
}

.location-image.bmc,
.thumb.bmc {
  background-image: url("assets/location-bmc.png");
}

.location-image.plot,
.thumb.plot {
  background-image: url("assets/location-plot.png");
}

.location-image.patia,
.thumb.patia {
  background-image: url("assets/location-patia.png");
}

.location-image.hyderabad,
.thumb.hyderabad {
  background-image: url("assets/location-hyderabad.png");
}

.location-image span {
  position: absolute;
  top: 10px;
  left: 12px;
  min-height: 23px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: #ffffff;
  background: #176640;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 900;
}

.location-image.plot span,
.location-image.hyderabad span {
  background: #155994;
}

.spotlight {
  position: relative;
  overflow: hidden;
  min-height: 350px;
  display: grid;
  align-items: center;
  padding: clamp(38px, 5vw, 70px);
  color: #ffffff;
  background: #071522;
}

.spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 21, 34, 0.98), rgba(7, 21, 34, 0.74) 58%, rgba(7, 21, 34, 0.25)),
    url("assets/location-hyderabad.png") right center / cover no-repeat;
  opacity: 0.98;
}

.spotlight > div {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 20px 0 4px;
}

.chip-row span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: #f6fbff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(241, 189, 99, 0.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.authority-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 26px;
  align-items: center;
  padding: clamp(36px, 4vw, 58px);
  color: #ffffff;
  background: #0b253b;
  border: 1px solid rgba(241, 189, 99, 0.18);
}

.authority-section .section-intro {
  max-width: 720px;
}

.authority-section .mini-card-grid {
  grid-template-columns: 1fr;
  grid-row: 1 / span 2;
  grid-column: 2;
  margin-top: 0;
}

.authority-section .inline-actions {
  grid-column: 1;
}

.command-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1fr);
  align-items: center;
  gap: 28px;
  overflow: hidden;
  margin-top: 28px;
  padding: clamp(34px, 4vw, 58px) clamp(28px, 4vw, 54px) 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 78% 18%, rgba(241, 189, 99, 0.12), transparent 28%),
    #071522;
  border: 1px solid rgba(241, 189, 99, 0.2);
  border-radius: 8px;
}

.command-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 189, 99, 0.5), transparent);
}

.command-card p {
  color: #d8e5ef;
}

.command-card img {
  align-self: end;
  width: 100%;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.4));
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.benefit-grid article {
  min-height: 122px;
  padding: 18px;
}

.benefit-grid h3 {
  font-size: 17px;
}

.benefit-grid p {
  margin-bottom: 0;
  font-size: 12px;
}

.command-icons {
  display: grid;
  grid-template-columns: repeat(3, minmax(92px, 1fr));
  gap: 8px;
  margin: 20px 0;
}

.command-icons span {
  min-height: 50px;
  display: grid;
  place-items: center;
  padding: 8px;
  color: var(--gold-2);
  border: 1px solid rgba(241, 189, 99, 0.26);
  border-radius: 6px;
  font-size: 10px;
  text-align: center;
}

.corporate {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(300px, 0.62fr) minmax(560px, 1.25fr);
  gap: 0;
  overflow: hidden;
  margin-top: 28px;
}

.corporate-photo {
  min-height: 260px;
  background-image: url("assets/corporate-room.png");
}

.corporate-copy {
  display: grid;
  align-content: center;
  padding: 34px;
}

.corporate-copy h2 {
  color: var(--ink);
  font-size: 32px;
}

.corporate-copy p {
  color: #526274;
}

.corporate-bullets {
  display: grid;
  gap: 8px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.corporate-bullets li {
  position: relative;
  padding-left: 20px;
  color: #263b52;
  font-size: 13px;
  font-weight: 750;
}

.corporate-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  padding: 28px;
  background: #fffdf8;
}

.contact-form h3 {
  grid-column: 1 / -1;
  margin: 0 0 6px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 42px;
}

.contact-form textarea {
  grid-column: 1 / -1;
  min-height: 62px;
  padding-top: 12px;
  resize: vertical;
}

.contact-form .btn {
  justify-self: start;
}

.contact-form p {
  grid-column: 2 / -1;
  align-self: center;
  margin: 0;
  color: #697789;
  font-size: 12px;
}

.proof-stats {
  padding: clamp(34px, 4vw, 54px);
  color: #ffffff;
  background: #0b253b;
  border: 1px solid rgba(241, 189, 99, 0.18);
}

.proof-stats .section-intro {
  text-align: center;
}

.proof-stats .note {
  max-width: 860px;
  margin-inline: auto;
  color: #b9c8d6;
  text-align: center;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.stat-grid article {
  min-height: 132px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 18px 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
}

.stat-grid strong {
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  line-height: 1;
  font-weight: 500;
}

.stat-grid span {
  margin-top: 8px;
  color: #eef6fb;
  font-size: 13px;
  font-weight: 850;
}

.insights-faq {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 16px;
  margin-top: 28px;
}

.insights,
.faq {
  padding: 24px;
}

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

.section-head a {
  color: #8a531a;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

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

.insight-grid a {
  display: grid;
  gap: 8px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid rgba(18, 35, 53, 0.1);
  border-radius: 7px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.insight-grid a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(11, 22, 34, 0.1);
}

.thumb {
  min-height: 80px;
  border-radius: 5px;
}

.insight-grid strong {
  min-height: 48px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.25;
}

.insight-grid p {
  min-height: 58px;
  margin: 0;
  color: #5f6e7d;
  font-size: 11px;
  line-height: 1.35;
}

details {
  border-top: 1px solid rgba(18, 35, 53, 0.12);
}

details:last-child {
  border-bottom: 1px solid rgba(18, 35, 53, 0.12);
}

summary {
  position: relative;
  min-height: 39px;
  display: flex;
  align-items: center;
  padding: 0 34px 0 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 400;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: -2px 0 12px;
  color: #5f6e7d;
  font-size: 13px;
}

.footer-cta {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  color: #ffffff;
  background: #071522;
}

.footer-city {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(7, 21, 34, 0.9), rgba(7, 21, 34, 0.54), rgba(7, 21, 34, 0.9)),
    url("assets/footer-city.png");
  opacity: 0.9;
}

.footer-cta-content {
  position: relative;
  z-index: 1;
  min-height: 250px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 44px 0;
  text-align: center;
}

.footer-cta h2 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: clamp(34px, 3vw, 52px);
}

.footer-cta p {
  max-width: 700px;
  margin-bottom: 18px;
  color: #d9e6ef;
}

.center {
  justify-content: center;
}

.site-footer {
  color: #d7e4ee;
  background: #071522;
  padding: 28px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.7fr) repeat(6, minmax(120px, 1fr));
  gap: 24px;
}

.footer-brand {
  margin-bottom: 12px;
}

.site-footer p {
  max-width: 330px;
  color: #a9bbc9;
  font-size: 12px;
}

.site-footer h3 {
  margin: 0 0 9px;
  color: #ffffff;
  font-size: 13px;
}

.site-footer a {
  display: block;
  margin: 4px 0;
  color: #c5d4df;
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9fb0bf;
  font-size: 12px;
}

.trust {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: #e9ffd8;
  background: rgba(80, 129, 49, 0.72);
  border-radius: 999px;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 1860px) and (min-width: 1661px) {
  .nav-shell {
    gap: 18px;
  }

  .nav-links {
    gap: 14px;
    font-size: 12.35px;
  }

  .brand-mark {
    width: 50px;
    height: 46px;
    flex-basis: 50px;
  }

  .brand strong {
    font-size: 14.4px;
  }

  .brand small {
    font-size: 10.8px;
  }

  .nav-actions .btn,
  .nav-login a {
    padding-inline: 12px;
  }
}

@media (max-width: 1660px) and (min-width: 1281px) {
  .nav-links {
    display: none;
  }

  .nav-shell {
    grid-template-columns: auto 1fr;
    gap: 18px;
  }

  .nav-actions {
    justify-content: flex-end;
  }

  .nav-actions .btn,
  .nav-login a {
    padding-inline: 14px;
  }
}

@media (max-width: 1480px) and (min-width: 1281px) {
  .nav-shell {
    gap: 16px;
  }

  .nav-actions .btn,
  .nav-login a {
    padding-inline: 12px;
  }

  .brands-v3 {
    grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  }

  .brands-v3 .section-intro {
    grid-column: 1;
    grid-row: 1;
  }

  .brands-v3 .brand-card:nth-of-type(1) {
    grid-column: 2;
    grid-row: 1;
  }

  .brands-v3 .brand-card:nth-of-type(2) {
    grid-column: 2;
    grid-row: 2;
  }

  .brand-support {
    grid-column: 1;
    grid-row: 2;
  }

  .hyderabad-launch {
    grid-column: 1 / -1;
    grid-row: 3;
  }
}

@media (max-width: 1280px) {
  .nav-links {
    display: none;
  }

  .nav-shell {
    grid-template-columns: auto 1fr;
  }

  .nav-actions {
    justify-content: end;
  }

  .site-menu-panel {
    width: min(560px, 100vw);
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .feature-card {
    max-width: 760px;
  }

  .finder-form,
  .finder-form[data-finder-mode="cafe"],
  .finder-form[data-finder-mode="corporate"] {
    grid-template-columns: repeat(3, 1fr);
  }

  .finder-form[data-finder-mode="cafe"] {
    grid-template-columns: repeat(2, 1fr);
  }

  .solutions-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .solution-guidance {
    max-width: none;
  }

  .brands-v3,
  .flagship,
  .authority-section,
  .corporate,
  .insights-faq {
    grid-template-columns: 1fr;
  }

  .brands-v3 {
    gap: 14px;
  }

  .brands-v3 .section-intro,
  .brands-v3 .brand-card:nth-of-type(1),
  .brands-v3 .brand-card:nth-of-type(2),
  .brand-support,
  .hyderabad-launch {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .brand-card {
    min-height: 260px;
  }

  .brands-v3 .section-intro,
  .brand-support {
    min-height: auto;
  }

  .hyderabad-launch {
    height: auto;
    justify-items: start;
  }

  .hyderabad-launch::before {
    background:
      linear-gradient(180deg,
        #0a253b 0%,
        rgba(10, 37, 59, 0.98) 48%,
        rgba(10, 37, 59, 0.56) 64%,
        rgba(10, 37, 59, 0) 82%);
  }

  .launch-copy {
    width: 100%;
    min-height: 280px;
    height: auto;
  }

  .launch-visual {
    position: relative;
    height: clamp(220px, 34vw, 320px);
    border-top: 1px solid rgba(241, 189, 99, 0.18);
  }

  .flagship-photo {
    min-height: 340px;
  }

  .flagship-actions .btn {
    width: auto;
  }

  .cafe-intro {
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: start;
  }

  .cafe-feature-panel {
    grid-column: 1 / -1;
  }

  .solution-quick-row {
    grid-template-columns: 1fr;
  }

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

  .mini-card-grid,
  .experience-section .mini-card-grid,
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .authority-section .mini-card-grid,
  .authority-section .inline-actions {
    grid-column: auto;
    grid-row: auto;
  }

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

  .command-card img {
    max-width: 560px;
    margin-left: auto;
  }
}

@media (max-width: 820px) {
  body {
    background:
      linear-gradient(180deg, #061521 0 520px, var(--paper) 520px 100%);
  }

  .container,
  .hero-content,
  .nav-shell {
    width: min(100% - 28px, 640px);
  }

  .notice {
    grid-template-columns: auto auto;
    justify-content: center;
    column-gap: 8px;
    padding: 8px 14px;
    font-size: 11px;
    text-align: center;
  }

  .notice > span {
    grid-column: 1 / -1;
    justify-self: center;
    text-align: center;
    line-height: 1.35;
  }

  .notice-full {
    display: inline;
  }

  .notice-short {
    display: none;
  }

  .notice a {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
  }

  .notice button {
    display: inline-grid;
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    justify-self: center;
    margin-left: 0;
  }

  .nav-shell {
    gap: 12px;
  }

  .brand {
    gap: 10px;
  }

  .nav-actions .btn {
    display: none;
  }

  .nav-login {
    display: none;
  }

  .site-menu {
    display: block;
    grid-template-columns: 1fr;
    width: 100vw;
    max-width: 100vw;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 0;
    overflow: hidden;
    background: #071522;
  }

  .site-menu-backdrop,
  .site-menu-panel {
    grid-column: 1;
  }

  .site-menu-backdrop {
    display: none;
  }

  .site-menu-panel {
    position: fixed;
    inset: 0;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
    overflow-y: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .site-menu-head,
  .site-menu-account,
  .site-menu-grid,
  .site-menu-grid div {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .site-menu-close {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 3;
  }

  .site-menu-grid {
    grid-template-columns: 1fr;
  }

  .site-menu-grid div {
    min-height: auto;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 10.8px;
    white-space: normal;
  }

  .brand-mark {
    width: 48px;
    height: 44px;
    flex-basis: 48px;
  }

  .hero {
    min-height: 0;
  }

  .hero-content {
    min-height: 0;
    padding: 32px 0 78px;
  }

  h1 {
    max-width: 100%;
    font-size: 42px;
  }

  .intro {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.45;
  }

  .finder-form,
  .finder-form[data-finder-mode="cafe"],
  .finder-form[data-finder-mode="corporate"],
  .solutions-head,
  .solution-quick-row,
  .finder-mode-grid,
  .restriction-notes,
  .location-grid,
  .solution-grid,
  .mini-card-grid,
  .experience-section .mini-card-grid,
  .outlet-grid,
  .stat-grid,
  .benefit-grid,
  .contact-form,
  .insight-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 18px;
  }

  .hero-stats article {
    min-height: 88px;
    display: block;
    padding: 12px 9px;
    text-align: center;
  }

  .hero-stats span {
    min-height: 22px;
    margin-bottom: 4px;
    font-size: 8px;
    line-height: 1.15;
  }

  .hero-stats strong {
    font-size: 34px;
    line-height: 0.95;
  }

  .hero-stats p {
    margin-top: 4px;
    font-size: 10px;
    line-height: 1.15;
  }

  .hero-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-bottom: 18px;
  }

  .hero-points span:nth-child(4) {
    display: inline-flex;
  }

  .hero-points span {
    width: auto;
    min-height: 50px;
    gap: 8px;
    padding: 7px 9px;
    border-radius: 8px;
    font-size: 12px;
    white-space: normal;
  }

  .hero-actions .btn,
  .feature-actions .btn,
  .inline-actions .btn {
    width: 100%;
  }

  .hero-points svg {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .feature-card {
    justify-self: stretch;
    width: 100%;
    max-width: calc(100vw - 28px);
    min-height: 0;
  }

  .feature-content {
    width: 100%;
    min-height: 380px;
    background: rgba(7, 18, 30, 0.58);
  }

  .feature-actions {
    flex-wrap: wrap;
  }

  .finder {
    margin-top: -62px;
    padding: 24px;
  }

  .finder-head {
    display: grid;
  }

  .tabs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
  }

  .tabs button {
    min-width: 0;
    min-height: 40px;
    padding: 0 10px;
    white-space: normal;
    line-height: 1.15;
  }

  .cafe-intro {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 18px;
  }

  .cafe-feature-panel {
    grid-column: 1 / -1;
  }

  .cafe-logo-mark {
    width: 84px;
    height: 84px;
  }

  .flagship-actions .btn,
  .cafe-flagship .inline-actions .btn {
    width: 100%;
  }

  .contact-form p {
    grid-column: 1;
  }

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

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

@media (max-width: 520px) {
  body {
    font-size: 14px;
  }

  .site-menu {
    width: 100vw;
    max-width: 100vw;
    padding: 0;
    overflow-x: hidden;
  }

  .site-menu-panel {
    width: 100vw;
    max-width: 100vw;
  }

  .container,
  .hero-content,
  .nav-shell {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    margin-left: 14px;
    margin-right: 14px;
  }

  .hero-eyebrow {
    max-width: calc(100vw - 28px);
    margin-bottom: 18px;
    padding: 8px 10px;
    border-radius: 8px;
  }

  .hero-eyebrow span {
    white-space: normal;
  }

  .hero-eyebrow strong {
    display: none;
  }

  h1 {
    font-size: 36px;
  }

  .hero-content {
    padding: 28px 0 70px;
  }

  .hero-copy,
  .hero-stats,
  .hero-points,
  .hero-actions,
  .finder,
  .finder-head,
  .tabs,
  .finder-form,
  .finder-mode-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  h1,
  .intro {
    width: 100%;
    max-width: 100%;
  }

  .feature-card {
    display: block !important;
    width: 100%;
    max-width: 100%;
    margin-top: 24px;
    min-height: 400px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 16px;
  }

  .hero-stats article:nth-child(3) {
    grid-column: 1 / -1;
  }

  .hero-points {
    margin-bottom: 16px;
  }

  .hero-points span,
  .tabs button,
  .btn {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn-large {
    min-height: 46px;
  }

  .finder h2 {
    font-size: 28px;
  }

  .finder-copy {
    font-size: 12px;
  }

  .tabs button {
    font-size: 12px;
  }

  .tab-full {
    display: none;
  }

  .tab-short {
    display: inline;
  }

  .section-intro h2,
  .solutions h2,
  .flagship-main h2,
  .cafe-flagship h2,
  .experience-section h2,
  .spotlight h2,
  .authority-section h2,
  .proof-stats h2,
  .command-card h2,
  .footer-cta h2 {
    font-size: 29px;
  }

  .brands-v3 .section-intro h2 {
    font-size: 27px;
  }

  .feature-card h2 {
    font-size: 31px;
  }

  .brand-mark {
    width: 42px;
    height: 39px;
    flex-basis: 42px;
  }

  .brand {
    gap: 9px;
  }

  .brand strong {
    font-size: 13.5px;
  }

  .brand small {
    font-size: 10.5px;
  }

  .finder,
  .solutions,
  .brands-v3 .section-intro,
  .brand-support,
  .flagship-main,
  .cafe-flagship,
  .experience-section,
  .spotlight,
  .authority-section,
  .command-card,
  .corporate-copy,
  .contact-form,
  .proof-stats,
  .insights,
  .faq {
    padding: 20px;
  }

  .brand-card {
    min-height: auto;
    padding: 0;
  }

  .brand-media {
    min-height: 172px;
  }

  .brand-logo-heading {
    height: 68px;
    margin-bottom: 14px;
  }

  .brand-logo-heading img {
    max-height: 44px;
  }

  .brand-card-cafe .brand-logo-heading img {
    max-height: 46px;
  }

  .brand-body {
    padding: 20px;
  }

  .site-menu-panel {
    padding: 18px;
  }

  .site-menu-head {
    gap: 10px;
  }

  .site-menu-head .brand strong {
    font-size: 13px;
  }

  .site-menu-head .brand small {
    font-size: 10px;
    white-space: normal;
  }

  .site-menu-account {
    padding: 18px;
  }

  .site-menu-account strong {
    font-size: 22px;
  }

  .site-menu-actions {
    grid-template-columns: 1fr;
  }

  .brand-authority,
  .brand-check-list {
    min-height: 0;
  }

  .brand-proof,
  .brand-micro,
  .brand-support-line,
  .flagship-chips,
  .cafe-availability,
  .cafe-journey {
    gap: 6px;
  }

  .brand-proof span,
  .brand-support-line span,
  .brand-micro span,
  .flagship-chips span,
  .cafe-availability span,
  .cafe-journey span {
    min-height: 26px;
    font-size: 10px;
  }

  .feature-content {
    padding: 26px 20px;
  }

  .flagship-photo {
    min-height: 220px;
  }

  .location-image {
    min-height: 126px;
  }

  .stat-grid article {
    min-height: 112px;
  }

  .brand-card h3,
  .brand-support h3 {
    font-size: 28px;
  }

  .cafe-intro {
    grid-template-columns: 1fr;
  }

  .cafe-logo-mark {
    width: 92px;
    height: 92px;
  }

  .solution-guidance {
    padding: 18px;
  }

  .solution-guidance strong {
    font-size: 24px;
  }

  .solution-quick-row a {
    min-height: 86px;
    padding: 16px;
  }

  .solution-grid article {
    min-height: 0;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 0 12px;
    padding: 18px;
  }

  .solution-icon {
    width: 40px;
    height: 36px;
  }

  .solution-grid h3 {
    font-size: 21px;
  }

  .solution-grid a {
    white-space: normal;
  }

  .flagship-actions {
    gap: 10px;
  }

  .mini-head {
    align-items: center;
  }

  .mini-number {
    font-size: 26px;
  }

  .hyderabad-launch {
    min-height: 0;
    height: auto;
    padding: 20px;
  }

  .hyderabad-launch .btn {
    width: 100%;
  }

  .launch-visual {
    height: 170px;
    min-height: 0;
    border-left: 0;
    border-top: 0;
    border-radius: 4px;
  }

  .launch-visual img {
    border-radius: inherit;
  }

  .launch-copy {
    min-height: 0;
    padding: 0 0 20px;
  }

  .cafe-feature-panel {
    padding: 18px;
  }

  .cafe-feature-panel strong {
    font-size: 23px;
  }

  .logo-tile {
    width: 104px;
    height: 118px;
  }

  .footer-cta-content {
    min-height: 240px;
  }
}

/* Main About Carousel Fix */
.main-abt-carousel {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.main-abt-carousel:not(.owl-loaded) .about-img:not(:first-child) {
  display: none !important;
}

.main-abt-carousel .about-img {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.main-abt-carousel .about-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* Service Carousel Layout */
.service-carousel:not(.owl-loaded) {
  display: flex;
  overflow: hidden;
  gap: 24px;
}

.service-carousel:not(.owl-loaded) .item {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 280px;
}

/* Master Mobile Responsive Overrides for Notice and Feature Card */
@media (max-width: 991px) {
  .notice {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 10px 36px 10px 16px !important;
    gap: 8px !important;
    position: relative !important;
  }

  .notice > span {
    display: block !important;
    text-align: center !important;
    width: 100% !important;
    line-height: 1.4 !important;
    margin: 0 auto !important;
  }

  .notice a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 4px auto 0 !important;
  }

  .notice button {
    position: absolute !important;
    right: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  .hero-content {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .feature-card {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 440px !important;
    margin-top: 24px !important;
    border-radius: 16px !important;
    position: relative !important;
    overflow: hidden !important;
  }

  .feature-content {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 440px !important;
    padding: 28px 20px !important;
    background: linear-gradient(180deg, rgba(7, 21, 34, 0.72) 0%, rgba(7, 21, 34, 0.96) 100%) !important;
  }

  .feature-card h2 {
    font-size: 26px !important;
    line-height: 1.25 !important;
  }

  .feature-lead {
    font-size: 15px !important;
  }

  .feature-copy {
    font-size: 13px !important;
    line-height: 1.5 !important;
  }

  .feature-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin-top: 18px !important;
  }

  .feature-actions .btn {
    width: 100% !important;
    justify-content: center !important;
  }
}
