:root {
  --col-alabaster: #f4f1eb;
  --col-charcoal: #2a2b2a;
  --col-hunter: #3a5a40;
  --col-terra: #d96c4a;
  --col-cream: #fffdf8;
  --col-gold: #c29a5b;
  --col-border: rgba(42, 43, 42, 0.1);

  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Plus Jakarta Sans", sans-serif;

  --transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --shadow-soft: 0 15px 40px rgba(42, 43, 42, 0.05);
}

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

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

body {
  background-color: var(--col-cream);
  color: var(--col-charcoal);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--col-charcoal);
  line-height: 1.1;
  margin-bottom: 1rem;
  font-weight: 600;
}

h1 {
  font-size: clamp(3.5rem, 8vw, 6rem);
}
h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}
h3 {
  font-size: 1.8rem;
  font-weight: 700;
}
h4 {
  font-size: 1.4rem;
  font-weight: 600;
}

p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #4a4a4a;
}
p:last-child {
  margin-bottom: 0;
}

.text-center {
  text-align: center;
}
.text-cream {
  color: var(--col-cream) !important;
}
.text-cream p {
  color: rgba(255, 253, 248, 0.8);
}
.w-full {
  width: 100%;
}
.mt-30 {
  margin-top: 30px;
}
.mb-20 {
  margin-bottom: 20px;
}
.pt-120 {
  padding-top: 120px;
}
.pb-120 {
  padding-bottom: 120px;
}

.bg-alabaster {
  background-color: var(--col-alabaster);
}
.bg-hunter {
  background-color: var(--col-hunter);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Buttons */
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--col-hunter);
  color: var(--col-cream);
  box-shadow: 0 10px 20px rgba(58, 90, 64, 0.2);
}

.btn-primary:hover {
  background-color: var(--col-charcoal);
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(42, 43, 42, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--col-charcoal);
  border: 1px solid var(--col-charcoal);
}

.btn-outline:hover {
  background-color: var(--col-alabaster);
  transform: translateY(-3px);
}

/* Header */
.luxury-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: rgba(255, 253, 248, 0.95);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--col-border);
  z-index: 1000;
  transition: var(--transition);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.luxury-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.luxury-brand svg {
  width: 45px;
  height: 45px;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--col-charcoal);
  letter-spacing: 1px;
}

.burger-trigger {
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: var(--col-charcoal);
}

.burger-text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.burger-icon {
  width: 45px;
  height: 45px;
  border: 1px solid var(--col-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.burger-trigger:hover .burger-icon {
  background-color: var(--col-alabaster);
  border-color: var(--col-charcoal);
}

/* Side Navigation */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(42, 43, 42, 0.4);
  backdrop-filter: blur(5px);
  z-index: 1900;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.side-nav {
  position: fixed;
  top: 0;
  right: -450px;
  width: 450px;
  height: 100vh;
  background-color: var(--col-cream);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.1);
  transition: right 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.side-nav.active {
  right: 0;
}

.side-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  border-bottom: 1px solid var(--col-border);
}

.side-nav-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--col-hunter);
}

.close-nav {
  background: transparent;
  border: none;
  color: var(--col-charcoal);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 50%;
  transition: var(--transition);
}

.close-nav:hover {
  border-color: var(--col-charcoal);
  transform: rotate(90deg);
}

.side-nav-body {
  padding: 40px;
  flex-grow: 1;
  overflow-y: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.nav-item {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--col-charcoal);
  position: relative;
  display: inline-block;
}

.nav-item::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--col-terra);
  transition: var(--transition);
}

.nav-item:hover {
  color: var(--col-hunter);
}
.nav-item:hover::after {
  width: 100%;
}

.side-nav-footer {
  padding: 40px;
  border-top: 1px solid var(--col-border);
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.nav-email {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--col-charcoal);
  text-decoration: underline;
}
.nav-email:hover {
  color: var(--col-terra);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    105deg,
    var(--col-cream) 0%,
    rgba(255, 253, 248, 0.9) 40%,
    transparent 100%
  );
}

