:root {
  --ink: #182f2a;
  --muted: #65736e;
  --green: #173f35;
  --green-deep: #0d2c25;
  --cream: #f7f2e8;
  --paper: #fffcf5;
  --gold: #f3b63f;
  --gold-soft: #f9dfa2;
  --clay: #a64c32;
  --line: #dcd6c9;
  --white: #fff;
  --serif: "Newsreader", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --shadow: 0 24px 70px rgba(23, 63, 53, 0.13);
}

html:lang(kn) {
  --serif: "Noto Serif Kannada", "Noto Sans Kannada", "Nirmala UI", serif;
  --sans: "Noto Sans Kannada", "Nirmala UI", sans-serif;
}

html:lang(hi),
html:lang(mr) {
  --serif: "Noto Serif Devanagari", "Noto Sans Devanagari", "Nirmala UI", serif;
  --sans: "Noto Sans Devanagari", "Nirmala UI", sans-serif;
}

.i18n-loading body {
  visibility: hidden;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgba(23, 63, 53, 0.055) 0.8px, transparent 0.8px);
  background-size: 20px 20px;
  content: "";
  pointer-events: none;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

svg {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-deep);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 35px;
  padding: 6px 24px;
  color: #f8f0db;
  background: var(--green-deep);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.announcement i {
  width: 4px;
  height: 4px;
  margin: 0 18px;
  border-radius: 50%;
  background: var(--gold);
}

.site-header {
  position: relative;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100% - 64px, 1440px);
  min-height: 92px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(23, 63, 53, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  width: fit-content;
}

.brand-mark {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50% 50% 50% 8px;
  color: var(--gold);
  background: var(--green);
  transform: rotate(-6deg);
}

.brand-mark svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke-width: 1.3;
  transform: rotate(6deg);
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand strong {
  font-family: var(--serif);
  font-size: 1.38rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 38px);
  font-size: 0.82rem;
  font-weight: 700;
}

.desktop-nav a,
.login-link {
  position: relative;
}

.desktop-nav a::after,
.login-link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--clay);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.login-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 22px;
}

