:root {
  /* Color Palette: Berlin Blueprint */
  --bg-color: #121212;
  --surface-color: #1e1e24;
  --primary-color: #e63946; /* Crimson Red */
  --secondary-color: #f1faee; /* Off White */
  --accent-color: #457b9d; /* Steel Blue */
  --text-color: #f4f4f4;
  --text-muted: #a0a0a0;
  --border-color: rgba(255, 255, 255, 0.1);
  --error-color: #ff4d4d;

  /* Typography */
  --font-heading: "Oswald", sans-serif;
  --font-body: "Merriweather", serif;

  /* Metrics */
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --drawer-width: 400px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.8;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}
.w-full {
  width: 100%;
}
.mt-4 {
  margin-top: 2rem;
}
.mt-5 {
  margin-top: 3rem;
}
.mb-5 {
  margin-bottom: 3rem;
}
.text-white {
  color: #ffffff !important;
}
.text-muted {
  color: var(--text-muted);
}
.bg-surface {
  background-color: var(--surface-color);
}
.bg-dark {
  background-color: #0a0a0a;
}
.border-bottom {
  border-bottom: 1px solid var(--border-color);
}
.max-w-800 {
  max-width: 800px;
  margin: 0 auto;
}

/* Typography */
.editorial-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.hero-display {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

.subtitle {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.lead-text {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
}
.btn-primary:hover {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--bg-color);
}

/* Header */
.blueprint-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.blueprint-header.scrolled {
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--border-color);
}

.header-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  height: 90px;
  max-width: 1400px;
  margin: 0 auto;
  transition: height 0.3s ease;
}

.blueprint-header.scrolled .header-grid {
  height: 70px;
}

.editorial-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--primary-color);
}
.editorial-logo svg {
  width: 40px;
  height: 40px;
}
.editorial-logo span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary-color);
  letter-spacing: 2px;
}

/* Burger */
.editorial-burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 24px;
  padding: 0;
}
.editorial-burger span {
  display: block;
  height: 2px;
  background-color: var(--secondary-color);
  transition: var(--transition);
}
.line-1 {
  width: 100%;
}
.line-2 {
  width: 70%;
  margin-left: auto;
}
.line-3 {
  width: 100%;
}
.editorial-burger:hover .line-2 {
  width: 100%;
}
.editorial-burger:hover span {
  background-color: var(--primary-color);
}

/* Navigation Drawer */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.side-navigation {
  position: fixed;
  top: 0;
  left: -var(--drawer-width);
  width: var(--drawer-width);
  height: 100vh;
  background: var(--surface-color);
  border-right: 1px solid var(--border-color);
  z-index: 2000;
  padding: 40px;
  display: none;
  flex-direction: column;
  overflow-y: auto;
  transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.side-navigation.open {
  display: flex;
  left: 0;
}

.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}
.nav-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.close-nav {
  color: var(--text-color);
  transition: var(--transition);
}
.close-nav:hover {
  color: var(--primary-color);
  transform: rotate(90deg);
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.nav-item {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
}
.nav-item:hover {
  color: var(--secondary-color);
  transform: translateX(10px);
}
.nav-cta-wrapper {
  margin-top: 40px;
}

/* Sections Global */
.content-body section:not(.hero-blueprint) {
  padding: 120px 0;
}

/* Hero */
.hero-blueprint {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  overflow: hidden;
}
.hero-image-wrapper {
  position: absolute;
  inset: 0;
  z-index: -3;
}
.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}
.hero-tint {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.85);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-container {
  position: relative;
  z-index: 1;
}
.hero-content-box {
  max-width: 800px;
  border-left: 4px solid var(--primary-color);
  padding-left: 40px;
}
.editorial-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.hero-deck {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Split Layouts */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.reverse-layout .layout-visual {
  order: -1;
}
.layout-text p {
  margin-bottom: 20px;
}

/* Manifesto SVG */
.abstract-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
}
.abstract-graphic svg {
  width: 100%;
  max-width: 400px;
}
.rotate-slow {
  transform-origin: center;
  animation: rot 20s linear infinite;
}
.pulse-opacity {
  animation: pulseO 3s infinite alternate;
}
@keyframes rot {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulseO {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}

/* Methodology Cards */
.blueprint-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.blueprint-card {
  border: 1px solid var(--border-color);
  padding: 50px 40px;
  text-align: left;
  transition: var(--transition);
  background: var(--bg-color);
}
.blueprint-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-10px);
}
.card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  margin-bottom: 30px;
}
.card-icon svg {
  width: 30px;
  height: 30px;
}
.blueprint-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.blueprint-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Wealth Image */
.editorial-img {
  filter: grayscale(80%) contrast(120%);
  border: 1px solid var(--border-color);
  padding: 10px;
}

