/* SugarBabySchweiz — Zurich Precision Theme */
/* Class prefix: zrh- */

:root {
  --zrh-precision: #D52B1E;
  --zrh-precision-dark: #A81E15;
  --zrh-alpine: #FFFFFF;
  --zrh-vault: #1A1A18;
  --zrh-cream: #FAFAF8;
  --zrh-gray-50: #F7F7F5;
  --zrh-gray-100: #EDEDEB;
  --zrh-gray-200: #D4D4D0;
  --zrh-gray-300: #A3A39E;
  --zrh-gray-600: #52524E;
  --zrh-gray-800: #2A2A28;
  --zrh-gray-900: #1A1A18;
  --zrh-gold: #C5A55A;
  --zrh-gold-light: #D4BA7A;
  --zrh-serif: 'Georgia', 'Times New Roman', serif;
  --zrh-sans: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  --zrh-mono: 'SFMono-Regular', 'Menlo', monospace;
  --zrh-max-width: 72rem;
  --zrh-transition: 0.2s ease;
}

/* === Reset overrides === */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--zrh-sans);
  color: var(--zrh-gray-800);
  background: var(--zrh-alpine);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--zrh-serif);
  color: var(--zrh-gray-900);
  font-weight: 400;
  letter-spacing: -0.02em;
}

h1 { font-size: 3.2rem; line-height: 1.15; margin-bottom: 1.6rem; }
h2 { font-size: 2.6rem; line-height: 1.2; margin-bottom: 1.4rem; margin-top: 3.6rem; }
h3 { font-size: 2.0rem; line-height: 1.3; margin-bottom: 1.2rem; margin-top: 2.8rem; }
h4 { font-size: 1.7rem; line-height: 1.35; }

p {
  margin-bottom: 1.8rem;
  max-width: 65ch;
}

a {
  color: var(--zrh-precision);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--zrh-transition);
}

a:hover, a:focus {
  color: var(--zrh-precision-dark);
  border-bottom-color: var(--zrh-precision-dark);
}

blockquote {
  border-left: 3px solid var(--zrh-precision);
  padding: 1.2rem 2rem;
  margin: 2.4rem 0;
  background: var(--zrh-gray-50);
  font-style: italic;
  font-family: var(--zrh-serif);
  color: var(--zrh-gray-600);
}

blockquote footer {
  font-style: normal;
  font-family: var(--zrh-sans);
  font-size: 1.2rem;
  color: var(--zrh-gray-300);
  margin-top: 0.8rem;
}

hr {
  border: 0;
  border-top: 1px solid var(--zrh-gray-100);
  margin: 3.2rem 0;
}

ul, ol {
  padding-left: 2rem;
}

ul li, ol li {
  margin-bottom: 0.6rem;
  max-width: 65ch;
}

/* === Signature markers === */
ins.zrh-updated {
  text-decoration: none;
  background: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--zrh-precision);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

del.zrh-outdated {
  text-decoration: line-through;
  color: var(--zrh-gray-300);
  font-size: 1.1rem;
}

/* === Layout === */
.zrh-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* === Presentation list nesting === */
ul[role="presentation"] {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul[role="presentation"] > li {
  margin-bottom: 0;
}

/* === Site header / nav bar === */
.zrh-header {
  background: var(--zrh-vault);
  border-bottom: 3px solid var(--zrh-precision);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.zrh-header-inner {
  max-width: var(--zrh-max-width);
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.zrh-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  border-bottom: none;
}

.zrh-logo-icon {
  width: 32px;
  height: 32px;
}

.zrh-logo-text {
  font-family: var(--zrh-sans);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--zrh-alpine);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.zrh-logo:hover .zrh-logo-text {
  color: var(--zrh-gold);
}

.zrh-nav {
  display: flex;
  gap: 0;
}

.zrh-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--zrh-alpine);
  font-size: 2.4rem;
  cursor: pointer;
  padding: 0.4rem;
  height: auto;
  line-height: 1;
}

