/* ============================================
   PROJEKT: site25-de | DemenEses.com | Deutschland
   CSS-ARCHITEKTUR: BEM (Block Element Modifier)
   PALETTE: Luxury (luxury-gold, velvet-black, diamond-white, royal-purple)
   EFFEKT: Glassmorphism
   TYPOGRAFIE: Merriweather + Source Sans Pro
   BUTTONS: Outline Morph
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@600;700&family=Source+Sans+Pro:wght@400;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; max-width: 100%; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; overflow-x: hidden !important; width: 100% !important; }

:root {
  --header-height: 70px;
  --luxury-gold: #d4af37;
  --velvet-black: #1c1c1c;
  --diamond-white: #f8f8ff;
  --royal-purple: #6a0dad;
  --platinum-silver: #e5e4e2;
  --silk-cream: #fffdd0;
  --font-heading: 'Merriweather', serif;
  --font-body: 'Source Sans Pro', sans-serif;
}

@media (max-width: 600px) {
  :root { --header-height: 60px; }
}

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--velvet-black);
  background: linear-gradient(135deg, var(--silk-cream) 0%, var(--platinum-silver) 50%, var(--diamond-white) 100%);
  line-height: 1.6;
}

main { text-align: center; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: linear-gradient(180deg, var(--velvet-black) 0%, #2a2a2a 100%);
  color: var(--diamond-white);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}
.site-header__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--diamond-white);
  text-decoration: none;
}
.site-header__badge {
  display: inline-block;
  background: var(--luxury-gold);
  color: var(--velvet-black);
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 8px;
  margin-left: 6px;
  font-weight: 600;
}
.site-header__burger {
  display: none;
  background: transparent;
  border: none;
  color: var(--diamond-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
}
@media (max-width: 768px) {
  .site-header__burger { display: block; }
}
.site-header__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 1200px;
  justify-content: flex-start;
}
.site-header__menu a {
  color: var(--diamond-white);
  text-decoration: none;
  font-weight: 500;
}
.site-header__menu a:hover { color: var(--luxury-gold); }
@media (max-width: 768px) {
  .site-header__nav {
    display: none;
    position: fixed;
    top: calc(var(--header-height) - 1px);
    left: 0;
    right: 0;
    background: var(--velvet-black);
    padding: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    z-index: 999;
  }
  .site-header__nav.is-open { display: block; }
  .site-header__menu { flex-direction: column; gap: 0.5rem; }
}

/* Hero — как остальные блоки: padding в rem, шрифты по ширине экрана, без nowrap */
.hero-section {
  padding: 120px 1rem 2rem;
  min-height: calc(100vh - var(--header-height));
  background: linear-gradient(135deg, var(--velvet-black) 0%, var(--royal-purple) 50%, var(--velvet-black) 100%);
  background-attachment: scroll;
  color: var(--diamond-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
}
@media (max-width: 768px) {
  .hero-section { padding-top: 100px; padding-left: 1rem; padding-right: 1rem; min-height: calc(100vh - 60px); }
}
.hero-section__inner {
  max-width: 600px;
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  padding: 1.28rem 0;
  box-sizing: border-box;
}
.hero-section__label {
  display: inline-block;
  background: var(--luxury-gold);
  color: var(--velvet-black);
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero-section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 1rem + 2.5vw, 2.5rem);
  margin: 0 0 0.75rem;
  line-height: 1.25;
  overflow-wrap: break-word;
  word-break: break-word;
}
.hero-section__sub {
  font-size: clamp(0.9rem, 0.5rem + 1.5vw, 1.15rem);
  margin: 0 0 1.5rem;
  opacity: 0.95;
  line-height: 1.5;
  overflow-wrap: break-word;
  word-break: break-word;
}
.hero-section__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .hero-section__buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-section__buttons .btn {
    width: 100%;
    max-width: 280px;
    box-sizing: border-box;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--luxury-gold);
  color: var(--velvet-black);
  border-color: var(--luxury-gold);
}
.btn--primary:hover {
  background: #c9a227;
  border-color: #c9a227;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}
.btn--secondary {
  background: transparent;
  color: var(--diamond-white);
  border-color: var(--diamond-white);
}
.btn--secondary:hover { background: rgba(255,255,255,0.1); }
.btn--outline {
  background: transparent;
  color: var(--velvet-black);
  border-color: var(--velvet-black);
}
.btn--outline:hover {
  background: var(--velvet-black);
  color: var(--diamond-white);
  border-color: var(--velvet-black);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
/* Кнопка outline для темного фона (hero-секция) */
.hero-section .btn--outline {
  color: var(--diamond-white);
  border-color: var(--luxury-gold);
}
.hero-section .btn--outline:hover {
  background: var(--luxury-gold);
  color: var(--velvet-black);
  border-color: var(--luxury-gold);
}

/* Section title */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 1.28rem;
  color: var(--velvet-black);
}

/* Benefits - Glassmorphism */
.benefits-section {
  padding: 2.56rem 1.5rem 2.18rem;
  max-width: 1200px;
  margin: 0 auto;
}
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
}
.benefit-card {
  flex: 0 1 300px;
  max-width: 350px;
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
}
.benefit-card--glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.benefit-card__icon { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.benefit-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: var(--velvet-black);
}
.benefit-card__text { margin: 0; color: #333; }

/* Games grid */
.games-section {
  padding: 2.56rem 1.5rem 2.18rem;
  max-width: 1200px;
  margin: 0 auto;
}
.games-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.game-card {
  flex: 0 0 auto;
  width: clamp(280px, 25vw, 350px);
  max-width: 350px;
  min-width: 280px;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.game-card--glass {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.game-card__image-wrap {
  padding: 1rem;
  background: rgba(0,0,0,0.05);
  flex-shrink: 0;
}
.game-card__image {
  width: 256px;
  height: 256px;
  object-fit: contain;
  border-radius: 12px;
}
.game-card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.game-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: var(--velvet-black);
}
.game-card__desc {
  margin: 0 0 0.85rem;
  color: #444;
  font-size: 0.95rem;
  min-height: 4.25em;
  flex: 1;
}
.game-card__cta { margin-top: auto; }
.game-card__cta .btn { width: 100%; text-align: center; }
@media (max-width: 768px) {
  .games-grid { flex-direction: column; align-items: center; }
  .game-card { width: 100%; max-width: 400px; }
}

/* FAQ */
.faq-section {
  padding: 2.56rem 1.5rem 2.18rem;
  max-width: 700px;
  margin: 0 auto;
}
.faq-list { text-align: left; }
.faq-item {
  border: 1px solid var(--platinum-silver);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--diamond-white);
}
.faq-item__question {
  width: 100%;
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--velvet-black);
}
.faq-item__question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--luxury-gold);
}
.faq-item.is-open .faq-item__question::after { content: '−'; }
.faq-item__answer {
  padding: 0 1.25rem 1rem;
  display: none;
  color: #555;
  line-height: 1.6;
}
.faq-item.is-open .faq-item__answer { display: block; }