/* Analytics */
.analytics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.news-card {
  border-top: 2px solid var(--primary-color);
  padding-top: 30px;
}
.news-date {
  font-family: var(--font-heading);
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 15px;
}
.news-card h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.news-card p {
  color: var(--text-muted);
  margin-bottom: 30px;
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  color: var(--accent-color);
}
.read-more:hover {
  gap: 15px;
  color: var(--secondary-color);
}

/* Europe */
.geo-highlight {
  display: flex;
  gap: 20px;
  background: var(--surface-color);
  padding: 30px;
  border-left: 4px solid var(--accent-color);
}
.geo-highlight svg {
  width: 40px;
  height: 40px;
  color: var(--accent-color);
  flex-shrink: 0;
}
.geo-highlight strong {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.geo-highlight p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.geo-svg-wrapper svg {
  width: 250px;
  height: 250px;
  opacity: 0.2;
}

/* Onboarding */
.step-sequence {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.sequence-item {
  text-align: left;
  position: relative;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}
.seq-num {
  position: absolute;
  top: -30px;
  left: 0;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}
.sequence-item h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.sequence-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* FAQ */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid var(--border-color);
}
.faq-block {
  border-bottom: 1px solid var(--border-color);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--text-color);
  text-align: left;
}
.faq-question svg {
  color: var(--primary-color);
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-block.active .faq-question svg {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  padding-bottom: 30px;
  color: var(--text-muted);
}

/* Contact */
.contact-roster {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.roster-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.roster-item svg {
  width: 30px;
  height: 30px;
  color: var(--primary-color);
  flex-shrink: 0;
}
.r-label {
  display: block;
  font-family: var(--font-heading);
  text-transform: uppercase;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 5px;
}
.r-value {
  font-size: 1.2rem;
}

.form-container {
  background: var(--surface-color);
  padding: 50px;
  border: 1px solid var(--border-color);
}
.form-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
}
.form-group {
  margin-bottom: 25px;
  position: relative;
}
.form-group label:not(.custom-checkbox) {
  display: block;
  font-family: var(--font-heading);
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.blueprint-form input[type="text"],
.blueprint-form input[type="tel"],
.blueprint-form input[type="email"],
.blueprint-form input[type="number"] {
  width: 100%;
  padding: 15px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--text-muted);
  color: var(--text-color);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}
.blueprint-form input:focus {
  outline: none;
  border-bottom-color: var(--primary-color);
}
.math-challenge {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: bold;
}

.checkbox-group {
  margin-top: 10px;
}
.custom-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  cursor: pointer;
}
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: relative;
  top: 5px;
  width: 20px;
  height: 20px;
  border: 1px solid var(--text-muted);
  flex-shrink: 0;
  transition: var(--transition);
}
.custom-checkbox input:checked ~ .checkmark {
  border-color: var(--primary-color);
  background: var(--primary-color);
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--bg-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}
.check-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.legal-link {
  color: var(--text-color);
  text-decoration: underline;
}
.legal-link:hover {
  color: var(--primary-color);
}

