: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;
  }
}
