:root {
  --bg: #f7f6f3;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-solid: #ffffff;
  --surface-soft: #fbfaf7;
  --border: rgba(51, 51, 51, 0.08);
  --border-strong: rgba(51, 51, 51, 0.12);
  --text: #333333;
  --text-soft: #5f5a54;
  --text-muted: #8b847d;
  --primary: #333333;
  --primary-2: #4a4540;
  --primary-3: #b0732b;
  --primary-4: #c58b46;
  --success: #00a76e;
  --danger: #b55f5f;
  --shadow-soft: 0 18px 40px rgba(51, 51, 51, 0.08);
  --shadow-card: 0 26px 60px rgba(51, 51, 51, 0.1);
  --shadow-hover: 0 30px 70px rgba(51, 51, 51, 0.14);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --container: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Open Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(176, 115, 43, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(51, 51, 51, 0.06), transparent 28%),
    linear-gradient(180deg, #faf8f5 0%, #f5f2ee 100%);
}

a {
  color: inherit;
}

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

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

button {
  cursor: pointer;
}

iframe {
  border: 0;
}

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

.site-header {
  position: relative;
  z-index: 200;
  padding: 18px 24px 20px;
}

.navbar-wrapper {
  width: 100%;
}

.main-navbar {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 4px;
}

.navbar-shell {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 40px rgba(51, 51, 51, 0.06);
  backdrop-filter: blur(16px);
}

.navbar-container {
  min-height: 92px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.navbar-brand img {
  width: 128px;
  height: auto;
  object-fit: contain;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff, #f7f4ef);
  box-shadow: 0 8px 22px rgba(51, 51, 51, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.menu-button:hover {
  transform: translateY(-1px);
  color: var(--primary-3);
  box-shadow: 0 12px 24px rgba(51, 51, 51, 0.1);
}

.navbar-right {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.nav-link,
.dropdown-toggle,
.user-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #333333;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover,
.dropdown-toggle:hover,
.user-trigger:hover,
.nav-link:focus-visible,
.dropdown-toggle:focus-visible,
.user-trigger:focus-visible {
  color: var(--primary-3);
  outline: none;
}

.nav-link.is-active,
.dropdown-toggle.is-active {
  color: var(--primary-3);
}

.join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, #333333, #4a4540);
  box-shadow:
    0 14px 24px rgba(51, 51, 51, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.join-btn:hover,
.join-btn:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow:
    0 18px 30px rgba(51, 51, 51, 0.2),
    0 10px 20px rgba(176, 115, 43, 0.12);
  outline: none;
}

.dropdown,
.user-dropdown-container {
  position: relative;
}

.dropdown-content,
.user-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  min-width: 240px;
  margin: 0;
  padding: 12px 0;
  list-style: none;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 24px 50px rgba(51, 51, 51, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 50;
}

.dropdown-content {
  left: 0;
}

.user-dropdown-menu {
  right: 0;
}

.dropdown-content a,
.user-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  text-decoration: none;
  color: #333333;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-content a:hover,
.user-dropdown-menu a:hover,
.dropdown-content a:focus-visible,
.user-dropdown-menu a:focus-visible {
  background: #f7f4ef;
  color: var(--primary-3);
  outline: none;
}

.user-dropdown-menu .divider {
  height: 1px;
  margin: 8px 14px;
  background: rgba(51, 51, 51, 0.08);
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown.is-open .dropdown-content,
.user-dropdown-container:hover .user-dropdown-menu,
.user-dropdown-container:focus-within .user-dropdown-menu,
.user-dropdown-container.is-open .user-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hello-label {
  color: var(--text-muted);
  font-weight: 400;
}

#username {
  color: #333333;
  font-weight: 700;
}

.dropdown-icon {
  font-size: 13px;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.dropdown.is-open .dropdown-icon,
.user-dropdown-container.is-open .dropdown-icon {
  transform: rotate(180deg);
}

.contact-page {
  padding: 8px 24px 72px;
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
  padding: 42px 42px 38px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(51, 51, 51, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(250, 248, 244, 0.94));
  box-shadow: var(--shadow-card);
}

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

.contact-hero::before {
  right: -80px;
  top: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(176, 115, 43, 0.16), transparent 68%);
}

.contact-hero::after {
  left: -80px;
  bottom: -100px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(51, 51, 51, 0.08), transparent 70%);
}

.breadcrumbs {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(51, 51, 51, 0.08);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs .is-current {
  color: var(--primary-3);
}

.contact-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 28px;
  align-items: center;
}

.contact-hero-copy h1 {
  margin: 0 0 14px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.4rem, 4.6vw, 3.5rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: #333333;
}

.contact-hero-copy p {
  max-width: 640px;
  margin: 0 0 22px;
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-btn,
.hero-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, color 0.22s ease, background 0.22s ease;
}

.hero-btn {
  color: #ffffff;
  background: linear-gradient(135deg, #333333, #4a4540);
  box-shadow: 0 16px 28px rgba(51, 51, 51, 0.16);
}

.hero-btn:hover,
.hero-btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.hero-btn-outline {
  color: var(--primary-3);
  border: 1px solid rgba(176, 115, 43, 0.18);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 20px rgba(51, 51, 51, 0.06);
}

.hero-badge-panel {
  display: grid;
  gap: 14px;
}

.hero-mini-card {
  position: relative;
  padding: 22px 22px 20px;
  border-radius: 26px;
  border: 1px solid rgba(51, 51, 51, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 250, 247, 0.9));
  box-shadow: var(--shadow-soft);
}

.hero-mini-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-3);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-mini-card strong {
  display: block;
  color: #333333;
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
  line-height: 1.35;
}

.hero-mini-card p {
  margin: 8px 0 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.contact-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 28px;
}

.highlight-card,
.info-card,
.hours-card,
.map-card,
.form-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(51, 51, 51, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 250, 247, 0.94));
  box-shadow: var(--shadow-card);
}

.highlight-card {
  padding: 24px 22px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.highlight-card:hover,
.info-card:hover,
.hours-card:hover,
.map-card:hover,
.form-card:hover {
  transform: translateY(-5px);
  border-color: rgba(176, 115, 43, 0.18);
  box-shadow: var(--shadow-hover);
}

.highlight-icon,
.info-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 18px;
  color: var(--primary-3);
  font-size: 1.2rem;
  background: linear-gradient(145deg, rgba(247, 241, 232, 0.98), rgba(251, 250, 247, 0.96));
  border: 1px solid rgba(176, 115, 43, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 12px 22px rgba(176, 115, 43, 0.08);
}

.highlight-card h3,
.info-card h3,
.hours-card h2,
.map-card h2,
.form-card h2 {
  margin: 0 0 10px;
  color: #333333;
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
  line-height: 1.28;
}

.highlight-card p,
.info-card p,
.form-card p,
.map-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: 28px;
  align-items: start;
}

.left-column,
.right-column {
  display: grid;
  gap: 28px;
}

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

.info-card {
  padding: 28px 24px;
}

.info-card a {
  text-decoration: none;
}

.info-card a:hover,
.info-card a:focus-visible {
  color: var(--primary-3);
  outline: none;
}

.info-list {
  display: grid;
  gap: 6px;
}

.hours-card {
  padding: 30px 28px;
}

.hours-header {
  margin-bottom: 18px;
}

.hours-header p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

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

.hours-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.08);
  color: var(--text-soft);
  font-size: 15px;
}