.language-picker {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 112px;
  color: var(--muted);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-picker select {
  min-height: 36px;
  padding: 0 28px 0 10px;
  border: 1px solid rgba(23, 63, 53, 0.24);
  border-radius: 3px;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.language-picker select option {
  color: var(--ink);
  background: var(--paper);
}

html:not([lang="en"]) .announcement,
html:not([lang="en"]) .eyebrow,
html:not([lang="en"]) .language-picker {
  letter-spacing: 0;
  text-transform: none;
}

.login-link {
  font-size: 0.82rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button svg {
  margin-left: 12px;
  transition: transform 180ms ease;
}

.button:hover svg {
  transform: translateX(3px);
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
  color: var(--white);
  background: var(--green);
}

.button-primary {
  color: #fffaf0;
  background: var(--clay);
  box-shadow: 0 12px 28px rgba(166, 76, 50, 0.22);
}

.button-primary:hover {
  background: #8f3e29;
  box-shadow: 0 16px 34px rgba(143, 62, 41, 0.28);
}

.button-light {
  color: var(--green-deep);
  background: var(--gold);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(470px, 0.85fr);
  align-items: center;
  gap: clamp(40px, 6vw, 110px);
  width: min(100% - 64px, 1360px);
  min-height: 750px;
  margin: 0 auto;
  padding: 70px 0 92px;
}

.hero::before {
  position: absolute;
  top: 9%;
  left: -120px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(23, 63, 53, 0.13);
  border-radius: 50%;
  content: "";
}

.eyebrow {
  display: flex;
  align-items: center;
  margin: 0 0 20px;
  color: var(--clay);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 27px;
  height: 1px;
  margin-right: 11px;
  background: currentColor;
  content: "";
}

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

.hero h1,
.section-intro h2,
.matching-copy h2,
.privacy-copy h2,
.promise-heading h2,
.questions-heading h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(4.5rem, 7vw, 7.6rem);
}

.hero h1 em,
.section-intro h2 em,
.matching-copy h2 em,
.privacy-copy h2 em,
.promise-heading h2 em,
.final-cta h2 em {
  color: var(--clay);
  font-weight: 500;
}

.hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: #4f625c;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-top: 36px;
}

.text-link {
  border-bottom: 1px solid var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
}

.hero-proof {
  display: flex;
  gap: 24px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof svg {
  color: var(--green);
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.hero-visual::before {
  position: absolute;
  top: 42px;
  right: -80px;
  width: 90%;
  height: 84%;
  border: 1px solid rgba(23, 63, 53, 0.17);
  border-radius: 48% 48% 3px 3px;
  content: "";
}

.hero-visual::after {
  position: absolute;
  z-index: -1;
  top: -25px;
  right: -115px;
  width: 285px;
  height: 285px;
  border-radius: 50%;
  background: var(--gold-soft);
  content: "";
  opacity: 0.55;
}

.arch {
  position: absolute;
  overflow: hidden;
  background: #c8c4b7;
  box-shadow: var(--shadow);
}

.arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arch-main {
  top: 0;
  right: 26px;
  width: min(78%, 440px);
  height: 535px;
  border: 10px solid var(--paper);
  border-radius: 220px 220px 6px 6px;
}

.arch-main img {
  object-position: center top;
}

.profile-caption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 17px;
  color: var(--ink);
  background: rgba(255, 252, 245, 0.94);
  backdrop-filter: blur(12px);
}

.profile-caption div {
  display: flex;
  flex-direction: column;
}

.profile-caption strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.1;
}

.profile-caption div span {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
}

.profile-caption small {
  padding: 5px 8px;
  color: var(--green);
  background: #e2eee9;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.arch-small {
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 185px;
  height: 240px;
  border: 7px solid var(--paper);
  border-radius: 100px 100px 3px 3px;
}

.arch-small span {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  padding: 8px 10px;
  color: var(--ink);
  background: rgba(255, 252, 245, 0.92);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
}

.privacy-ticket {
  position: absolute;
  z-index: 3;
  right: -50px;
  bottom: 44px;
  display: flex;
  align-items: center;
  width: 270px;
  padding: 16px;
  color: #f8f0db;
  background: var(--green);
  box-shadow: 0 16px 36px rgba(13, 44, 37, 0.25);
}

.privacy-ticket > svg {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  margin-right: 12px;
  padding: 7px;
  color: var(--gold);
  border: 1px solid rgba(243, 182, 63, 0.45);
  border-radius: 50%;
}

.privacy-ticket span {
  display: flex;
  flex-direction: column;
  font-size: 0.62rem;
  line-height: 1.45;
}

.privacy-ticket strong {
  margin-bottom: 2px;
  font-size: 0.75rem;
}

.karnataka-stamp {
  position: absolute;
  top: 30px;
  left: -26px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 7px;
  width: 108px;
  height: 108px;
  padding: 18px;
  border: 1px solid rgba(23, 63, 53, 0.25);
  border-radius: 50%;
  color: var(--green);
  background: var(--gold);
  transform: rotate(-8deg);
}

.karnataka-stamp strong {
  font-family: var(--serif);
  font-size: 2.1rem;
  line-height: 1;
}

.karnataka-stamp span {
  font-size: 0.55rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.district-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 65px;
  padding: 12px 30px;
  overflow: hidden;
  color: #f8f0db;
  background: var(--green);
  white-space: nowrap;
}

.district-ribbon span {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.district-ribbon i {
  width: 5px;
  height: 5px;
  margin: 0 clamp(16px, 2.5vw, 38px);
  border-radius: 50%;
  background: var(--gold);
}

.section {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;
  padding: 130px 0;
}

.community-section {
  display: grid;
  grid-template-columns: minmax(330px, 0.68fr) minmax(540px, 1fr);
  gap: clamp(70px, 10vw, 160px);
  align-items: start;
}

.section-intro {
  position: sticky;
  top: 50px;
}

.section-intro h2,
.privacy-copy h2,
.promise-heading h2 {
  font-size: clamp(3rem, 5.5vw, 5.3rem);
}

.section-intro > p:last-child,
.privacy-copy > p:last-of-type {
  max-width: 490px;
  margin: 30px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.community-list {
  border-top: 1px solid var(--line);
}

.community-card {
  position: relative;
  display: grid;
  grid-template-columns: 35px 85px 1fr 28px;
  align-items: center;
  gap: 24px;
  min-height: 196px;
  padding: 30px 10px;
  border-bottom: 1px solid var(--line);
  transition: padding 180ms ease, background 180ms ease;
}

.community-card:hover {
  padding-right: 20px;
  padding-left: 20px;
  background: rgba(255, 252, 245, 0.7);
}

.card-number {
  align-self: start;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
}

.community-symbol {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border-radius: 50% 50% 50% 8px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  transform: rotate(-4deg);
}

.kuruba .community-symbol {
  color: #59320b;
  background: #f5c867;
}

.muslim .community-symbol {
  color: #eef8f3;
  background: #2e6b5c;
}

.lingayat .community-symbol {
  color: #fff4e9;
  background: #a64c32;
}

.scheduled-caste .community-symbol {
  color: #f7f2ff;
  background: #66558f;
}

.scheduled-tribe .community-symbol {
  color: #f5f7e9;
  background: #5a6d3a;
}

.community-card h3 {
  margin: 0 0 7px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.community-card p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.community-card > svg {
  color: var(--clay);
  transition: transform 180ms ease;
}

.community-card:hover > svg {
  transform: translateX(5px);
}

.matching-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  min-height: 760px;
  color: #f8f0db;
  background: var(--green-deep);
}

.matching-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 80px;
  background: #d9b05f;
}

.matching-visual::before,
.matching-visual::after {
  position: absolute;
  border: 1px solid rgba(23, 63, 53, 0.22);
  border-radius: 50%;
  content: "";
}

.matching-visual::before {
  top: -150px;
  left: -120px;
  width: 420px;
  height: 420px;
}

.matching-visual::after {
  right: -190px;
  bottom: -190px;
  width: 520px;
  height: 520px;
}

.preference-sheet {
  position: relative;
  z-index: 2;
  width: min(100%, 480px);
  padding: 36px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 18px 18px 0 rgba(23, 63, 53, 0.16), var(--shadow);
  transform: rotate(-2deg);
}

.sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--ink);
}