.zrh-nav a {
  color: var(--zrh-gray-200);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  border-bottom: 2px solid transparent;
  transition: color var(--zrh-transition), border-color var(--zrh-transition);
}

.zrh-nav a:hover,
.zrh-nav a.zrh-active {
  color: var(--zrh-alpine);
  border-bottom-color: var(--zrh-precision);
}

/* === Main content === */
.zrh-main {
  flex: 1;
  max-width: var(--zrh-max-width);
  margin: 0 auto;
  padding: 3.6rem 2rem 4.8rem;
  width: 100%;
}

/* === Hero (header element) === */
.zrh-hero {
  background: linear-gradient(135deg, var(--zrh-vault) 0%, #3a1a1a 100%);
  padding: 5.6rem 2rem;
  text-align: center;
  border-bottom: 3px solid var(--zrh-precision);
}

.zrh-hero-inner {
  max-width: var(--zrh-max-width);
  margin: 0 auto;
}

.zrh-hero h1 {
  color: var(--zrh-alpine);
  font-size: 3.6rem;
  margin-bottom: 1.2rem;
}

.zrh-hero-sub {
  color: var(--zrh-gray-200);
  font-size: 1.6rem;
  font-family: var(--zrh-serif);
  font-style: italic;
  margin-bottom: 2.4rem;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

.zrh-hero-cta {
  display: inline-block;
  background: var(--zrh-precision);
  color: var(--zrh-alpine) !important;
  border: 2px solid var(--zrh-precision);
  padding: 1rem 3.2rem;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--zrh-transition), border-color var(--zrh-transition);
}

.zrh-hero-cta:hover {
  background: var(--zrh-precision-dark);
  border-color: var(--zrh-precision-dark);
  border-bottom-color: var(--zrh-precision-dark);
  color: var(--zrh-alpine) !important;
}

/* === Testimonials (blockquote) === */
.zrh-testimonials {
  margin-bottom: 4rem;
}

.zrh-testimonials h2 {
  font-size: 2.4rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--zrh-gray-100);
  margin-bottom: 2rem;
}

.zrh-testimonials .row {
  margin-bottom: 2.4rem;
}

.zrh-testimonials blockquote {
  margin: 0;
  height: 100%;
}

/* === Cities (dl definition list) === */
.zrh-cities {
  margin-bottom: 4rem;
}

.zrh-cities h2 {
  font-size: 2.4rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--zrh-gray-100);
  margin-bottom: 2rem;
}

.zrh-cities dl {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(28rem, 1fr));
  gap: 2.4rem;
  margin: 0;
}

.zrh-cities dt {
  font-family: var(--zrh-serif);
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.zrh-cities dt a {
  color: var(--zrh-gray-900);
  border-bottom: none;
}

.zrh-cities dt a:hover {
  color: var(--zrh-precision);
}

.zrh-cities dd {
  margin-left: 0;
  color: var(--zrh-gray-600);
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--zrh-gray-100);
}

/* === Sugar Daddy aside === */
.zrh-sugar-daddy {
  background: var(--zrh-gray-50);
  border-left: 3px solid var(--zrh-gold);
  padding: 2.4rem 3.2rem;
  margin-bottom: 4rem;
  border-radius: 0 2px 2px 0;
}

.zrh-sugar-daddy h2 {
  margin-top: 0;
  font-size: 2.4rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--zrh-gray-100);
  margin-bottom: 1.6rem;
}

.zrh-sugar-daddy p {
  color: var(--zrh-gray-600);
  font-size: 1.4rem;
  line-height: 1.7;
}

/* === Blog nav === */
.zrh-blog {
  margin-bottom: 4rem;
}

.zrh-blog h2 {
  font-size: 2.4rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--zrh-gray-100);
  margin-bottom: 2rem;
}

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

.zrh-blog-list a {
  display: block;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--zrh-gray-100);
  color: var(--zrh-gray-900);
}