.hours-list li:last-child {
  border-bottom: 0;
}

.hours-list strong {
  color: #333333;
  font-weight: 800;
}

.hours-list .closed {
  color: var(--danger);
  font-weight: 700;
}

.map-card {
  padding: 30px 28px 28px;
}

.map-frame {
  overflow: hidden;
  margin-top: 18px;
  border-radius: 24px;
  border: 1px solid rgba(51, 51, 51, 0.08);
  box-shadow: var(--shadow-soft);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 340px;
  filter: saturate(0.78) contrast(0.95);
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--primary-3);
  font-weight: 700;
  text-decoration: none;
}

.map-link:hover,
.map-link:focus-visible {
  outline: none;
  text-decoration: underline;
}

.form-card {
  padding: 30px 28px;
}

.form-card p {
  margin-bottom: 18px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

.input-group {
  display: grid;
  gap: 8px;
}

.input-group label {
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 700;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  border: 1px solid rgba(51, 51, 51, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: #333333;
  padding: 15px 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.input-group input,
.input-group select {
  min-height: 54px;
}

.input-group textarea {
  min-height: 150px;
  resize: vertical;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: #9a938c;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  outline: none;
  border-color: rgba(176, 115, 43, 0.38);
  box-shadow: 0 0 0 4px rgba(176, 115, 43, 0.1);
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, #333333, #4a4540);
  box-shadow: 0 16px 28px rgba(51, 51, 51, 0.16);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.form-submit:hover,
.form-submit:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.04);
  outline: none;
}

.form-feedback {
  min-height: 20px;
  margin: 0;
  color: var(--success);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-feedback.is-error {
  color: var(--danger);
}

.rx-footer {
  padding: 18px 24px 28px;
}

.rx-footer-shell {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 36px 36px 22px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(51, 51, 51, 0.98), rgba(0, 0, 0, 0.96));
  box-shadow: 0 28px 60px rgba(51, 51, 51, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.rx-footer-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(176, 115, 43, 0.12), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02) 36%, rgba(255, 255, 255, 0.01));
}

.rx-footer-shell::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176, 115, 43, 0.14), transparent 68%);
  pointer-events: none;
}