.sheet-head span {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
}

.sheet-head small {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.preference-row {
  display: grid;
  grid-template-columns: 1fr auto 25px;
  align-items: center;
  gap: 12px;
  min-height: 77px;
  border-bottom: 1px solid var(--line);
}

.preference-row span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.preference-row strong {
  font-size: 0.78rem;
}

.preference-row svg {
  width: 22px;
  height: 22px;
  padding: 4px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
}

.match-found {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 26px;
  padding: 17px;
  color: #f8f0db;
  background: var(--green);
}

.match-found > span {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-deep);
  background: var(--gold);
}

.match-found > span svg {
  fill: currentColor;
}

.match-found div {
  display: flex;
  flex-direction: column;
}

.match-found small {
  color: #a9beb7;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.match-found strong {
  margin-top: 2px;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
}

.matching-copy {
  align-self: center;
  max-width: 680px;
  padding: 100px clamp(50px, 8vw, 140px);
}

.matching-copy h2 {
  font-size: clamp(3.1rem, 5.2vw, 5.3rem);
}

.matching-copy h2 em {
  color: var(--gold);
}

.matching-copy ol {
  margin: 45px 0 38px;
  padding: 0;
  list-style: none;
}

.matching-copy li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(248, 240, 219, 0.18);
}

.matching-copy li > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(243, 182, 63, 0.55);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 800;
}

.matching-copy li h3 {
  margin: 0 0 5px;
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 600;
}

.matching-copy li p {
  margin: 0;
  color: #a9beb7;
  font-size: 0.78rem;
  line-height: 1.65;
}

.privacy-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(500px, 1fr);
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.visible-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.visible-list span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 1px solid #c5d5ce;
  color: var(--green);
  background: #eaf2ee;
  font-size: 0.67rem;
  font-weight: 800;
}

.visible-list svg {
  width: 16px;
  height: 16px;
}

.locked-profile {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  padding: 16px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.locked-photo {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 180px 180px 2px 2px;
}

.locked-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.locked-photo span {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 6px 9px;
  color: var(--white);
  background: rgba(13, 44, 37, 0.84);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.locked-copy {
  align-self: center;
  padding: 30px 12px 30px 32px;
}

.locked-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
}

.locked-copy > p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 10px 0 30px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.lock-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.lock-line > svg {
  width: 33px;
  height: 33px;
  flex: 0 0 33px;
  padding: 8px;
  border-radius: 50%;
  color: var(--green);
  background: #e5eee9;
}

.lock-line span {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: 0.57rem;
  line-height: 1.5;
}

.lock-line strong {
  color: var(--ink);
  font-size: 0.72rem;
}

.promise-section {
  padding-top: 20px;
}

.promise-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 65px;
}

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

.promise-grid article {
  min-height: 310px;
  padding: 42px;
  border-right: 1px solid var(--line);
}

.promise-grid article:last-child {
  border-right: 0;
}

.promise-grid article > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--clay);
  border: 1px solid #d6c9b9;
  border-radius: 50% 50% 50% 8px;
}

.promise-grid h3 {
  margin: 45px 0 12px;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 600;
}

.promise-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.75;
}