.zrh-blog-list a:hover {
  color: var(--zrh-precision);
}

.zrh-blog-list span {
  display: block;
  font-size: 1.3rem;
  color: var(--zrh-gray-300);
  margin-top: 0.2rem;
}

/* === Card grid (Milligram columns) === */
.zrh-card {
  background: var(--zrh-alpine);
  border: 1px solid var(--zrh-gray-100);
  border-radius: 2px;
  padding: 2.4rem;
  transition: box-shadow var(--zrh-transition), border-color var(--zrh-transition);
}

.zrh-card:hover {
  border-color: var(--zrh-gray-200);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.zrh-card h3 {
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.zrh-card h3 a {
  color: var(--zrh-gray-900);
  border-bottom: none;
}

.zrh-card h3 a:hover {
  color: var(--zrh-precision);
}

.zrh-card p {
  color: var(--zrh-gray-600);
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.zrh-card-tag {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--zrh-precision);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}

/* === Sections === */
.zrh-section {
  margin-bottom: 4rem;
}

.zrh-section-title {
  font-size: 2.4rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--zrh-gray-100);
  margin-bottom: 2rem;
}

.zrh-divider {
  width: 4rem;
  height: 3px;
  background: var(--zrh-precision);
  border: none;
  margin: 3.2rem 0;
}

/* === Why Switzerland (details open) === */
.zrh-why-ch {
  margin-bottom: 4rem;
}

.zrh-why-ch > summary {
  font-family: var(--zrh-serif);
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--zrh-gray-900);
  cursor: pointer;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--zrh-gray-100);
  margin-bottom: 2rem;
  list-style: none;
}

.zrh-why-ch > summary::-webkit-details-marker {
  display: none;
}

.zrh-why-ch-body {
  columns: 2;
  column-gap: 3.2rem;
}

.zrh-why-ch-body p {
  color: var(--zrh-gray-600);
  font-size: 1.4rem;
  line-height: 1.7;
  break-inside: avoid;
}

/* === Sidebar-style info box === */
.zrh-infobox {
  background: var(--zrh-gray-50);
  border-left: 3px solid var(--zrh-gold);
  padding: 2rem 2.4rem;
  margin: 2.8rem 0;
  border-radius: 0 2px 2px 0;
}

.zrh-infobox-title {
  font-family: var(--zrh-sans);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--zrh-gray-600);
  margin-bottom: 0.8rem;
}

/* === CTA banner === */
.zrh-cta-banner {
  background: var(--zrh-vault);
  border-left: 4px solid var(--zrh-precision);
  padding: 2.8rem 3.2rem;
  margin: 3.6rem 0;
  border-radius: 0 2px 2px 0;
}

.zrh-cta-banner p {
  color: var(--zrh-gray-200);
  margin-bottom: 1.6rem;
  font-size: 1.5rem;
  max-width: none;
}

.zrh-cta-banner a.button {
  background: var(--zrh-precision);
  border-color: var(--zrh-precision);
  border-radius: 2px;
  font-size: 1.1rem;
}

.zrh-cta-banner a.button:hover {
  background: var(--zrh-precision-dark);
  border-color: var(--zrh-precision-dark);
}

/* === Table === */
.zrh-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.zrh-table th {
  background: var(--zrh-gray-50);
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--zrh-gray-600);
  text-align: left;
  padding: 1rem 1.4rem;
  border-bottom: 2px solid var(--zrh-gray-200);
}

.zrh-table td {
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--zrh-gray-100);
  font-size: 1.4rem;
}

.zrh-table tr:hover td {
  background: var(--zrh-gray-50);
}

/* === Footer === */
.zrh-footer {
  background: var(--zrh-vault);
  border-top: 3px solid var(--zrh-precision);
  padding: 3.6rem 2rem 2.4rem;
  margin-top: auto;
}