.rx-footer-top,
.rx-footer-bottom {
  position: relative;
  z-index: 1;
}

.rx-footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(0, 2fr);
  gap: 34px;
  padding-bottom: 28px;
}

.rx-footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 154px;
  min-height: 76px;
  padding: 16px 20px;
  background: #ffffff;
}

.rx-footer-logo {
  max-width: 118px;
  height: auto;
}

.rx-footer-description {
  max-width: 390px;
  margin: 24px 0 28px;
  color: rgba(240, 236, 230, 0.88);
  font-size: 15px;
  line-height: 1.85;
}

.rx-footer-emergency {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.rx-footer-emergency-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #b0732b;
  background: linear-gradient(180deg, rgba(176, 115, 43, 0.18), rgba(176, 115, 43, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.rx-footer-emergency-label {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rx-footer-emergency-number {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
}

.rx-footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.rx-footer-column h4 {
  margin: 8px 0 18px;
  padding-bottom: 14px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
}

.rx-footer-column h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(176, 115, 43, 0.95), rgba(176, 115, 43, 0));
}

.rx-footer-column a,
.rx-contact-item a {
  text-decoration: none;
  color: rgba(240, 236, 230, 0.9);
  font-size: 15px;
  line-height: 1.8;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.rx-footer-column a:hover,
.rx-contact-item a:hover,
.rx-footer-column a:focus-visible,
.rx-contact-item a:focus-visible {
  color: #b0732b;
  outline: none;
}

.rx-footer-column:not(.rx-footer-contact):not(.rx-footer-form-col) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rx-contact-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
}

.rx-contact-item + .rx-contact-item {
  margin-top: 14px;
}

.rx-contact-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #b0732b;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.rx-contact-phones {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rx-footer-form {
  display: grid;
  gap: 14px;
  max-width: 240px;
}

.rx-footer-input {
  height: 52px;
  width: 100%;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.rx-footer-input::placeholder {
  color: rgba(240, 236, 230, 0.6);
}

.rx-footer-input:focus {
  outline: none;
  border-color: rgba(176, 115, 43, 0.35);
  box-shadow: 0 0 0 4px rgba(176, 115, 43, 0.12);
}

.rx-footer-submit {
  height: 50px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #333333, #333333);
  box-shadow: 0 14px 22px rgba(0, 0, 0, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.rx-footer-submit:hover,
.rx-footer-submit:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.26);
  outline: none;
}

.footer-form-feedback {
  min-height: 18px;
  margin: 0;
  color: rgba(176, 115, 43, 0.96);
  font-size: 0.85rem;
  line-height: 1.5;
}

.rx-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rx-footer-copy {
  margin: 0;
  color: rgba(240, 236, 230, 0.74);
  font-size: 0.95rem;
}

.rx-footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rx-social-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  text-decoration: none;
  color: #f0ece6;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.rx-social-link:hover,
.rx-social-link:focus-visible {
  transform: translateY(-2px);
  color: #b0732b;
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

@media (max-width: 1100px) {
  .contact-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-hero-grid,
  .rx-footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .navbar-container {
    flex-wrap: wrap;
    padding: 18px 20px;
    gap: 18px;
  }

  .navbar-right {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 10px 0 4px;
    border-top: 1px solid rgba(15, 37, 74, 0.08);
  }

  .navbar-right.is-open {
    display: flex;
  }

  .nav-center {
    width: 100%;
    margin: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .dropdown,
  .user-dropdown-container {
    width: 100%;
  }

  .dropdown-toggle,
  .user-trigger,
  .nav-link,
  .join-btn {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-content,
  .user-dropdown-menu {
    position: static;
    margin-top: 12px;
    width: 100%;
    min-width: 0;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .dropdown.is-open .dropdown-content,
  .user-dropdown-container.is-open .user-dropdown-menu {
    display: block;
  }

  .dropdown:hover .dropdown-content,
  .dropdown:focus-within .dropdown-content,
  .user-dropdown-container:hover .user-dropdown-menu,
  .user-dropdown-container:focus-within .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .form-row,
  .info-grid,
  .rx-footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header,
  .contact-page,
  .rx-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-hero,
  .hours-card,
  .map-card,
  .form-card,
  .info-card,
  .highlight-card,
  .rx-footer-shell {
    border-radius: 28px;
  }

  .contact-hero,
  .hours-card,
  .map-card,
  .form-card,
  .info-card,
  .highlight-card {
    padding-left: 22px;
    padding-right: 22px;
  }

  .contact-highlights {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .contact-hero-copy h1 {
    font-size: 2.25rem;
  }

  .map-frame iframe {
    height: 280px;
  }

  .rx-footer-shell {
    padding: 28px 22px 20px;
  }

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

@media (max-width: 560px) {
  .site-header {
    padding-top: 12px;
  }

  .navbar-shell {
    border-radius: 22px;
  }

  .navbar-brand img {
    width: 112px;
  }

  .menu-button {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .contact-hero-copy h1 {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-btn,
  .hero-btn-outline,
  .form-submit {
    width: 100%;
  }

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

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

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



/* =========================================================
   HOME PAGE SECTIONS
   ========================================================= */

.home-page {
  padding: 8px 24px 72px;
}

.home-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.home-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
  padding: 44px 42px 40px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(51, 51, 51, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(250, 248, 244, 0.94));
  box-shadow: var(--shadow-card);
}

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

.home-hero::before {
  right: -90px;
  top: -110px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(176, 115, 43, 0.16), transparent 68%);
}

.home-hero::after {
  left: -80px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(51, 51, 51, 0.08), transparent 72%);
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
  gap: 28px;
  align-items: center;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(51, 51, 51, 0.08);
  color: var(--primary-3);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0 0 14px;
  color: #333333;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-copy p {
  margin: 0 0 22px;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.88;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(51, 51, 51, 0.08);
  color: #333333;
  font-size: 14px;
  font-weight: 700;
}

.hero-meta-pill i {
  color: var(--primary-3);
}

.hero-panel {
  display: grid;
  gap: 16px;
}

.platform-overview {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(51, 51, 51, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 250, 247, 0.94));
  box-shadow: var(--shadow-soft);
}

.platform-overview .label {
  display: block;
  color: var(--primary-3);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.platform-overview h2 {
  margin: 0;
  color: #333333;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  line-height: 1.3;
}

.platform-overview p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

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

.overview-card {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(247, 243, 237, 0.82);
  border: 1px solid rgba(176, 115, 43, 0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}

.overview-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.overview-card strong {
  display: block;
  color: #333333;
  font-family: "Montserrat", sans-serif;
  font-size: 1.15rem;
  line-height: 1.35;
}

.overview-card p {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.7;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 28px;
}

.action-card,
.split-card,
.feature-card,
.advisor-card,
.update-feature,
.update-item,
.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(51, 51, 51, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(251,250,247,0.94));
  box-shadow: var(--shadow-card);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.action-card:hover,
.split-card:hover,
.feature-card:hover,
.advisor-card:hover,
.update-feature:hover,
.update-item:hover,
.cta-banner:hover {
  transform: translateY(-5px);
  border-color: rgba(176, 115, 43, 0.18);
  box-shadow: var(--shadow-hover);
}

.action-card {
  padding: 24px 22px 22px;
  text-decoration: none;
}

.action-icon,
.feature-icon,
.advisor-badge,
.update-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 18px;
  color: var(--primary-3);
  font-size: 1.2rem;
  background: linear-gradient(145deg, rgba(247,241,232,0.98), rgba(251,250,247,0.96));
  border: 1px solid rgba(176, 115, 43, 0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85), 0 12px 22px rgba(176,115,43,0.08);
}

.action-card h3,
.feature-card h3,
.advisor-copy h3,
.update-feature h3,
.update-item h3,
.split-copy h2 {
  margin: 0 0 10px;
  color: #333333;
  font-family: "Montserrat", sans-serif;
  line-height: 1.28;
}

.action-card h3,
.feature-card h3,
.advisor-copy h3,
.update-item h3 {
  font-size: 1.26rem;
}

.action-card p,
.feature-card p,
.advisor-copy p,
.update-feature p,
.update-item p,
.split-copy p,
.cta-banner p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.action-link,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--primary-3);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.action-link:hover,
.text-link:hover,
.action-link:focus-visible,
.text-link:focus-visible {
  color: #333333;
  outline: none;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 28px;
  margin-bottom: 28px;
}

.split-card {
  padding: 30px 30px 28px;
}

.split-copy .eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--primary-3);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.split-copy h2 {
  font-size: 2rem;
}

.bullet-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.bullet-list i {
  margin-top: 5px;
  color: var(--primary-3);
}

.visual-stack {
  display: grid;
  gap: 16px;
}

.visual-card {
  padding: 22px 22px 20px;
  border-radius: 24px;
  background: rgba(247, 243, 237, 0.84);
  border: 1px solid rgba(176, 115, 43, 0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.76);
}

.visual-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-card strong {
  display: block;
  color: #333333;
  font-family: "Montserrat", sans-serif;
  font-size: 1.16rem;
  line-height: 1.4;
}

.visual-card p {
  margin-top: 6px;
  font-size: 14px;
}

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

.section-heading-group span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--primary-3);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading-group h2 {
  margin: 0;
  color: #333333;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  line-height: 1.15;
}

.section-heading-group p {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--text-soft);
  line-height: 1.85;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 28px;
}

.feature-card {
  padding: 28px 24px;
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 32px;
  padding: 0 12px;
  margin-top: 16px;
  border-radius: 999px;
  background: rgba(176, 115, 43, 0.12);
  color: var(--primary-3);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.advisors-section {
  margin-bottom: 28px;
}

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

.advisor-card {
  padding: 22px;
  cursor: pointer;
}

.advisor-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.advisor-avatar {
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  box-shadow: 0 16px 30px rgba(51, 51, 51, 0.14);
  border: 3px solid rgba(255,255,255,0.88);
}

.advisor-copy {
  min-width: 0;
}

.advisor-copy .role {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--primary-3);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.advisor-copy h3 {
  margin-bottom: 4px;
}

.advisor-meta {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.advisor-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.advisor-meta-item i {
  color: var(--primary-3);
}

.updates-section {
  margin-bottom: 28px;
}

.updates-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 22px;
}

.update-feature {
  padding: 28px 28px 26px;
}

.update-feature .meta,
.update-item .meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.update-feature h3 {
  font-size: 1.6rem;
}

.update-list {
  display: grid;
  gap: 22px;
}

.update-item {
  padding: 22px;
}

.cta-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 28px 30px;
}

.cta-copy h2 {
  margin: 0 0 10px;
  color: #333333;
  font-family: "Montserrat", sans-serif;
  font-size: 1.9rem;
  line-height: 1.15;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.home-btn,
.home-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, color 0.22s ease, background 0.22s ease;
}

.home-btn {
  color: #ffffff;
  background: linear-gradient(135deg, #333333, #4a4540);
  box-shadow: 0 14px 24px rgba(51,51,51,0.16);
}

.home-btn-outline {
  color: var(--primary-3);
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(176, 115, 43, 0.18);
  box-shadow: 0 10px 20px rgba(51,51,51,0.06);
}

.home-btn:hover,
.home-btn-outline:hover,
.home-btn:focus-visible,
.home-btn-outline:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.rx-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(27, 24, 21, 0.58);
  backdrop-filter: blur(6px);
}

.rx-modal-overlay.is-open {
  display: flex;
}

.rx-modal {
  width: min(680px, 100%);
  max-height: 88vh;
  overflow: auto;
  border-radius: 28px;
  border: 1px solid rgba(51, 51, 51, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(251,250,247,0.96));
  box-shadow: 0 40px 100px rgba(19, 18, 17, 0.22);
}

.rx-h {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.08);
}

.rx-av {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 28px rgba(51,51,51,0.15);
}

.rx-t {
  margin: 0;
  color: #333333;
  font-family: "Montserrat", sans-serif;
  font-size: 1.45rem;
}

.rx-s {
  margin-top: 5px;
  color: var(--primary-3);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.rx-b {
  padding: 22px 24px 10px;
}

.rx-b p {
  color: var(--text-soft);
  line-height: 1.8;
}

.rx-meta {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 10px 16px;
  margin: 18px 0 0;
}

.rx-meta dt {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
}

.rx-meta dd {
  margin: 0;
  color: #333333;
  font-size: 14px;
  line-height: 1.7;
}

.rx-f {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px 24px 24px;
}

.rx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: rgba(247, 243, 237, 0.95);
  color: #333333;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.rx-btn.p {
  color: #ffffff;
  background: linear-gradient(135deg, #333333, #4a4540);
}

@media (max-width: 1100px) {
  .quick-actions,
  .features-grid,
  .advisors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .updates-grid,
  .split-layout,
  .home-hero-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 980px) {
  .home-page {
    padding-left: 18px;
    padding-right: 18px;
  }

  .home-hero,
  .split-card,
  .feature-card,
  .update-feature,
  .update-item,
  .cta-banner,
  .advisor-card {
    border-radius: 28px;
  }
}

@media (max-width: 760px) {
  .home-hero {
    padding: 32px 24px 28px;
  }

  .quick-actions,
  .features-grid,
  .advisors-grid,
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    align-items: start;
    flex-direction: column;
  }

  .cta-banner {
    padding: 24px;
  }

  .rx-meta {
    grid-template-columns: 1fr;
  }

  .rx-f {
    flex-direction: column;
  }

  .rx-btn,
  .hero-btn,
  .hero-btn-outline,
  .home-btn,
  .home-btn-outline {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .home-page {
    padding-left: 14px;
    padding-right: 14px;
  }

  .home-hero,
  .split-card,
  .feature-card,
  .update-feature,
  .update-item,
  .cta-banner,
  .advisor-card,
  .platform-overview {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-copy h1 {
    font-size: 2.3rem;
  }

  .split-copy h2,
  .section-heading-group h2,
  .cta-copy h2 {
    font-size: 1.6rem;
  }
}
:root {
  --rx-page-bg: #f5f1ea;
  --rx-shell-width: 1240px; /* same width as navbar */
  --rx-text-dark: #1f2539;
  --rx-text-soft: #697187;
  --rx-accent: #b0732b;
  --rx-accent-2: #c88a39;
  --rx-line-1: rgba(176, 115, 43, 0.48);
  --rx-line-2: rgba(200, 138, 57, 0.30);
  --rx-line-3: rgba(120, 126, 144, 0.28);
}

/* important fix for background mismatch */
html,
body,
main,
.site-header,
.page-wrapper,
.home-wrapper {
  background: var(--rx-page-bg) !important;
}

/* if your header has any overlay/gradient causing a different color */
.site-header::before,
.site-header::after {
  display: none !important;
}

.rx-hero-beat-section {
  position: relative;
  overflow: hidden;
  background: var(--rx-page-bg);
  padding: 138px 24px 88px;
  min-height: 88vh;
}

.rx-hero-shell {
  width: min(var(--rx-shell-width), calc(100vw - 48px));
  margin: 0 auto;
  text-align: center;
}

.rx-hero-kicker {
  margin: 0 0 18px;
  font-family: "Open Sans", sans-serif;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rx-accent);
}

.rx-hero-beat-stage {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rx-heart-lines-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rx-heart-lines {
  width: 100%;
  height: 260px;
  display: block;
  overflow: visible;
}

.rx-beat-path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.rx-beat-path-1 {
  stroke: var(--rx-line-1);
  stroke-width: 2.4;
}

.rx-beat-path-2 {
  stroke: var(--rx-line-2);
  stroke-width: 2;
}

.rx-beat-path-3 {
  stroke: var(--rx-line-3);
  stroke-width: 1.8;
}

.rx-hero-title {
  position: relative;
  z-index: 2;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.02em;
  line-height: 0.9;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--rx-text-dark);
}

.rx-hero-title span:nth-child(1) {
  font-size: clamp(4rem, 8vw, 6.6rem);
  transform: translateX(-110px);
}

.rx-hero-title span:nth-child(2) {
  font-size: clamp(4rem, 8vw, 6.6rem);
  transform: translateX(82px);
}

.rx-hero-title span:nth-child(3) {
  font-size: clamp(4rem, 8vw, 6.6rem);
  transform: translateX(0);
}

.rx-hero-subtitle {
  max-width: 780px;
  margin: 18px auto 0;
  font-family: "Open Sans", sans-serif;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--rx-text-soft);
}

.rx-hero-actions {
  margin-top: 34px;
}

.rx-hero-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--rx-accent) 0%, var(--rx-accent-2) 100%);
  box-shadow: 0 20px 36px rgba(176, 115, 43, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.rx-hero-primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 44px rgba(176, 115, 43, 0.28);
  filter: brightness(1.02);
}

.rx-hero-primary-btn:focus-visible {
  outline: 3px solid rgba(200, 138, 57, 0.35);
  outline-offset: 4px;
}

@media (max-width: 991px) {
  .rx-hero-beat-section {
    padding: 124px 20px 72px;
    min-height: 80vh;
  }

  .rx-hero-beat-stage {
    min-height: 350px;
  }

  .rx-heart-lines {
    height: 210px;
  }

  .rx-hero-title span:nth-child(1),
  .rx-hero-title span:nth-child(2),
  .rx-hero-title span:nth-child(3) {
    transform: none;
  }

  .rx-hero-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .rx-hero-beat-section {
    padding: 108px 16px 56px;
    min-height: 74vh;
  }

  .rx-hero-shell {
    width: min(var(--rx-shell-width), calc(100vw - 32px));
  }

  .rx-hero-kicker {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
  }

  .rx-hero-beat-stage {
    min-height: 280px;
  }

  .rx-heart-lines {
    height: 160px;
  }

  .rx-hero-title span:nth-child(1),
  .rx-hero-title span:nth-child(2),
  .rx-hero-title span:nth-child(3) {
    font-size: clamp(2.9rem, 13vw, 4.25rem);
  }

  .rx-hero-primary-btn {
    width: 100%;
    min-width: 100%;
  }
}