.questions-section {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: clamp(70px, 12vw, 180px);
  padding: 130px max(32px, calc((100vw - 1280px) / 2));
  color: #f8f0db;
  background: var(--green);
}

.questions-heading h2 {
  font-size: clamp(3.4rem, 5vw, 5.3rem);
}

.faq-list {
  border-top: 1px solid rgba(248, 240, 219, 0.25);
}

.faq-list details {
  border-bottom: 1px solid rgba(248, 240, 219, 0.25);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.27rem;
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  margin-left: 20px;
  place-items: center;
  border: 1px solid rgba(243, 182, 63, 0.5);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 1rem;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -8px 45px 26px 0;
  color: #b8cac3;
  font-size: 0.82rem;
  line-height: 1.75;
}

.final-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 670px;
  padding: 130px 30px;
  overflow: hidden;
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  width: 320px;
  height: 530px;
  border: 1px solid rgba(23, 63, 53, 0.15);
  border-radius: 170px 170px 0 0;
  content: "";
}

.final-cta::before {
  bottom: -270px;
  left: -100px;
  transform: rotate(25deg);
}

.final-cta::after {
  top: -300px;
  right: -100px;
  transform: rotate(-20deg);
}

.final-kannada {
  display: grid;
  width: 115px;
  height: 115px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-deep);
  background: var(--gold);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  transform: rotate(-7deg);
}

.final-cta > p {
  margin: 24px 0 14px;
  color: var(--clay);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.final-cta h2 {
  font-size: clamp(3.8rem, 7vw, 7rem);
}

.final-cta .button {
  margin-top: 38px;
}

.final-cta > small {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding: 75px max(32px, calc((100vw - 1280px) / 2)) 25px;
  color: #f8f0db;
  background: var(--green-deep);
}

.site-footer .brand-mark {
  color: var(--green-deep);
  background: var(--gold);
}

.site-footer .brand small {
  color: #8fa79e;
}

.footer-brand p {
  max-width: 330px;
  margin: 22px 0 0;
  color: #8fa79e;
  font-size: 0.78rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links a {
  color: #b6c6c0;
  font-size: 0.75rem;
}

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

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(248, 240, 219, 0.13);
  color: #778f86;
  font-size: 0.61rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 1160px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr minmax(410px, 0.76fr);
    gap: 35px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 8vw, 6.3rem);
  }

  .privacy-ticket {
    right: -20px;
  }

  .matching-visual {
    padding: 55px;
  }

  .matching-copy {
    padding: 90px 55px;
  }

  .locked-profile {
    grid-template-columns: 1fr;
  }

  .locked-photo {
    min-height: 390px;
    border-radius: 180px 180px 2px 2px;
  }
}