.hero-container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 650px;
}

.hero-tag {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--col-terra);
  border-radius: 50px;
  color: var(--col-terra);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.hero-desc {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 40px;
}

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

/* Editorial Grid */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.editorial-images {
  position: relative;
  height: 600px;
}

.arch-image-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 85%;
  border-radius: 200px 200px 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--col-border);
}

.arch-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.square-image-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 50%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 4px solid var(--col-cream);
}
.square-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Practices Cards */
.section-header {
  margin-bottom: 60px;
  max-width: 800px;
  margin-inline: auto;
}
.subtitle {
  color: var(--col-terra);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.feature-card {
  background: var(--col-cream);
  padding: 50px 40px;
  border-radius: 20px;
  border: 1px solid var(--col-border);
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-soft);
  border-color: var(--col-terra);
}

.card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 30px;
  background: var(--col-alabaster);
  border: 1px solid var(--col-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--col-hunter);
}
.card-icon i {
  width: 32px;
  height: 32px;
}

/* Income */
.income-layout {
  display: flex;
  align-items: center;
  gap: 80px;
}

.income-visual {
  flex: 1;
  position: relative;
}
.rounded-image {
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.floating-stat {
  position: absolute;
  bottom: -30px;
  right: 40px;
  background: var(--col-charcoal);
  color: var(--col-cream);
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.stat-value {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--col-gold);
}
.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
  opacity: 0.8;
}

.income-text {
  flex: 1;
}

/* Region */
.region-box {
  max-width: 900px;
  margin: 0 auto;
}
.region-icon {
  width: 60px;
  height: 60px;
  color: var(--col-terra);
  margin-bottom: 30px;
}
.region-content {
  max-width: 700px;
  margin: 0 auto;
}

/* Quiz */
.quiz-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--col-alabaster);
  padding: 80px 60px;
  border-radius: 30px;
  border: 1px solid var(--col-border);
}

/* Deepdive */
.deepdive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.classic-img {
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}
.border-coral {
  border-left: 6px solid var(--col-terra);
}

/* FAQ */
.accordion-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.accordion-item {
  background: var(--col-cream);
  border: 1px solid var(--col-border);
  border-radius: 16px;
  overflow: hidden;
}

.accordion-header {
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.accordion-header:hover {
  background: var(--col-alabaster);
}
.accordion-header h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
}
.accordion-header i {
  color: var(--col-hunter);
  transition: transform 0.3s ease;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  opacity: 0;
  transition: all 0.4s ease;
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
  color: var(--col-terra);
}
.accordion-item.active .accordion-body {
  max-height: 500px;
  padding: 0 30px 30px;
  opacity: 1;
}

/* Contact */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.method {
  display: flex;
  align-items: center;
  gap: 20px;
}
.method i {
  width: 24px;
  height: 24px;
  color: var(--col-terra);
}
.method span {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--col-charcoal);
}

.contact-form-wrapper {
  background: var(--col-alabaster);
  padding: 50px;
  border-radius: 30px;
  border: 1px solid var(--col-border);
}

.form-title {
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
}

.input-control {
  position: relative;
  margin-bottom: 30px;
}
.input-control input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--col-border);
  padding: 15px 0;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--col-charcoal);
  transition: var(--transition);
}
.input-control input:focus {
  outline: none;
  border-bottom-color: var(--col-hunter);
}
.input-control label {
  position: absolute;
  top: 15px;
  left: 0;
  color: #888;
  transition: var(--transition);
  pointer-events: none;
}
.input-control input:focus ~ label,
.input-control input:not(:placeholder-shown) ~ label {
  top: -10px;
  font-size: 0.8rem;
  color: var(--col-hunter);
  font-weight: 600;
}
.input-control input::placeholder {
  color: transparent;
}

