:root {
  --navy: #061426;
  --navy-2: #102a47;
  --navy-3: #17395f;
  --gold: #c8a24a;
  --gold-2: #ead28b;
  --cream: #f6f1e6;
  --white: #ffffff;
  --soft: #f4f6f9;
  --text: #1b2430;
  --muted: #657184;
  --line: rgba(200, 162, 74, 0.36);
  --shadow: 0 22px 60px rgba(6, 20, 38, 0.18);
  --radius: 26px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text);
  background: var(--soft);
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg {
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--navy);
  background: var(--gold-2);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 20, 38, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(100% - 32px, var(--max));
  min-height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.brand-symbol {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background:
    linear-gradient(90deg, transparent 46%, var(--gold) 46% 54%, transparent 54%),
    linear-gradient(0deg, transparent 46%, var(--gold) 46% 54%, transparent 54%),
    radial-gradient(circle at center, rgba(234, 210, 139, 0.18), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 0 0 7px rgba(200, 162, 74, 0.08);
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: clamp(0.98rem, 2vw, 1.15rem);
  letter-spacing: 0.06em;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--gold-2);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
}

.nav-links a:not(.nav-button) {
  position: relative;
  padding: 8px 0;
}

.nav-links a:not(.nav-button)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: var(--gold-2);
  transition: width 0.2s ease;
}

.nav-links a:not(.nav-button):hover::after {
  width: 100%;
}

.nav-button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-button {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 10px 24px rgba(200, 162, 74, 0.18);
}

.nav-button:hover,
.btn:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 5px;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(6, 20, 38, 0.94), rgba(16, 42, 71, 0.92)),
    radial-gradient(circle at 80% 20%, rgba(200, 162, 74, 0.22), transparent 30%),
    var(--navy);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(30deg, transparent 48%, rgba(255, 255, 255, 0.35) 49%, transparent 50%),
    linear-gradient(150deg, transparent 48%, rgba(255, 255, 255, 0.24) 49%, transparent 50%);
  background-size: 92px 92px;
}

.decor {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.decor-one {
  width: 420px;
  height: 420px;
  right: -150px;
  top: 90px;
  background: radial-gradient(circle, rgba(200, 162, 74, 0.24), transparent 66%);
}

.decor-two {
  width: 300px;
  height: 300px;
  left: -120px;
  bottom: 80px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 68%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  padding: 92px 0;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--gold-2);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.08;
}

h1 {
  max-width: 800px;
  font-size: clamp(2.45rem, 7vw, 5.8rem);
  letter-spacing: -0.05em;
}

.hero-text {
  max-width: 660px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn-primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 16px 30px rgba(200, 162, 74, 0.24);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
}

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

.btn-large {
  min-height: 54px;
  padding-inline: 26px;
}

.hero-card {
  position: relative;
  min-height: 430px;
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.card-topline {
  width: 78px;
  height: 3px;
  margin-bottom: 34px;
  border-radius: 999px;
  background: var(--gold-2);
}

.card-label {
  color: var(--gold-2);
  font-size: 1.05rem;
  letter-spacing: 0.16em;
}

.hero-card h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 5vw, 4.2rem);
  letter-spacing: -0.04em;
}

.card-description {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
}

.practice-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  list-style: none;
}

.practice-list li {
  padding: 13px 15px;
  border: 1px solid rgba(234, 210, 139, 0.28);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
}

.section-block {
  padding: clamp(64px, 9vw, 112px) 0;
}

.split-layout,
.location-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
}

.section-title h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4.4vw, 4rem);
  letter-spacing: -0.04em;
}

.section-title p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.center {
  text-align: center;
}