/* Disclaimer */
.disclaimer-section {
  padding: 2rem 1.5rem 1.7rem;
  background: linear-gradient(135deg, var(--royal-purple) 0%, var(--velvet-black) 100%);
  color: var(--diamond-white);
  margin-top: 1.28rem;
}
.disclaimer-section__inner { max-width: 800px; margin: 0 auto; text-align: center; }
.disclaimer-section__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin: 0 0 1rem;
}
.disclaimer-section__text { margin: 0 0 0.85rem; opacity: 0.95; }
.disclaimer-section__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}
.disclaimer-section__badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Footer */
.site-footer {
  padding: 2rem 1.5rem 1.28rem;
  background: var(--velvet-black);
  color: var(--platinum-silver);
  text-align: center;
}
.site-footer__free {
  font-weight: 700;
  color: var(--luxury-gold);
  margin: 0 0 1.28rem;
  font-size: 0.95rem;
  text-align: center;
}
.site-footer__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 1.7rem;
  text-align: left;
}
.site-footer__about { flex: 1 1 260px; }
.site-footer__name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--diamond-white);
  margin: 0 0 0.25rem;
}
.site-footer__intro { margin: 0 0 0.75rem; font-size: 0.9rem; }
.site-footer__label { font-size: 0.8rem; text-transform: uppercase; margin: 0 0 0.25rem; opacity: 0.8; }
.site-footer__address {
  font-style: normal;
  display: block;
}
.site-footer__company,
.site-footer__street,
.site-footer__city { display: block; margin: 0.15rem 0; }
.site-footer__heading {
  font-size: 1rem;
  margin: 0 0 0.75rem;
  color: var(--diamond-white);
}
.site-footer__list { list-style: none; margin: 0; padding: 0; }
.site-footer__list a { color: var(--platinum-silver); text-decoration: none; }
.site-footer__list a:hover { color: var(--luxury-gold); }
.site-footer__list li { margin: 0.35rem 0; }
.site-footer__compliance {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.28rem;
}
.site-footer__logo-img {
  height: 35px !important;
  width: auto !important;
  max-width: 120px !important;
  background: rgba(255,255,255,0.95);
  padding: 8px;
  border-radius: 8px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
.site-footer__logo-img:hover { opacity: 1; }
.site-footer__legal { font-size: 0.85rem; opacity: 0.9; }
.site-footer__legal-line { margin: 0.25rem 0; }
.site-footer__legal a { color: var(--luxury-gold); }

/* Modals */
.age-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1rem;
}
.age-modal[aria-hidden="true"] { display: none; }
.age-modal__content {
  background: var(--diamond-white);
  border-radius: 16px;
  padding: 2rem;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border: 2px solid var(--luxury-gold);
}
.age-modal__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin: 0 0 1rem;
  color: var(--velvet-black);
}
.age-modal__body p { margin: 0.5rem 0; color: #333; }
.age-modal__buttons {
  display: flex;
  gap: 0.75rem;
  margin: 1.25rem 0;
  flex-wrap: wrap;
}
/* Кнопки в модалке возраста: контраст на светлом фоне */
.age-modal .btn--primary {
  background: var(--luxury-gold);
  color: var(--velvet-black);
  border-color: var(--luxury-gold);
}
.age-modal .btn--secondary {
  background: #444;
  color: #fff;
  border-color: #444;
}
.age-modal .btn--secondary:hover {
  background: #333;
  border-color: #333;
  color: #fff;
}
.age-modal__warning { font-size: 0.85rem; color: #666; margin-top: 1rem !important; }

.cookie-consent {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 350px;
  z-index: 9999;
  padding: 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--velvet-black) 0%, #2a2a2a 100%);
  border: 2px solid var(--luxury-gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.cookie-consent[aria-hidden="true"] { display: none; }
.cookie-consent__box { display: flex; flex-direction: column; gap: 0.75rem; }
.cookie-consent__text { margin: 0; color: var(--diamond-white); font-size: 0.9rem; }
.cookie-consent__box .btn { align-self: flex-start; }
@media (max-width: 480px) {
  .cookie-consent { left: 10px; right: 10px; bottom: 10px; max-width: none; }
}

/* Inner pages */
.page-hero {
  padding-top: calc(var(--header-height) + 1.28rem);
  padding-bottom: 1.09rem;
  background: linear-gradient(135deg, var(--velvet-black) 0%, var(--royal-purple) 100%);
  color: var(--diamond-white);
  text-align: center;
}
.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0;
}
.content-area {
  padding: 1.6rem 1.5rem 1.36rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.content-area h2,
.content-area__subtitle {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin: 0 0 1rem;
  color: var(--velvet-black);
}
.content-area__lead { margin: 0 0 1.2rem; font-size: 1.05rem; color: #444; }
.content-area p { margin: 0 0 0.85rem; color: #333; line-height: 1.6; }
.content-area__actions {
  margin: 1.25rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.content-area a { color: var(--royal-purple); }
.content-area a:hover { color: var(--luxury-gold); }

/* Anleitungen / Guides list – три карточки в одну строку на десктопе */
.guides-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}
.guides-list .blog-list__item {
  flex: 1 1 280px;
  max-width: 400px;
}
@media (min-width: 900px) {
  .guides-list {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
  .guides-list .blog-list__item {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 260px;
    max-width: calc(33.333% - 0.5rem);
  }
}
.guides-list .benefit-card--glass {
  height: 100%;
  text-align: left;
  padding: 1.5rem;
}
.guides-list .benefit-card__title { margin-bottom: 0.5rem; }
.guides-list .benefit-card__text { margin-bottom: 1rem; }

/* Anleitungen – сплошной текст по пунктам */
.guide-text .guide-text__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 1.6rem 0 0.6rem;
  color: var(--velvet-black);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--platinum-silver);
}
.guide-text .guide-text__title:first-of-type { margin-top: 0; }
.guide-text p { margin: 0 0 0.85rem; }

/* Blog list */
.blog-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}
.blog-list__item {
  flex: 1 1 280px;
  max-width: 400px;
}
.blog-list .benefit-card--glass {
  height: 100%;
  text-align: left;
  padding: 1.5rem;
}
.blog-list .benefit-card__title { margin-bottom: 0.5rem; }
.blog-list .benefit-card__text { margin-bottom: 1rem; }

/* Verantwortungsvoll / Responsible play content */
.resp-intro { margin-bottom: 1.2rem; }
.resp-section {
  margin-bottom: 1.36rem;
}
.resp-section__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 0 0 0.85rem;
  color: var(--velvet-black);
}
.resp-help-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.resp-help-list__item {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.resp-help-link {
  color: var(--royal-purple);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}
.resp-help-link:hover {
  color: var(--luxury-gold);
  text-decoration: underline;
}
.resp-tips {
  margin-top: 1.2rem;
  padding: 1.25rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 12px;
  border-left: 4px solid var(--luxury-gold);
}
.resp-tips__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin: 0 0 0.64rem;
  color: var(--velvet-black);
}
.resp-tips ul { margin: 0; padding-left: 1.25rem; color: #444; }
.resp-tips li { margin-bottom: 0.35rem; }

/* Bewertungen / Reviews grid */
/* Bewertungen – блок заголовка перед играми */
.reviews-header {
  margin-bottom: 1.6rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.reviews-header .reviews-header__title,
.reviews-header .reviews-header__sub {
  text-align: center;
}
.reviews-header__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.6rem;
  color: var(--velvet-black);
  width: 100%;
}
.reviews-header__sub {
  width: 100%;
  max-width: 560px;
  margin: 0;
  color: #555;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.5;
  text-align: center;
}

/* Bewertungen: весь текст по центру и в едином стиле */
.content-area--reviews {
  text-align: center;
}
.content-area--reviews .content-area__lead,
.content-area--reviews .content-area p,
.content-area--reviews .reviews-header__sub,
.content-area--reviews .review-card__text {
  color: #444;
  font-size: 1.365rem;
  line-height: 1.6;
}
.content-area--reviews .reviews-header__title,
.content-area--reviews .review-card__title {
  color: var(--velvet-black);
}
.content-area--reviews .content-area__lead:first-of-type {
  margin-bottom: 1.56rem;
}
.content-area--reviews .reviews-grid + .content-area__lead {
  margin-top: 1.56rem;
}

.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 900px) {
  .reviews-grid {
    flex-wrap: nowrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}
.reviews-grid__item {
  flex: 0 1 300px;
  max-width: 350px;
}
@media (min-width: 900px) {
  .reviews-grid__item {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }
}
.review-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  overflow: hidden;
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.review-card__img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 12px;
  margin: 0 auto 1rem;
  background: rgba(0,0,0,0.05);
}
.review-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: var(--velvet-black);
}
.review-card__text {
  margin: 0 0 0.85rem;
  color: #444;
  font-size: 0.95rem;
  flex: 1;
}
.review-card__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.review-card__buttons .btn { flex: 1; min-width: 120px; }
.review-card .btn--outline {
  color: var(--velvet-black);
  border-color: var(--velvet-black);
  background: transparent;
}
.review-card .btn--outline:hover {
  background: var(--velvet-black);
  color: var(--diamond-white);
}

/* Account page */
.account-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .account-grid { grid-template-columns: 1fr 1fr; }
}
.account-contact p { margin: 0.5rem 0; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; margin-bottom: 0.35rem; font-weight: 600; color: var(--velvet-black); }
.form-input {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--platinum-silver);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
}
.form-input:focus { outline: 2px solid var(--luxury-gold); outline-offset: 2px; }
.account-note { font-size: 0.9rem; color: #555; margin-top: 1rem !important; }
.account-note strong { color: var(--velvet-black); }