.captcha-flex {
  display: flex;
  gap: 30px;
  align-items: flex-end;
  margin-bottom: 30px;
}
.captcha-board {
  flex: 1;
  background: var(--col-cream);
  border: 1px dashed var(--col-terra);
  padding: 15px;
  text-align: center;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--col-hunter);
}
.captcha-input {
  flex: 1;
  margin-bottom: 0;
}

.checkbox-control {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.checkbox-control input {
  margin-top: 5px;
  width: 20px;
  height: 20px;
  accent-color: var(--col-hunter);
  cursor: pointer;
}
.consent-text {
  font-size: 0.9rem;
  color: #666;
  cursor: pointer;
  line-height: 1.6;
}
.consent-text a {
  color: var(--col-terra);
  text-decoration: underline;
  font-weight: 600;
}
.consent-text a:hover {
  color: var(--col-hunter);
}

/* Footer */
.luxury-footer {
  background: var(--col-charcoal);
  color: var(--col-cream);
  padding: 100px 0 40px;
  border-top: 1px solid var(--col-border);
}

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

.footer-brand-col .footer-desc {
  color: rgba(255, 253, 248, 0.6);
  max-width: 350px;
  margin: 20px 0;
}
.highlight-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--col-gold);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.highlight-link:hover {
  color: var(--col-cream);
  gap: 15px;
}

.footer-heading {
  color: var(--col-cream);
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 25px;
}
.footer-nav-col a,
.footer-legal-col a {
  display: block;
  color: rgba(255, 253, 248, 0.6);
  margin-bottom: 15px;
}
.footer-nav-col a:hover,
.footer-legal-col a:hover {
  color: var(--col-terra);
  padding-left: 5px;
}

.footer-contacts-col p {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: rgba(255, 253, 248, 0.6);
  margin-bottom: 15px;
  font-size: 0.95rem;
}
.footer-contacts-col i {
  color: var(--col-gold);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 253, 248, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 253, 248, 0.4);
}

/* Cookie */
.cookie-modal {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 3000;
  transform: translateY(150%);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.cookie-modal.show {
  transform: translateY(0);
}

.cookie-modal-inner {
  background: var(--col-cream);
  border: 1px solid var(--col-border);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 20px;
  align-items: center;
  max-width: 600px;
}
.cookie-icon-box i {
  width: 40px;
  height: 40px;
  color: var(--col-gold);
}
.cookie-text-box h4 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}
.cookie-text-box p {
  margin: 0;
  font-size: 0.9rem;
}
.cookie-btn-box {
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .side-nav {
    width: 100%;
    right: -100%;
  } /* Mobile fullscreen overlay for tablets too */
  h1 {
    font-size: 4rem;
  }
  .hero-overlay {
    background: rgba(255, 253, 248, 0.85);
  }
  .hero-content {
    margin: 0 auto;
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .editorial-grid,
  .deepdive-grid,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .income-layout {
    flex-direction: column;
    gap: 60px;
  }
  .editorial-text,
  .income-text,
  .deepdive-text,
  .contact-info {
    text-align: center;
  }
  .editorial-images {
    height: 500px;
    max-width: 600px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .cookie-modal-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.2rem;
  }
  .pt-120 {
    padding-top: 80px;
  }
  .pb-120 {
    padding-bottom: 80px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .editorial-images {
    height: 400px;
  }
  .quiz-container,
  .contact-form-wrapper {
    padding: 40px 20px;
  }
  .captcha-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-desc {
    margin: 20px auto;
  }
  .footer-contacts-col p {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  .highlight-link {
    justify-content: center;
  }
  .cookie-modal {
    left: 0;
    right: 0;
    width: 100%;
    padding: 0 20px;
    bottom: 20px;
  }
}

.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(--ink);
  margin-bottom: 40px;
  margin-top: 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(--ink);
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px !important;
    margin-top: 30px;
  }
  .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;
  }
}