@media (max-width: 900px) {
  .site-header,
  .hero,
  .section {
    width: min(100% - 40px, 760px);
  }

  .site-header {
    min-height: 80px;
  }

  .header-actions .login-link,
  .header-actions .button-small {
    display: none;
  }

  .language-picker > span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .menu-button {
    display: grid;
    place-items: center;
  }

  .mobile-menu {
    position: absolute;
    top: 79px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .mobile-menu.open {
    display: flex;
  }

  .mobile-menu > a:not(.button) {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 0.85rem;
    font-weight: 700;
  }

  .mobile-menu .button {
    margin-top: 17px;
    color: var(--white);
    background: var(--green);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 65px;
  }

  .hero-copy {
    max-width: 690px;
  }

  .hero-visual {
    width: min(100%, 610px);
    min-height: 590px;
    margin: 30px auto 0;
  }

  .arch-main {
    right: 8%;
  }

  .arch-small {
    left: 5%;
  }

  .privacy-ticket {
    right: 0;
  }

  .community-section,
  .privacy-section {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .section-intro {
    position: static;
  }

  .matching-section {
    grid-template-columns: 1fr;
  }

  .matching-visual {
    min-height: 650px;
  }

  .matching-copy {
    max-width: none;
  }

  .locked-profile {
    grid-template-columns: 0.9fr 1fr;
  }

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

  .promise-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .promise-grid article:last-child {
    border-bottom: 0;
  }

  .questions-section {
    grid-template-columns: 1fr;
    gap: 55px;
  }
}

@media (max-width: 620px) {
  .announcement {
    justify-content: center;
    min-height: 31px;
    padding: 5px 12px;
    font-size: 0.56rem;
  }

  .announcement span:last-child,
  .announcement i {
    display: none;
  }

  .site-header,
  .hero,
  .section {
    width: calc(100% - 32px);
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 8px;
  }

  .site-header .brand {
    gap: 8px;
    min-width: 0;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand strong {
    font-size: 1.05rem;
  }

  .site-header .brand small {
    display: none;
  }

  .site-header .header-actions {
    gap: 8px;
    min-width: 0;
  }

  .site-header .language-picker {
    min-width: 82px;
  }

  .site-header .language-picker select {
    width: 82px;
    padding-right: 22px;
    padding-left: 7px;
  }

  .site-header .menu-button {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: auto;
    padding: 52px 0 68px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 18vw, 5.2rem);
  }

  .hero-lead {
    margin-top: 23px;
    font-size: 0.94rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .text-link {
    align-self: center;
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .arch-main {
    right: 0;
    width: 82%;
    height: 450px;
    border-width: 7px;
  }

  .arch-small {
    bottom: -10px;
    left: 0;
    width: 135px;
    height: 185px;
    border-width: 5px;
  }

  .privacy-ticket {
    right: -10px;
    bottom: 20px;
    width: 225px;
    padding: 12px;
  }

  .privacy-ticket > svg {
    display: none;
  }

  .karnataka-stamp {
    top: 15px;
    left: 0;
    width: 82px;
    height: 82px;
    padding: 12px;
  }

  .karnataka-stamp strong {
    font-size: 1.6rem;
  }

  .district-ribbon {
    justify-content: flex-start;
    overflow: hidden;
  }

  .section {
    padding: 90px 0;
  }

  .section-intro h2,
  .privacy-copy h2,
  .promise-heading h2 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .community-section {
    gap: 50px;
  }

  .community-card {
    grid-template-columns: 62px 1fr 20px;
    gap: 16px;
    min-height: 170px;
    padding: 24px 0;
  }

  .community-card .card-number {
    display: none;
  }

  .community-symbol {
    width: 62px;
    height: 62px;
    font-size: 1.3rem;
  }

  .community-card h3 {
    font-size: 1.65rem;
  }

  .community-card p {
    font-size: 0.73rem;
  }

  .matching-visual {
    min-height: 530px;
    padding: 45px 24px;
  }

  .preference-sheet {
    padding: 24px;
    box-shadow: 10px 10px 0 rgba(23, 63, 53, 0.16), var(--shadow);
  }

  .sheet-head span {
    font-size: 1.4rem;
  }

  .preference-row {
    grid-template-columns: 1fr 1fr 21px;
  }

  .matching-copy {
    padding: 80px 24px;
  }

  .matching-copy h2 {
    font-size: clamp(2.8rem, 14vw, 4.1rem);
  }

  .locked-profile {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .locked-photo {
    min-height: 400px;
  }

  .locked-copy {
    padding: 28px 12px 16px;
  }

  .promise-heading {
    align-items: start;
    flex-direction: column;
  }

  .promise-grid article {
    padding: 34px 20px;
  }

  .promise-grid h3 {
    margin-top: 30px;
  }

  .questions-section {
    padding: 90px 22px;
  }

  .faq-list summary {
    min-height: 76px;
    font-size: 1.05rem;
  }

  .final-cta {
    min-height: 590px;
    padding: 95px 20px;
  }

  .final-cta h2 {
    font-size: clamp(3.4rem, 17vw, 5rem);
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 65px 24px 24px;
  }

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

/* Wedding-poster hero inspired by the supplied Kannada reference artwork. */
:root {
  --poster-maroon: #4d0c18;
  --poster-deep: #23050b;
  --poster-gold: #d9a23a;
  --poster-gold-bright: #f4ca67;
}

body {
  background: #f5ead8;
}

.announcement {
  background: var(--poster-gold);
  color: var(--poster-deep);
}

.announcement i {
  background: var(--poster-deep);
}

.site-header {
  background: var(--poster-maroon);
}

.hero {
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 0.92fr);
  min-height: 790px;
  padding-top: 70px;
  padding-bottom: 82px;
  color: #fff8ec;
  background:
    radial-gradient(circle at 76% 28%, rgba(217, 162, 58, 0.18), transparent 27%),
    linear-gradient(135deg, var(--poster-deep), var(--poster-maroon) 53%, #641521);
}

.hero::before {
  top: 10%;
  right: 45%;
  left: auto;
  width: 430px;
  height: 430px;
  border-color: rgba(244, 202, 103, 0.24);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero .eyebrow {
  color: var(--poster-gold-bright);
}

.hero-kannada-lockup {
  display: flex;
  align-items: center;
  gap: 13px;
  width: min(100%, 480px);
  margin: 8px 0 25px;
  color: var(--poster-gold-bright);
  font-family: "Noto Serif Kannada", var(--serif), serif;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.28);
}

.hero-lockup-line {
  position: relative;
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--poster-gold));
}

.hero-lockup-line:last-child {
  background: linear-gradient(90deg, var(--poster-gold), transparent);
}

.hero-lockup-line::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 6px;
  height: 6px;
  border: 1px solid var(--poster-gold-bright);
  content: "";
  transform: rotate(45deg);
}

.hero-lockup-line:last-child::after {
  right: auto;
  left: 0;
}

.hero h1 {
  max-width: 670px;
  font-size: clamp(4rem, 6.4vw, 7rem);
}

.hero h1 em {
  color: var(--poster-gold-bright);
}

.hero-lead {
  color: #f1d9c8;
}

.hero-proof,
.hero .text-link {
  color: #f8e5cd;
}

.hero-proof svg {
  color: var(--poster-gold-bright);
}

.hero .text-link {
  border-bottom-color: var(--poster-gold-bright);
}

.hero .button-primary {
  color: var(--poster-deep);
  background: var(--poster-gold);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.hero .button-primary:hover {
  color: var(--poster-deep);
  background: var(--poster-gold-bright);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 680px;
  padding: 24px;
  border: 1px solid rgba(244, 202, 103, 0.42);
  background: rgba(35, 5, 11, 0.38);
  box-shadow: inset 0 0 0 10px rgba(217, 162, 58, 0.05);
}

.hero-visual::before {
  inset: 14px;
  top: 14px;
  right: 14px;
  width: auto;
  height: auto;
  border: 1px solid rgba(244, 202, 103, 0.52);
  border-radius: 0;
}

.hero-visual::after {
  top: -65px;
  right: -65px;
  width: 230px;
  height: 230px;
  background: var(--poster-gold);
  opacity: 0.2;
}

.hero-poster-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 500px);
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 8px solid #f7e3b5;
  box-shadow: 18px 18px 0 rgba(217, 162, 58, 0.22), 0 24px 60px rgba(0, 0, 0, 0.38);
}

.hero-poster-frame::before {
  position: absolute;
  z-index: 2;
  inset: 10px;
  border: 1px solid rgba(255, 224, 142, 0.78);
  content: "";
  pointer-events: none;
}

.hero-poster-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-note {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  padding: 6px 9px;
  color: #fff8ec;
  background: rgba(35, 5, 11, 0.8);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.privacy-ticket {
  right: -30px;
  bottom: 34px;
  border: 1px solid rgba(244, 202, 103, 0.45);
  background: #2f594c;
}

.district-ribbon {
  color: var(--poster-deep);
  background: var(--poster-gold);
}

.district-ribbon i {
  background: var(--poster-deep);
}

@media (max-width: 1160px) {
  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 0.8fr);
  }

  .hero-visual {
    min-height: 600px;
  }

  .privacy-ticket {
    right: -12px;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-visual {
    width: min(100%, 600px);
    min-height: 0;
    margin: 10px auto 0;
  }
}

@media (max-width: 620px) {
  .hero {
    padding: 52px 16px 62px;
  }

  .hero-kannada-lockup {
    margin-bottom: 22px;
    font-size: 1.3rem;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 17vw, 5rem);
  }

  .hero-visual {
    padding: 14px;
  }

  .hero-poster-frame {
    width: min(100%, 410px);
    border-width: 6px;
  }

  .hero-poster-frame::before {
    inset: 8px;
  }

  .privacy-ticket {
    right: -3px;
    bottom: 18px;
    width: 220px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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

/* A warmer, family-aware visual language for the public matrimony experience. */
:root {
  --ink: #33251f;
  --muted: #75685d;
  --green: #2f594c;
  --green-deep: #541f2a;
  --cream: #fbf3e5;
  --paper: #fffaf1;
  --gold: #d19a35;
  --gold-soft: #f0d8a5;
  --clay: #a74732;
  --line: #dfd1bf;
  --shadow: 0 24px 70px rgba(84, 31, 42, 0.14);
}

body::before {
  background-image: radial-gradient(rgba(84, 31, 42, 0.075) 0.8px, transparent 0.8px), linear-gradient(135deg, rgba(209, 154, 53, 0.06), transparent 42%);
  background-size: 22px 22px, 100% 100%;
}

.announcement {
  color: #fff4df;
  background: var(--green-deep);
}

.announcement i {
  background: var(--gold);
}

.site-header {
  border-bottom-color: rgba(84, 31, 42, 0.2);
}

.brand-mark {
  border-radius: 50%;
  color: #fff4df;
  background: var(--green-deep);
  transform: none;
}

.brand-mark svg {
  transform: none;
}

.hero {
  isolation: isolate;
}

.hero::before {
  border-color: rgba(84, 31, 42, 0.18);
}

.hero-visual::before {
  border-color: rgba(84, 31, 42, 0.22);
}

.hero-visual::after {
  background: var(--gold-soft);
}

.arch-main,
.arch-small {
  border-color: var(--paper);
}

.profile-caption {
  border-left: 4px solid var(--gold);
}

.privacy-ticket {
  background: var(--green-deep);
}

.karnataka-stamp {
  color: var(--green-deep);
  background: var(--gold);
}

.district-ribbon,
.questions-section,
.site-footer {
  background: var(--green-deep);
}

.community-symbol {
  border-radius: 50% 50% 10px 10px;
}

.matching-section {
  background: var(--green-deep);
}

.matching-visual {
  background: #d6a045;
}

.preference-sheet {
  border-top: 5px solid var(--clay);
}

.final-cta {
  background: rgba(255, 250, 241, 0.55);
}

.final-kannada {
  border-radius: 50% 50% 10px 10px;
}

.site-footer .brand-mark {
  color: var(--green-deep);
  background: var(--gold);
}

@media (max-width: 620px) {
  .brand-mark {
    border-radius: 50%;
  }
}

/* Product redesign: a family introduction desk, not a dating feed. */
body {
  background: #f4ede1;
}

.announcement {
  min-height: 40px;
  background: #d19a35;
  color: #4f1c25;
}

.announcement i {
  background: #4f1c25;
}

.site-header {
  width: 100%;
  max-width: none;
  min-height: 88px;
  padding: 0 max(32px, calc((100vw - 1440px) / 2));
  border-bottom: 0;
  color: #fff8ec;
  background: #541f2a;
}

.brand-mark {
  color: #541f2a;
  background: #d19a35;
}

.brand small,
.site-header .language-picker {
  color: #d8b9a2;
}

.site-header .language-picker select {
  border-color: rgba(255, 248, 236, 0.24);
  color: #fff8ec;
  background: #541f2a;
  color-scheme: dark;
}

.site-header .language-picker select option {
  color: #1d1712;
  background: #fff8ec;
}

/* Keep the native language control readable on every header background. */
.language-picker select,
.language-picker select:focus {
  color: #173f35 !important;
  background-color: #ffffff !important;
  border: 2px solid #d19a35 !important;
  color-scheme: light;
}

.language-picker select option {
  color: #173f35 !important;
  background-color: #ffffff !important;
}

.desktop-nav a::after,
.login-link::after {
  background: #d19a35;
}

.site-header .button-small {
  color: #541f2a;
  background: #d19a35;
}

.hero {
  width: 100%;
  max-width: none;
  min-height: 690px;
  padding: 88px max(32px, calc((100vw - 1280px) / 2)) 104px;
  color: #fff8ec;
  background: #541f2a;
}

.hero::before {
  top: 15%;
  left: auto;
  right: 44%;
  width: 420px;
  height: 420px;
  border-color: rgba(209, 154, 53, 0.24);
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(4rem, 6.4vw, 7rem);
}

.hero h1 em {
  color: #e9bd66;
}

.hero-lead {
  max-width: 560px;
  color: #e4cfc0;
}

.hero-proof,
.text-link {
  color: #f1ddc8;
}

.hero-proof svg {
  color: #e9bd66;
}

.hero-visual {
  min-height: 510px;
  padding: 20px;
  border: 1px solid rgba(255, 248, 236, 0.22);
  background: rgba(255, 248, 236, 0.06);
}

.hero-visual::before {
  top: 44px;
  right: 44px;
  width: calc(100% - 88px);
  height: calc(100% - 88px);
  border: 1px solid rgba(209, 154, 53, 0.42);
  border-radius: 0;
}

.hero-visual::after {
  top: -85px;
  right: -85px;
  width: 260px;
  height: 260px;
  background: #d19a35;
  opacity: 0.28;
}

.arch-main {
  top: 48px;
  right: 78px;
  width: min(60%, 330px);
  height: 390px;
  border-width: 7px;
  border-radius: 180px 180px 2px 2px;
  box-shadow: 18px 18px 0 rgba(209, 154, 53, 0.27);
}

.arch-small {
  bottom: 42px;
  left: 42px;
  width: 152px;
  height: 194px;
  border-width: 5px;
  border-radius: 80px 80px 2px 2px;
}

.profile-caption {
  right: 8px;
  bottom: 8px;
  left: 8px;
  border-left-color: #d19a35;
}

.privacy-ticket {
  right: 16px;
  bottom: 12px;
  width: 250px;
  border: 1px solid rgba(255, 248, 236, 0.25);
  background: #2f594c;
}

.karnataka-stamp {
  top: 10px;
  left: 16px;
  color: #541f2a;
  background: #e9bd66;
  transform: rotate(-4deg);
}

.district-ribbon {
  min-height: 72px;
  color: #541f2a;
  background: #d19a35;
}

.district-ribbon i {
  background: #541f2a;
}

.section {
  width: min(100% - 64px, 1240px);
  padding: 112px 0;
}

.community-section {
  gap: 80px;
}

.community-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border-top: 0;
}

.community-card {
  grid-template-columns: 64px 1fr 22px;
  min-height: 190px;
  gap: 16px;
  padding: 24px;
  border: 1px solid #dfd1bf;
  background: #fffaf1;
}

.community-card:last-child {
  grid-column: 1 / -1;
}

.community-card:hover {
  padding: 24px;
  border-color: #d19a35;
  background: #fffaf1;
  transform: translateY(-3px);
}

.card-number {
  position: absolute;
  top: 14px;
  right: 16px;
}

.community-symbol {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transform: none;
}

.community-card h3 {
  font-size: 1.65rem;
}

.matching-section {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  min-height: 700px;
  color: #fff8ec;
  background: #2f594c;
}

.matching-visual {
  min-height: 700px;
  background: #e5c278;
}

.preference-sheet {
  transform: rotate(0);
  border: 1px solid #d5c09d;
  border-top: 8px solid #a74732;
  box-shadow: 14px 14px 0 rgba(84, 31, 42, 0.17), 0 26px 55px rgba(84, 31, 42, 0.18);
}

.matching-copy {
  padding: 86px clamp(48px, 8vw, 118px);
}

.matching-copy ol {
  margin-top: 34px;
}

.privacy-section {
  gap: 88px;
}

.locked-profile {
  padding: 0;
  border: 1px solid #dfd1bf;
  border-top: 8px solid #a74732;
  box-shadow: 0 20px 45px rgba(84, 31, 42, 0.1);
}

.locked-photo {
  border-radius: 0;
}

.locked-copy {
  padding: 40px;
}

.promise-section {
  padding-top: 0;
}

.promise-grid {
  gap: 14px;
  border: 0;
}

.promise-grid article {
  min-height: 270px;
  padding: 32px;
  border: 1px solid #dfd1bf;
  background: #fffaf1;
}

.promise-grid article:last-child {
  border-right: 1px solid #dfd1bf;
}

.promise-grid h3 {
  margin-top: 32px;
}

.questions-section {
  background: #541f2a;
}

.final-cta {
  min-height: 560px;
  background: #f4ede1;
}

.final-kannada {
  color: #541f2a;
  background: #d19a35;
  transform: none;
}

.site-footer .brand-mark {
  color: #541f2a;
  background: #d19a35;
}

@media (max-width: 900px) {
  .site-header {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero {
    padding-right: 20px;
    padding-left: 20px;
  }

  .community-list {
    grid-template-columns: 1fr;
  }

  .community-card:last-child {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero,
  .section {
    width: 100%;
  }

  .site-header {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero {
    padding: 58px 16px 70px;
  }

  .hero-visual {
    min-height: 470px;
    padding: 10px;
  }

  .arch-main {
    top: 35px;
    right: 32px;
    width: 70%;
    height: 360px;
  }

  .arch-small {
    bottom: 26px;
    left: 20px;
    width: 120px;
    height: 166px;
  }

  .privacy-ticket {
    right: 10px;
    bottom: 10px;
    width: 210px;
  }

  .karnataka-stamp {
    top: 4px;
    left: 8px;
  }

  .community-card {
    min-height: 170px;
    padding: 20px;
  }

  .community-card:hover {
    padding: 20px;
  }

  .matching-visual {
    min-height: 520px;
  }

  .locked-copy {
    padding: 28px 22px;
  }

  .promise-grid {
    gap: 10px;
  }

  .promise-grid article:last-child {
    border-right: 1px solid #dfd1bf;
  }
}

@media (max-width: 380px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding-top: 16px;
    padding-bottom: 14px;
  }

  .site-header .header-actions {
    width: 100%;
    justify-content: space-between;
  }
}
