/* Base styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #050505;
  color: #f5f5f5;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

:root {
  --bg-main: #050505;
  --bg-dark: #0b0b0f;
  --bg-elevated: #111114;
  --gold: #dcdcdc;
  --gold-soft: #f5f5f5;
  --text-main: #f5f5f5;
  --text-muted: #b5b5b5;
  --border-subtle: rgba(255, 255, 255, 0.16);
  --border-strong: rgba(255, 255, 255, 0.4);
  --radius-card: 12px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.6);
  --max-width: 1120px;
  --header-height: 72px;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.row {
  display: flex;
}

.align-center {
  align-items: center;
  justify-content: space-between;
}

.grid {
  display: grid;
  gap: 2.5rem;
}

.grid.two-col {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

@media (max-width: 768px) {
  .grid.two-col {
    grid-template-columns: minmax(0, 1fr);
  }
}

.section {
  padding: 1rem 0;
}

.section-dark {
  background: #050505;
}

.section-accent {
  background: #101118;
  padding: 4rem 0;
}

.section-accent .consultation-cta {
  align-items: center;
}

.section-accent h2 {
  color: #fff;
}

.section-accent p {
  color: #e7e7f0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.4rem;
  color: var(--gold-soft);
  margin-bottom: 0.75rem;
}

.section-header p {
  max-width: 640px;
  margin: 0.25rem auto 0;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.19s ease, color 0.19s ease, border-color 0.19s ease,
    box-shadow 0.19s ease, transform 0.1s ease;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, #fdfdfd, #cfcfcf);
  color: #0e0e0e;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.55);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #ffffff, #dcdcdc);
  transform: translateY(-1px);
}

.btn-outline {
  border-color: var(--border-subtle);
  color: var(--text-main);
  background: transparent;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fdfdfd;
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: #fff;
}

.full-width {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.93rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #f1f1f1;
  margin-top: 1.25rem;
}

.text-link::after {
  content: '↗';
  font-size: 0.8rem;
}

.link-underline {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 0.18rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(5, 5, 7, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-height);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f0f0f0;
  background: radial-gradient(circle at 30% 0, #fdfdfd 0, #4a4a4a 60%, #1a1a1a 100%);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.7);
}

.scale-icon {
  width: 20px;
  height: 20px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
}

.brand-tagline {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9rem;
}

.main-nav a {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  font-size: 0.78rem;
  color: #d9d9e2;
  position: relative;
}

.main-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft));
  transition: width 0.2s ease;
}

.main-nav a:hover:not(.btn)::after,
.main-nav a.active:not(.btn)::after {
  width: 100%;
}

.header-whatsapp {
  padding: 0.65rem 1.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000 !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #f5f5f5;
  border-radius: 99px;
}

@media (max-width: 900px) {
  .header-actions {
    gap: 0.6rem;
  }

  .header-whatsapp {
    padding: 0.55rem 1rem;
    font-size: 0.72rem;
    width: 100%;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    background: rgba(5, 5, 7, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.25rem 1.5rem 1.75rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  background-image: linear-gradient(
      130deg,
      rgba(5, 5, 7, 0.96),
      rgba(5, 5, 7, 0.96)
    ),
    url('https://images.pexels.com/photos/6077326/pexels-photo-6077326.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: stretch;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.08) 0, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(60, 60, 60, 0.4) 0, rgba(5, 5, 7, 0.92) 60%);
  mix-blend-mode: multiply;
}

.hero {
  padding-top: 0.5rem;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: .5rem 1.5rem 2.8rem;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 620px;
  padding: 1.5rem 0;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--gold-soft);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: 2.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
}

.hero-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.23em;
  color: var(--text-muted);
  margin-bottom: 1.6rem;
}

.hero-text {
  font-size: 1rem;
  color: #e6e6f0;
  margin-bottom: 1.7rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.hero-meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 0.2rem;
  }

  .hero-inner {
    padding-top: 0.5rem;
    padding-bottom: 2.1rem;
  }

  .hero-content {
    padding: 0.5rem 0;
  }

  .hero h1 {
    font-size: 1.9rem;
  }
}

/* Quick contact bar */
.quick-contact {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: #050507;
}

.quick-contact .container {
  padding: 0.75rem 1.5rem;
}

.quick-contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.quick-contact .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.quick-contact .phone {
  font-size: 0.96rem;
}

