/* Base Variables & Reset */
:root {
  --color-navy: #111827;
  --color-navy-light: #1f2937;
  --color-gold: #d4af37;
  --color-gold-hover: #b8962c;
  --color-light: #f3f4f6;
  --color-white: #ffffff;
  --color-text: #374151;
  --color-text-muted: #6b7280;
  --color-error: #ef4444;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, sans-serif;
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease-in-out;
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-heavy: 0 10px 40px rgba(17, 24, 39, 0.2);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

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

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

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

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

ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.section-padding {
  padding: 100px 0;
}
.text-center {
  text-align: center;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 2rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 2rem;
}

.bg-dark {
  background-color: var(--color-navy);
  color: var(--color-white);
}
.bg-light {
  background-color: var(--color-light);
}

.text-white {
  color: var(--color-white) !important;
}
.text-light {
  color: #9ca3af !important;
}
.text-gold {
  color: var(--color-gold) !important;
}
.text-muted {
  color: var(--color-text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-base);
}

.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-white);
}

.btn-gold:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
}

.btn-outline {
  border-color: var(--color-navy);
  color: var(--color-navy);
}

.btn-outline:hover {
  background-color: var(--color-navy);
  color: var(--color-white);
}

.btn-block {
  width: 100%;
}
.btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* Typography */
.main-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: var(--color-navy);
  margin-bottom: 24px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-navy);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Header */
.luxury-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  /* ensure the header never grows wider than the viewport (fixes mobile overflow) */
  max-width: 100vw;
  overflow-x: hidden;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition-base);
}

.luxury-header.scrolled {
  padding: 5px 0;
  box-shadow: var(--shadow-subtle);
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: height 0.3s ease;
}

.luxury-header.scrolled .header-wrapper {
  height: 60px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 0.5px;
}

.brand-logo svg {
  width: 36px;
  height: 36px;
  color: var(--color-gold);
}

.desktop-menu .nav-links {
  display: flex;
  gap: 30px;
}

.nav-anchor {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: 5px 0;
}

.nav-anchor:hover,
.nav-anchor.active {
  color: var(--color-gold);
}

.nav-anchor::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--color-gold);
  transition: var(--transition-base);
}

.nav-anchor:hover::after {
  width: 100%;
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.burger-menu .line {
  width: 28px;
  height: 2px;
  background-color: var(--color-navy);
  transition: var(--transition-fast);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background-color: var(--color-navy);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.close-mobile {
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--color-white);
  padding: 10px;
  background-color: inherit;
}

.close-mobile svg {
  width: 36px;
  height: 36px;
}

.mobile-links {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mob-link {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-white);
}

.mob-link:hover {
  color: var(--color-gold);
}

/* Hero */
.hero-section {
  position: relative;
  padding-top: 140px;
  padding-bottom: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-graphic {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
}

.hero-bg-graphic svg {
  width: 100%;
  height: 100%;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.image-mask {
  position: relative;
  padding: 20px;
}

.image-mask::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 100%;
  background-color: var(--color-gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.1;
}

.image-mask img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-heavy);
}

.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-heavy);
  color: var(--color-navy);
  font-weight: 600;
  animation: float 4s ease-in-out infinite;
}

.floating-badge svg {
  color: var(--color-gold);
}
.top-badge {
  top: 40px;
  left: -30px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Philosophy */
.custom-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.custom-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.custom-list svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

.abstract-card {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rotating-svg {
  width: 100%;
  max-width: 500px;
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

.inset-image {
  position: absolute;
  width: 60%;
  height: 60%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow-heavy);
  border: 4px solid var(--color-white);
}

/* Methodology */
.method-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card-glass {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
  text-align: left;
}

.card-glass:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  border-color: var(--color-gold);
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  margin-bottom: 25px;
}

.card-glass h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 15px;
}

/* Wealth */
.rounded-shadow {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-heavy);
}

/* Europe */
.europe-content {
  max-width: 800px;
  margin: 0 auto;
}

.eu-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  color: var(--color-gold);
}

.eu-icon svg {
  width: 100%;
  height: 100%;
}

.large-text {
  font-size: 1.3rem;
  color: var(--color-navy);
}

/* Onboarding */
.steps-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.step-box {
  position: relative;
  padding: 40px 30px;
  background: var(--color-white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-base);
}

.step-box:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-heavy);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: var(--color-navy);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 50%;
  border: 4px solid var(--color-white);
}

.step-box h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--color-navy);
}

