/*
Theme Name: Relaxed Mate
Description: Private male relaxation massage studio — dark editorial design with Customizer-driven content.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GPL v2 or later
Text Domain: relaxed-mate
*/

/* === TOKENS — single dark theme === */
:root {
  --bg:          #0b0906;
  --surface:     #131008;
  --border:      #2c2218;
  --border-dim:  #1e1912;
  --gold:        #c49a5a;
  --gold-dim:    rgba(196,154,90,0.13);
  --gold-faint:  rgba(196,154,90,0.05);
  --text:        #ece3d6;
  --text-muted:  #7c6d5e;
  --text-faint:  #4a3d2e;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --r-sm: 3px;
  --r:    7px;
  --max:  1080px;
  --side: clamp(1.25rem, 5vw, 4.5rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === LAYOUT === */
.rm-wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--side);
}

/* === NAV === */
#rm-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 1.2rem var(--side);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s;
}
#rm-nav.stuck {
  background: rgba(11,9,6,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: var(--border);
}
.rm-logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}
.rm-logo b { color: var(--gold); font-weight: 400; }

.rm-nav-items {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.rm-nav-items a {
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.rm-nav-items a:hover { color: var(--text); }
.rm-nav-book {
  padding: 0.48rem 1.25rem;
  background: var(--gold);
  color: var(--bg) !important;
  border-radius: var(--r-sm);
}
.rm-nav-book:hover { opacity: 0.84; }

.rm-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
  position: relative;
}
.rm-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
}

/* === HERO === */
.rm-hero {
  min-height: 100dvh;
  display: grid;
  align-items: end;
  padding-block: 7rem clamp(4rem, 9vh, 7rem);
  padding-inline: var(--side);
  max-width: var(--max);
  margin-inline: auto;
  position: relative;
}
.rm-hero-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.rm-hero-bg::after {
  content: 'M';
  position: absolute;
  bottom: -0.15em;
  right: -0.03em;
  font-family: var(--font-display);
  font-size: clamp(14rem, 28vw, 26rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(196,154,90,0.07);
  user-select: none;
}
.rm-hero-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}
.rm-hero-label::before {
  content: '';
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.rm-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 10vw, 8.5rem);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.rm-hero h1 em { font-style: italic; color: var(--gold); }

.rm-hero-sub {
  margin-top: 2.5rem;
  max-width: 40ch;
  font-size: clamp(0.93rem, 1.5vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.75;
}
.rm-hero-actions {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* === BUTTONS === */
.rm-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--r-sm);
  transition: opacity 0.2s;
  cursor: pointer;
  border: none;
}
.rm-btn-gold { background: var(--gold); color: var(--bg); }
.rm-btn-gold:hover { opacity: 0.86; }
.rm-btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding-inline: 0;
  letter-spacing: 0.08em;
}
.rm-btn-ghost:hover { color: var(--text); opacity: 1; }

/* === SECTIONS === */
.rm-section { padding-block: clamp(5rem, 10vh, 8rem); }

/* Offset anchor targets so the fixed nav doesn't cover section headings */
#rm-services,
#rm-about,
#rm-faq,
#rm-contact { scroll-margin-top: 80px; }

.rm-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.rm-eyebrow::after {
  content: '';
  display: block;
  width: 3rem;
  height: 1px;
  background: var(--border);
}

.rm-h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.rm-h2 em { font-style: italic; }

/* === SERVICES === */
#rm-services { border-top: 1px solid var(--border); }

.rm-services-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
  margin-bottom: 3rem;
}
.rm-services-note {
  font-size: 0.83rem;
  color: var(--text-muted);
  max-width: 28ch;
  text-align: right;
  line-height: 1.5;
}
.rm-service-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 2rem;
  padding-block: 2.25rem;
  border-top: 1px solid var(--border);
}
.rm-service-row:last-child { border-bottom: 1px solid var(--border); }