.zrh-footer-inner {
  max-width: var(--zrh-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3.2rem;
}

.zrh-footer h4 {
  color: var(--zrh-alpine);
  font-family: var(--zrh-sans);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.2rem;
}

.zrh-footer p,
.zrh-footer li {
  color: var(--zrh-gray-300);
  font-size: 1.3rem;
  line-height: 1.6;
}

.zrh-footer a {
  color: var(--zrh-gray-200);
  border-bottom: none;
}

.zrh-footer a:hover {
  color: var(--zrh-alpine);
}

.zrh-footer ul {
  list-style: none;
  padding: 0;
}

.zrh-footer ul li {
  margin-bottom: 0.5rem;
}

.zrh-footer-bottom {
  max-width: var(--zrh-max-width);
  margin: 2.4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: var(--zrh-gray-300);
  font-size: 1.2rem;
}

/* === Breadcrumbs === */
.zrh-breadcrumbs {
  font-size: 1.2rem;
  color: var(--zrh-gray-300);
  margin-bottom: 2.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--zrh-gray-100);
}

.zrh-breadcrumbs a {
  color: var(--zrh-gray-600);
  border-bottom: none;
}

.zrh-breadcrumbs a:hover {
  color: var(--zrh-precision);
}

.zrh-breadcrumbs span {
  margin: 0 0.5rem;
  color: var(--zrh-gray-200);
}

/* === Article meta === */
.zrh-meta {
  font-size: 1.2rem;
  color: var(--zrh-gray-300);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}

/* === Swiss cross decoration === */
.zrh-cross {
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  position: relative;
  vertical-align: middle;
  margin-right: 0.4rem;
}

.zrh-cross::before,
.zrh-cross::after {
  content: '';
  position: absolute;
  background: var(--zrh-precision);
}

.zrh-cross::before {
  width: 40%;
  height: 100%;
  left: 30%;
  top: 0;
}

.zrh-cross::after {
  width: 100%;
  height: 40%;
  top: 30%;
  left: 0;
}

/* === FAQ schema accordion === */
.zrh-faq {
  margin: 3rem 0;
}

.zrh-faq details {
  border: 1px solid var(--zrh-gray-100);
  border-radius: 2px;
  margin-bottom: -1px;
  padding: 0;
}

.zrh-faq details[open] {
  border-color: var(--zrh-gray-200);
}

.zrh-faq summary {
  padding: 1.4rem 2rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--zrh-gray-800);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.zrh-faq summary::after {
  content: '+';
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--zrh-precision);
  transition: transform var(--zrh-transition);
}

.zrh-faq details[open] summary::after {
  content: '\2212';
}

.zrh-faq .zrh-faq-answer {
  padding: 0 2rem 1.6rem;
  color: var(--zrh-gray-600);
}

/* === Responsive === */
@media (max-width: 64rem) {
  .zrh-hero h1 {
    font-size: 2.8rem;
  }

  h1 { font-size: 2.6rem; }
  h2 { font-size: 2.2rem; }

  .zrh-why-ch-body {
    columns: 1;
  }
}

@media (max-width: 48rem) {
  .zrh-header-inner {
    flex-wrap: wrap;
  }

  .zrh-nav-toggle {
    display: block;
  }

  .zrh-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    padding-top: 1rem;
  }

  .zrh-nav.zrh-nav-open {
    display: flex;
  }

  .zrh-nav a {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .zrh-footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .zrh-hero {
    padding: 3.6rem 1.6rem;
  }

  .zrh-hero h1 {
    font-size: 2.4rem;
  }

  .zrh-cities dl {
    grid-template-columns: 1fr;
  }

  .zrh-main {
    padding: 2.4rem 1.6rem 3.6rem;
  }

  .zrh-why-ch-body {
    columns: 1;
  }
}

/* === Print === */
@media print {
  .zrh-header, .zrh-footer, .zrh-nav, .zrh-cta-banner {
    display: none;
  }

  .zrh-main {
    max-width: 100%;
    padding: 0;
  }

  body {
    color: #000;
    font-size: 12pt;
  }
}