.text-panel,
.location-card,
.identity-card,
.social-panel,
.contact-card {
  border: 1px solid rgba(6, 20, 38, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.text-panel {
  padding: clamp(28px, 5vw, 48px);
  color: var(--navy-2);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.areas {
  background: var(--white);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.area-card {
  min-height: 255px;
  padding: 30px;
  border: 1px solid rgba(6, 20, 38, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(246, 241, 230, 0.58), rgba(255, 255, 255, 1));
  box-shadow: 0 18px 48px rgba(6, 20, 38, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.area-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 162, 74, 0.56);
  box-shadow: 0 24px 56px rgba(6, 20, 38, 0.13);
}

.area-card-wide {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(6, 20, 38, 0.96), rgba(16, 42, 71, 0.96));
  color: var(--white);
}

.area-card-wide p {
  color: rgba(255, 255, 255, 0.76);
}

.area-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 18px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-weight: 800;
}

.area-card h3 {
  color: inherit;
  font-size: 1.7rem;
}

.area-card p {
  margin-top: 12px;
  color: var(--muted);
}

.banner-section {
  padding: 34px 0;
  background: var(--white);
}

.banner-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 5vw, 46px);
  border-radius: 32px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(234, 210, 139, 0.28), transparent 32%),
    linear-gradient(135deg, var(--navy), var(--navy-3));
  box-shadow: var(--shadow);
}

.banner-box h2 {
  max-width: 850px;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
}

.location-card,
.identity-card {
  min-height: 320px;
  padding: clamp(28px, 5vw, 46px);
}

.location-card h2,
.identity-card h3 {
  color: var(--navy);
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  letter-spacing: -0.05em;
}

.location-card p,
.identity-card p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.08rem;
}

.identity-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 10%, rgba(234, 210, 139, 0.3), transparent 28%),
    linear-gradient(140deg, var(--navy), var(--navy-2));
}

.identity-card::after {
  content: '';
  position: absolute;
  width: 270px;
  height: 270px;
  right: -80px;
  bottom: -90px;
  border: 1px solid rgba(234, 210, 139, 0.28);
  border-radius: 50%;
}

.identity-label {
  width: max-content;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(234, 210, 139, 0.38);
  border-radius: 999px;
  color: var(--gold-2);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.identity-card h3,
.identity-card p {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.identity-card p {
  color: rgba(255, 255, 255, 0.72);
}

.social {
  background: linear-gradient(180deg, var(--soft), var(--white));
}

.social-panel {
  padding: clamp(34px, 6vw, 62px);
}

.contact {
  background: var(--white);
}

.contact-layout {
  align-items: stretch;
}

.contact-copy {
  padding: clamp(22px, 4vw, 34px) 0;
}

.contact-copy h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4.6vw, 4rem);
  letter-spacing: -0.05em;
}

.contact-copy p:not(.eyebrow) {
  max-width: 590px;
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 1.1rem;
}

.contact-card {
  padding: clamp(24px, 5vw, 42px);
}

.info-row {
  display: grid;
  gap: 6px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(6, 20, 38, 0.08);
}

.info-row:last-child {
  border-bottom: 0;
}

.info-row span {
  color: var(--muted);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-row strong {
  color: var(--navy);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 52px;
  padding: 13px 18px;
  border-radius: 999px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 18px 40px rgba(6, 20, 38, 0.22);
  font-weight: 800;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer strong {
  display: block;
  color: var(--white);
  letter-spacing: 0.06em;
}

.site-footer p {
  margin-top: 6px;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(6, 20, 38, 0.98);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 12px 10px;
  }

  .nav-button {
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout,
  .split-layout,
  .location-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    padding: 72px 0;
  }

  .areas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .area-card-wide {
    grid-column: span 2;
  }

  .banner-box,
  .footer-layout {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .container,
  .navbar {
    width: min(100% - 24px, var(--max));
  }

  .navbar {
    min-height: 72px;
  }

  .brand-symbol {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .brand-copy strong {
    font-size: 0.88rem;
  }

  .brand-copy small {
    font-size: 0.65rem;
  }

  .nav-links {
    top: 72px;
    left: 12px;
    right: 12px;
  }

  h1 {
    font-size: clamp(2.2rem, 13vw, 3.8rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .btn {
    text-align: center;
  }

  .hero-card {
    min-height: 360px;
    border-radius: 28px;
  }

  .practice-list,
  .areas-grid {
    grid-template-columns: 1fr;
  }

  .area-card-wide {
    grid-column: auto;
  }

  .section-block {
    padding: 62px 0;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-width: 118px;
    min-height: 48px;
    font-size: 0.92rem;
  }
}