.error-hint {
  display: none;
  color: var(--error-color);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-top: 5px;
}
.form-group.invalid input {
  border-bottom-color: var(--error-color);
}
.form-group.invalid .error-hint {
  display: block;
}

/* Footer */
.blueprint-footer {
  background: #000;
  padding: 80px 0 30px;
  border-top: 1px solid var(--border-color);
}
.footer-layout {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-desc {
  color: var(--text-muted);
  margin-top: 20px;
  font-size: 0.95rem;
  max-width: 350px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 25px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-col a,
.footer-col li {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.footer-col a:hover {
  color: var(--primary-color);
}
.accent-link a {
  color: var(--primary-color);
  text-decoration: underline;
}
.contact-col li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.contact-col svg {
  width: 18px;
  height: 18px;
  color: var(--primary-color);
  margin-top: 4px;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Modals & Toasts */
.alert-toast {
  position: fixed;
  top: 100px;
  right: 30px;
  background: var(--primary-color);
  color: #fff;
  padding: 16px 24px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 10000;
  transform: translateX(150%);
  transition: transform 0.4s ease;
}
.alert-toast.show {
  transform: translateX(0);
}

.cookie-dialog {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  z-index: 9999;
  width: 90%;
  max-width: 700px;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  padding: 30px;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cookie-dialog.show {
  transform: translateX(-50%) translateY(0);
}
.cookie-layout {
  display: flex;
  gap: 30px;
  align-items: center;
}
.cookie-graphic svg {
  width: 50px;
  height: 50px;
  color: var(--primary-color);
}
.cookie-content h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cookie-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .reverse-layout .layout-visual {
    order: 0;
  }
  .hero-content-box {
    border-left: none;
    padding-left: 0;
    text-align: center;
    margin: 0 auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .analytics-grid {
    grid-template-columns: 1fr;
  }
  .step-sequence {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer-layout {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .side-navigation {
    width: 100vw;
    left: -100vw;
    text-align: center;
    padding-top: 100px;
  }
  .side-navigation.open {
    left: 0;
  }
  .nav-header {
    position: absolute;
    top: 20px;
    left: 24px;
    right: 24px;
    margin-bottom: 0;
    border: none;
  }
  .nav-item {
    font-size: 1.5rem;
  }

  .editorial-heading {
    font-size: 2.2rem;
  }
  .content-body section:not(.hero-blueprint) {
    padding: 80px 0;
  }
  .form-container {
    padding: 40px 20px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .contact-col li {
    justify-content: center;
  }

  .cookie-layout {
    flex-direction: column;
    text-align: center;
  }
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper h3 {
  color: #000000;
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
  font-size: 40px;
  color: var(--accent);
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    text-align: left;
    font-size: 20px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  h3 {
    font-size: 20px;
  }
  .margin {
    font-size: 28px;
  }
}

/* --- CONTACT PAGE SPECIFIC STYLES --- */
.contact-page-main {
  padding-top: 180px;
  padding-bottom: 120px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cp-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -2px;
  color: var(--accent);
  margin-bottom: 30px;
  line-height: 1;
  display: flex;
  justify-content: center;
}

.cp-divider {
  width: 60px;
  height: 1px;
  background-color: var(--accent);
  margin: 0 auto 40px auto;
}

.cp-status {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  border: 1px solid var(--line);
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 60px;
  background: #fcfcfc;
}

.cp-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cp-label {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.cp-phone-link {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--accent);
  line-height: 1.2;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
  margin-bottom: 40px;
}

.cp-phone-link:hover {
  border-bottom-color: var(--accent);
  opacity: 0.8;
}

.cp-address-box {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  width: 100%;
  max-width: 400px;
}

.cp-addr {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
}

.cp-email {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 1rem;
}

.cp-email a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cp-email a:hover {
  color: var(--accent);
}

@media (max-width: 600px) {
  .contact-page-main {
    padding-top: 140px;
    text-align: center;
  }

  .cp-phone-link {
    font-size: 2rem;
  }
}