.rm-service-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.5rem;
}
.rm-service-name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.rm-service-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 52ch;
  line-height: 1.7;
  margin-top: 0.25rem;
}
.rm-service-meta {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  flex-shrink: 0;
}
.rm-service-price {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.rm-service-duration {
  font-size: 0.75rem;
  color: var(--text-faint);
  letter-spacing: 0.06em;
}

/* === ABOUT === */
#rm-about {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.rm-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}
.rm-steps { list-style: none; margin-top: 3rem; }
.rm-step {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1.25rem;
  padding-block: 1.75rem;
  border-top: 1px solid var(--border);
  align-items: start;
}
.rm-step:last-child { border-bottom: 1px solid var(--border); }
.rm-step-dot {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--gold);
  font-size: 0.6rem;
}
.rm-step-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.rm-step-body {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.rm-pull-quote {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}
.rm-pull-quote q {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  line-height: 1.45;
  color: var(--text);
  display: block;
  margin-bottom: 0.9rem;
  quotes: none;
}
.rm-pull-quote cite {
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.rm-about-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.rm-privacy-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.6rem 1rem;
  background: var(--gold-faint);
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.rm-privacy-badge::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
}

/* === FAQ === */
#rm-faq { border-top: 1px solid var(--border); }
.rm-faq-cols {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}
.rm-faq-sticky { position: sticky; top: 6rem; }

.rm-faq-item { border-top: 1px solid var(--border); }
.rm-faq-item:last-child { border-bottom: 1px solid var(--border); }
.rm-faq-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 400;
  line-height: 1.4;
  transition: color 0.2s;
}
.rm-faq-btn:hover { color: var(--gold); }
.rm-faq-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: var(--r-sm); }

.rm-faq-cross {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.25s, background 0.25s;
}
.rm-faq-cross::before, .rm-faq-cross::after {
  content: '';
  position: absolute;
  background: var(--text-muted);
  transition: transform 0.3s, opacity 0.3s, background 0.25s;
}
.rm-faq-cross::before { width: 9px; height: 1px; }
.rm-faq-cross::after  { width: 1px; height: 9px; }
.rm-faq-item.open .rm-faq-cross { border-color: var(--gold); background: var(--gold-dim); }
.rm-faq-item.open .rm-faq-cross::before,
.rm-faq-item.open .rm-faq-cross::after { background: var(--gold); }
.rm-faq-item.open .rm-faq-cross::after { transform: scaleY(0); opacity: 0; }

.rm-faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.rm-faq-item.open .rm-faq-body { grid-template-rows: 1fr; }
.rm-faq-body-inner { overflow: hidden; }
.rm-faq-body-inner p {
  padding-bottom: 1.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.78;
  max-width: 58ch;
}

/* === CONTACT === */
#rm-contact {
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.rm-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}
.rm-contact-body {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 40ch;
  margin-top: 1.5rem;
}
.rm-tg-btn { margin-top: 2.25rem; }
.rm-tg-btn svg { width: 18px; height: 18px; fill: var(--bg); display: block; }

.rm-assurance {
  margin-top: 1.25rem;
  font-size: 0.73rem;
  color: var(--text-faint);
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.rm-details-list { display: flex; flex-direction: column; margin-top: 0.5rem; }
.rm-detail-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-block: 1.25rem;
  border-top: 1px solid var(--border);
}
.rm-detail-row:first-child { border-top: none; padding-top: 0; }
.rm-detail-label {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.rm-detail-value {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.rm-detail-value a { color: var(--gold); text-decoration: none; }
.rm-detail-value a:hover { text-decoration: underline; }

/* === FOOTER === */
#rm-footer {
  padding-block: 2.25rem;
  border-top: 1px solid var(--border-dim);
}
.rm-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.rm-footer-copy { font-size: 0.73rem; color: var(--text-faint); }
.rm-footer-links { display: flex; gap: 1.5rem; list-style: none; }
.rm-footer-links a {
  font-size: 0.73rem;
  color: var(--text-faint);
  text-decoration: none;
  transition: color 0.2s;
}
.rm-footer-links a:hover { color: var(--text-muted); }

/* === FLOATING TELEGRAM === */
.rm-float-tg {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.2rem;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-decoration: none;
  border-radius: 2rem;
  box-shadow: 0 6px 24px rgba(0,0,0,0.45);
  transition: opacity 0.2s, transform 0.2s;
}
.rm-float-tg:hover { opacity: 0.88; transform: translateY(-2px); }
.rm-float-tg svg { width: 15px; height: 15px; fill: var(--bg); flex-shrink: 0; }

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

/* ── CONTACT REDESIGN ────────────────────────────────────────────────────── */
.rm-contact-head { margin-bottom: 3rem; }

.rm-contact-card {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  border: 1px solid rgba(196,154,90,0.18);
  border-radius: 16px;
  overflow: hidden;
}

.rm-contact-via { padding: clamp(2rem, 4vw, 3.25rem); }
.rm-contact-via-tg   { background: var(--surface); }
.rm-contact-via-form { background: rgba(196,154,90,0.09); }

.rm-contact-or {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--surface);
  border-inline: 1px solid rgba(196,154,90,0.18);
}
.rm-contact-or-line {
  flex: 1;
  width: 1px;
  background: rgba(196,154,90,0.18);
}
.rm-contact-or span {
  font-size: 0.62rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-block: 0.85rem;
  font-family: var(--ff-ui);
}