/* CTA Section */
.cta-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 60px 40px;
  border-radius: var(--radius-lg);
  background: radial-gradient(
    circle at center,
    rgba(212, 175, 55, 0.05) 0%,
    transparent 70%
  );
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

/* FAQ */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid #e5e7eb;
  margin-bottom: 15px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-navy);
  text-align: left;
  transition: var(--transition-fast);
}

.faq-btn:hover {
  background-color: #f9fafb;
}

.faq-btn svg {
  color: var(--color-gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-btn svg {
  transform: rotate(180deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background-color: #f9fafb;
}

.faq-panel p {
  padding: 0 30px 24px;
  color: var(--color-text-muted);
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-heavy);
  overflow: hidden;
}

.contact-info {
  background: var(--color-light);
  padding: 60px 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.contact-item {
  display: flex;
  gap: 15px;
}

.c-icon {
  width: 40px;
  height: 40px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  box-shadow: var(--shadow-subtle);
  flex-shrink: 0;
}

.c-text strong {
  display: block;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.c-text span {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.contact-form-wrap {
  padding: 60px 40px;
}

.elite-form .form-group {
  margin-bottom: 24px;
  position: relative;
}

.elite-form label:not(.chk-label) {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--color-navy);
}

.elite-form input[type="text"],
.elite-form input[type="tel"],
.elite-form input[type="email"],
.elite-form input[type="number"] {
  width: 100%;
  padding: 16px;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition-fast);
  background-color: var(--color-light);
}

.elite-form input:focus {
  outline: none;
  border-color: var(--color-gold);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.math-hl {
  color: var(--color-gold);
  font-weight: bold;
  font-size: 1.1rem;
}

.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-wrap input {
  margin-top: 5px;
  width: 18px;
  height: 18px;
  accent-color: var(--color-gold);
}

.chk-label {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.legal-link {
  color: var(--color-navy);
  text-decoration: underline;
  font-weight: 500;
}

.legal-link:hover {
  color: var(--color-gold);
}

.error-msg {
  display: none;
  color: var(--color-error);
  font-size: 0.8rem;
  margin-top: 6px;
  font-weight: 500;
}

.form-group.has-error input {
  border-color: var(--color-error);
}
.form-group.has-error .error-msg {
  display: block;
}

.btn-submit {
  margin-top: 10px;
}

/* Footer */
.luxury-footer {
  background-color: var(--color-navy);
  padding: 80px 0 20px;
  border-top: 4px solid var(--color-gold);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  max-width: 400px;
  margin-top: 10px;
}

.footer-links ul,
.footer-legal ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-legal a {
  color: var(--color-text-muted);
}
.footer-links a:hover,
.footer-legal a:hover {
  color: var(--color-white);
  padding-left: 5px;
}

.accent-link a {
  color: var(--color-gold);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Modals & Toasts */
.cookie-modal {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9999;
  max-width: 450px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-heavy);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transform: translateY(150%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-modal.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-modal-inner {
  display: flex;
  padding: 24px;
  gap: 20px;
  align-items: flex-start;
}

.cookie-visual svg {
  width: 40px;
  height: 40px;
  color: var(--color-gold);
}

.cookie-content h3 {
  font-size: 1.1rem;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.cookie-content p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 15px;
}

.toast-message {
  position: fixed;
  top: 100px;
  right: 30px;
  background-color: #10b981;
  color: var(--color-white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-heavy);
  z-index: 10000;
  transform: translateX(150%);
  transition: transform 0.4s ease;
}

.toast-message.active {
  transform: translateX(0);
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.toast-content svg {
  width: 24px;
  height: 24px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container,
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-bg-graphic {
    display: none;
  }
  .hero-cta,
  .custom-list {
    justify-content: center;
  }
  .custom-list li {
    justify-content: center;
  }
  .reverse-mobile .wealth-visual {
    order: -1;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }
  .burger-menu {
    display: flex;
  }
  .section-padding {
    padding: 60px 0;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cookie-modal {
    bottom: 10px;
    left: 10px;
    right: 10px;
    max-width: none;
  }
  .contact-info,
  .contact-form-wrap {
    padding: 40px 20px;
  }
  /* reduce container/header padding to prevent the fixed header from overflowing
     when the viewport is narrow or safe-area inset is present */
  .container {
    padding: 0 16px;
  }
  .luxury-header .header-wrapper {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 2.1rem;
  }
  .hero-cta {
    flex-direction: column;
  }
  .hero-container {
    padding: 20px;
  }
  .btn {
    width: 100%;
  }
  .cookie-modal-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .section-title {
    font-size: 1.6rem;
  }
}

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