.quick-contact .phone a {
  color: var(--gold-soft);
  font-weight: 500;
}

.quick-contact-actions {
  font-size: 0.78rem;
}

@media (max-width: 640px) {
  .quick-contact .container.row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* Cards */
.card {
  background: radial-gradient(circle at top left, #1b1b1b 0, #050507 60%);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-subtle);
  padding: 1.7rem 1.8rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.68);
}

.card-outline {
  border-color: var(--border-strong);
}

.card h3 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.95rem;
  color: var(--gold-soft);
  margin-top: 0;
}

.styled-list {
  list-style: none;
  padding-left: 0;
  margin: 0.5rem 0 0;
}

.styled-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.95rem;
  color: #ddddea;
}

.styled-list li + li {
  margin-top: 0.35rem;
}

.styled-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 1px;
  background: var(--gold-soft);
}

/* About sections */
.about-preview h2,
.about-layout h2 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 1.05rem;
  color: var(--gold-soft);
}

.about-preview-meta h3,
.about-aside h3 {
  margin-top: 0;
}

.about-aside {
  align-self: flex-start;
}

.divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
  margin: 1.8rem 0;
}

.divider.subtle {
  opacity: 0.6;
}

/* Practice layout */
.practice-layout article h2 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 1.05rem;
  color: var(--gold-soft);
}

.practice-block {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.practice-block h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.practice-block p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.96rem;
}

/* Page hero */
.page-hero {
  padding: 2.1rem 0 1.5rem;
  background: radial-gradient(circle at top, #151623 0, #050507 55%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1.35rem;
  margin: 0 0 0.6rem;
}

.page-subtitle {
  max-width: 640px;
  font-size: 0.96rem;
  color: var(--text-muted);
}

/* Consultation CTA */
.consultation-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.4rem;
}

.consultation-cta h2 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 1.1rem;
  margin-top: 0;
}

.consultation-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@media (max-width: 640px) {
  .consultation-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Contact */
.contact-layout h2 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 1rem;
  color: var(--gold-soft);
}

.map-wrapper {
  margin-top: 0.9rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}

.contact-card h2 {
  margin-top: 0;
}

.contact-form {
  margin-top: 1.1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 8, 12, 0.9);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.9rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 1px rgba(216, 163, 64, 0.4);
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #050507;
  margin-top: 3rem;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.7fr));
  gap: 2rem;
  padding: 2.6rem 1.5rem 1.9rem;
}

.footer-brand {
  max-width: 380px;
}

.footer-name {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.98rem;
}

.footer-phone a {
  color: var(--gold-soft);
  font-size: 0.9rem;
}

.office-email a {
  color: var(--gold-soft);
  font-size: 0.9rem;
}
.footer-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
}

.footer-links h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 0.7rem;
  color: var(--text-muted);
}

.footer-links ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-links li + li {
  margin-top: 0.35rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: #e3e3ee;
}

.footer-links a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.85rem 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Disclaimer modal */
.disclaimer-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1.5rem;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  overflow-y: auto;
}

.disclaimer-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.disclaimer-card {
  max-width: 520px;
  width: 100%;
  background: #0b0b0f;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  margin: auto;
}

.disclaimer-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.disclaimer-card p {
  font-size: 0.62rem;
  color: #d5d5d5;
  margin-bottom: 0.8rem;
}

.disclaimer-card ul {
  margin: 0 0 0.8rem;
  padding-left: 1rem;
  font-size: 0.62rem;
  color: #d5d5d5;
}

.disclaimer-card li + li {
  margin-top: 0.35rem;
}

.disclaimer-card small {
  display: block;
  font-size: 0.72rem;
  color: #9c9c9c;
  /*margin-bottom: 1rem;*/
}

.disclaimer-actions {
  display: flex;
  justify-content: center;
}

.disclaimer-actions .btn {
  padding: 0.4rem 1.2rem;
  font-size: 0.6rem;
}

@media (max-width: 600px) {
  .disclaimer-card {
    padding: 1.1rem 1.1rem;
    max-width: 90vw;
  }

  .disclaimer-card p,
  .disclaimer-card ul {
    font-size: 0.78rem;
  }

  .disclaimer-card h3 {
    font-size: 0.9rem;
  }
}

@media (max-height: 500px) {
  .disclaimer-card {
    margin-top: 0.5rem;
    max-height: calc(100vh - 2rem);
  }
}