.rm-tg-panel-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(196,154,90,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
}
.rm-tg-panel-icon svg { width: 26px; height: 26px; fill: var(--gold); display: block; }

.rm-via-label {
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-family: var(--ff-ui);
}

.rm-via-body {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 32ch;
  margin-bottom: 2rem;
}

.rm-tg-btn { display: inline-flex; align-items: center; }

.rm-contact-meta {
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.rm-meta-row {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.75rem;
  align-items: baseline;
}
.rm-meta-label {
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-family: var(--ff-ui);
}
.rm-meta-value { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; }
.rm-meta-value a { color: var(--gold); text-decoration: none; }
.rm-meta-value a:hover { text-decoration: underline; }

/* Form fields */
.rm-form-fields { margin-top: 1.5rem; }

.rm-field { margin-bottom: 1.6rem; }

.rm-field label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.6rem;
  font-family: var(--ff-ui);
}

.rm-optional { opacity: 0.5; font-size: 0.58rem; }

.rm-field input,
.rm-field select,
.rm-field textarea {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(196,154,90,0.22);
  color: var(--text);
  font-family: var(--ff-ui);
  font-size: 0.93rem;
  padding: 0.5rem 0;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
}

.rm-field input::placeholder,
.rm-field textarea::placeholder { color: rgba(236,227,214,0.22); }

.rm-field input:focus,
.rm-field select:focus,
.rm-field textarea:focus { border-bottom-color: var(--gold); }

.rm-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23c49a5a' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
}
.rm-field select option { background: #1a1510; color: var(--text); }

.rm-field textarea { resize: vertical; min-height: 68px; line-height: 1.6; }

.rm-form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
  letter-spacing: 0.08em;
}

.rm-form-foot {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-faint);
  margin-top: 0.85rem;
  letter-spacing: 0.04em;
}

.rm-form-error {
  background: rgba(220,60,60,0.1);
  border: 1px solid rgba(220,60,60,0.3);
  border-radius: 6px;
  color: #e88;
  font-size: 0.84rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
}

.rm-form-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
  padding-top: 1rem;
}
.rm-form-success-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(196,154,90,0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.rm-form-success h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text);
  margin: 0;
}
.rm-form-success p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* ── INSTAGRAM GRID ─────────────────────────────────────────────────────── */
.rm-instagram-section {
  border-top: 1px solid var(--border);
}

.rm-instagram-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.rm-instagram-handle {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.rm-instagram-handle:hover { color: var(--gold); }

.rm-instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  border-radius: var(--r);
  overflow: hidden;
}

.rm-ig-item {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--surface);
}

.rm-ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, opacity 0.3s;
}

.rm-ig-item:hover img {
  transform: scale(1.04);
  opacity: 0.55;
}

.rm-ig-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.rm-ig-item:hover .rm-ig-overlay { opacity: 1; }

.rm-ig-overlay p {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rm-ig-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.2s;
}
.rm-ig-play svg { width: 1rem; height: 1rem; fill: #fff; }
.rm-ig-item:hover .rm-ig-play { opacity: 0; }

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE — single block at end of file so it always wins the cascade
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Nav */
  .rm-hamburger { display: flex; }
  .rm-nav-items {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 99;
  }
  .rm-nav-items.open { display: flex; }
  .rm-nav-items a { font-size: 0.9rem; }

  /* Services */
  .rm-services-head { grid-template-columns: 1fr; }
  .rm-services-note { text-align: left; max-width: 100%; }
  .rm-service-row   { grid-template-columns: 1fr; }
  .rm-service-meta  { flex-direction: row; align-items: center; gap: 1rem; }

  /* About + FAQ */
  .rm-about-grid,
  .rm-faq-cols { grid-template-columns: 1fr; }
  .rm-faq-sticky { position: static; }

  /* Contact card — panels stack vertically */
  .rm-contact-card { grid-template-columns: 1fr; }
  .rm-contact-or {
    flex-direction: row;
    border-inline: none;
    border-block: 1px solid rgba(196,154,90,0.18);
    height: 44px;
  }
  .rm-contact-or-line { flex: 1; width: auto; height: 1px; }
  .rm-contact-or span { padding-block: 0; padding-inline: 1rem; }

  /* Instagram grid — 2 columns on mobile */
  .rm-instagram-grid { grid-template-columns: repeat(2, 1fr); }
}
