:root {
  --bg: #eaf2fb;
  --paper: #f7fbff;
  --ink: #121a26;
  --ink-soft: #3d4653;
  --accent: #2f6fa8;
  --accent-dark: #1f4f7f;
  --line: rgba(18, 26, 38, 0.14);
  --shadow: 0 18px 45px rgba(16, 22, 31, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 82% 12%, #c8dff6 0%, transparent 36%),
    radial-gradient(circle at 9% 88%, #d9ecff 0%, transparent 32%), var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.1;
  margin: 0 0 0.8rem;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
}

h3 {
  font-size: clamp(1.2rem, 2.8vw, 1.65rem);
}

p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

a {
  color: inherit;
}

.container {
  width: min(1100px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.section {
  padding: clamp(3.4rem, 8vw, 6.2rem) 0;
}

.section-soft {
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.72), rgba(219, 235, 250, 0.62));
}

.background-shape {
  position: fixed;
  z-index: -1;
  filter: blur(90px);
  opacity: 0.55;
  pointer-events: none;
}

.background-shape-left {
  width: 300px;
  height: 300px;
  left: -70px;
  top: 140px;
  background: #bad8f2;
}

.background-shape-right {
  width: 380px;
  height: 380px;
  right: -120px;
  top: 50vh;
  background: #c6e5ff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(247, 251, 255, 0.78);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.brand-logo {
  width: auto;
  height: 36px;
  object-fit: contain;
}

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

.nav {
  display: flex;
  gap: 1.3rem;
}

.nav a {
  text-decoration: none;
  color: var(--ink-soft);
}

.nav a:hover {
  color: var(--ink);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.12rem;
  background: rgba(255, 255, 255, 0.68);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.34rem 0.62rem;
  cursor: pointer;
}

.lang-btn.is-active {
  background: var(--ink);
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: start;
}

.hero-visual {
  display: grid;
  gap: 0.9rem;
}

.portrait-wrap {
  margin: 0;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.portrait {
  width: 100%;
  height: clamp(290px, 46vw, 470px);
  object-fit: cover;
  object-position: center top;
  display: block;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-dark);
  font-size: 0.75rem;
  margin-bottom: 0.65rem;
  font-weight: 600;
}

.hero-card {
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 1.4rem;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.citizenship-section {
  padding-top: 2.4rem;
}

.citizenship-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
}

.citizenship-lead {
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 600;
}

.citizenship-price-card {
  border: 1px solid rgba(47, 111, 168, 0.34);
  border-radius: 1rem;
  padding: 1.2rem;
  background: linear-gradient(155deg, rgba(247, 251, 255, 0.98), rgba(226, 240, 252, 0.94));
  box-shadow: var(--shadow);
}

.price-line {
  margin: 0.2rem 0 0.8rem;
  color: var(--ink);
  font-size: 1.1rem;
}

.citizenship-price-card p {
  color: var(--ink-soft);
}

.citizenship-price-card ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--ink-soft);
}

.citizenship-services {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.citizenship-services li {
  margin-bottom: 0.45rem;
}

.delay-section {
  padding-top: 1.6rem;
}

.delay-content {
  max-width: 980px;
  text-align: left;
}

.delay-content h2 {
  font-size: clamp(1.95rem, 4.4vw, 3rem);
  margin-bottom: 1rem;
}

.delay-divider {
  display: none;
}

.delay-content p {
  margin-bottom: 0.95rem;
  color: var(--ink);
}

.delay-solution {
  margin-top: 1.05rem;
  font-weight: 600;
}

.delay-note {
  color: var(--ink-soft);
}

.delay-cta-row {
  justify-content: flex-start;
}

.straf-section {
  padding-top: 1.8rem;
}

.straf-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
}

.straf-lead {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 600;
}

.straf-points {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.straf-points li {
  margin-bottom: 0.45rem;
}

.straf-card {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.2rem;
  background: rgba(252, 251, 247, 0.93);
  box-shadow: var(--shadow);
}

.straf-card h3 {
  margin-bottom: 0.55rem;
}

.other-services-section {
  padding-top: 2rem;
}

.other-services-head {
  max-width: 860px;
}

.other-services-head p {
  max-width: 68ch;
}

.other-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.other-service-card {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
  background: rgba(252, 251, 247, 0.9);
  box-shadow: 0 10px 24px rgba(16, 22, 31, 0.07);
}

.other-service-card h3 {
  margin-bottom: 0.5rem;
}

.other-service-card p {
  margin: 0;
}

.other-services-cta {
  margin-top: 1rem;
}

.process-section {
  padding-top: 0.8rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.process-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  padding: 1rem;
  background: rgba(252, 251, 247, 0.86);
}

.step-badge {
  display: inline-flex;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-size: 0.86rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  margin-bottom: 0.6rem;
}

.process-card h3 {
  font-size: 1.2rem;
}

.process-card p {
  margin: 0;
}

.emergency-number {
  display: inline-block;
  margin-top: 0.45rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--accent-dark);
  text-decoration: none;
}

.emergency-number:hover {
  text-decoration: underline;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.hero-trust-note {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: #936924;
  box-shadow: 0 8px 24px rgba(147, 105, 36, 0.35);
}

.btn-outline {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.btn-whatsapp {
  color: var(--ink);
  border-color: rgba(18, 26, 38, 0.2);
  background: rgba(252, 251, 247, 0.92);
  box-shadow: 0 8px 18px rgba(16, 22, 31, 0.08);
}

.btn-whatsapp:hover {
  border-color: rgba(170, 125, 52, 0.55);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 22px rgba(16, 22, 31, 0.12);
}

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

.area-card {
  position: relative;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: linear-gradient(160deg, rgba(247, 251, 255, 0.98), rgba(232, 243, 253, 0.92));
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 24px rgba(16, 22, 31, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.area-card::before {
  content: none;
}

.area-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(16, 22, 31, 0.1);
  border-color: rgba(47, 111, 168, 0.36);
}

.area-image-wrap {
  margin: -1.2rem -1.2rem 0.9rem;
  border-radius: 1rem 1rem 0 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(18, 26, 38, 0.08);
  background: linear-gradient(180deg, rgba(18, 26, 38, 0.08), transparent);
}

.area-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) sepia(10%) saturate(80%);
  opacity: 0.95;
}

.area-icon {
  display: inline-flex;
  width: 2.2rem;
  height: 2.2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(47, 111, 168, 0.35);
  color: var(--accent-dark);
  background: linear-gradient(150deg, rgba(47, 111, 168, 0.12), rgba(47, 111, 168, 0.03));
  margin-bottom: 0.75rem;
}

.area-icon svg {
  width: 1.12rem;
  height: 1.12rem;
}

.area-icon svg path,
.area-icon svg circle {
  stroke: currentColor;
  stroke-width: 1.55;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.area-card h3 {
  margin: 0 0 0.8rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(170, 125, 52, 0.2);
}

.area-card ul {
  margin: 0.15rem 0 0;
  padding-left: 1rem;
  color: var(--ink-soft);
}

.areas-grid li {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.15rem, 2.1vw, 1.35rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: start;
}

.kanzlei-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
}

.kanzlei-photo-wrap {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.kanzlei-photo {
  width: 100%;
  height: clamp(320px, 50vw, 620px);
  object-fit: cover;
  object-position: center top;
  display: block;
}

.kanzlei-content {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(252, 251, 247, 0.92);
  box-shadow: var(--shadow);
  max-width: 920px;
  margin: 0 auto;
}

.kanzlei-content .eyebrow {
  font-size: 0.86rem;
  margin-bottom: 0.55rem;
}

.kanzlei-content h2 {
  font-size: clamp(2.1rem, 5.2vw, 3.5rem);
  margin-bottom: 1rem;
}

.kanzlei-content h3 {
  margin-top: 1rem;
  margin-bottom: 0.65rem;
  font-size: clamp(1.35rem, 2.7vw, 1.9rem);
}

.kanzlei-lead {
  font-size: 1.12rem;
  color: var(--ink);
}

.kanzlei-points {
  margin: 0 0 1.1rem;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(1.2rem, 3.8vw, 2.6rem);
  align-items: start;
}

.booking-copy {
  padding-top: 0.2rem;
}

.booking-copy h2 {
  margin-bottom: 0.75rem;
}

.booking-copy p {
  max-width: 52ch;
}

.booking-points {
  margin: 0 0 1.2rem;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.booking-urgent {
  margin: 0 0 1.1rem;
  color: var(--ink);
  font-size: 1.02rem;
}

.booking-urgent-number {
  color: var(--accent-dark);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.booking-urgent-number:hover {
  text-decoration: underline;
}

.booking-form {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.2rem;
  background: rgba(252, 251, 247, 0.92);
  box-shadow: var(--shadow);
}

.booking-form-note {
  margin: 0 0 0.95rem;
  color: var(--ink);
  font-size: 0.92rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.field-group {
  display: grid;
  margin-bottom: 0.8rem;
  gap: 0.35rem;
}

.field-group label {
  font-size: 0.88rem;
  color: var(--ink);
  font-weight: 500;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  padding: 0.7rem 0.75rem;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
}

.field-group textarea {
  resize: vertical;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: 2px solid rgba(170, 125, 52, 0.28);
  border-color: rgba(170, 125, 52, 0.65);
}

.booking-feedback {
  margin-top: 0.65rem;
  min-height: 1.2rem;
  font-size: 0.9rem;
}

.booking-meta {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 1.6rem;
  padding: 3rem 0 1.2rem;
  background: linear-gradient(180deg, rgba(228, 239, 250, 0.72), rgba(243, 249, 255, 0.96));
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.site-footer h2,
.site-footer h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  margin-bottom: 0.6rem;
}

.legal-links {
  text-align: center;
  margin: 1rem 0 0;
  font-size: 0.92rem;
}

.legal-links a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.legal-page {
  padding-top: clamp(2.7rem, 6vw, 4.2rem);
}

.legal-content {
  width: min(880px, calc(100% - 2.4rem));
}

.legal-content h1 {
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  margin-bottom: 0.55rem;
}

.legal-intro {
  margin-bottom: 1.35rem;
  color: var(--ink);
}

.legal-block {
  border-top: 1px solid rgba(18, 26, 38, 0.12);
  padding-top: 0.95rem;
  margin-top: 0.95rem;
}

.legal-block h2 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.2rem, 2.7vw, 1.7rem);
}

.legal-list {
  margin: 0;
  padding-left: 1.15rem;
}

.legal-list li {
  margin-bottom: 0.25rem;
  color: var(--ink-soft);
}

.legal-back-link {
  margin-top: 1.4rem;
}

.copyright {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 1.8rem;
}

.mobile-call-cta {
  display: none;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.9rem;
  align-items: center;
  padding: 0.85rem 0.95rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(18, 26, 38, 0.16);
  background: rgba(18, 26, 38, 0.92);
  color: #f6f3ec;
  box-shadow: 0 14px 26px rgba(16, 22, 31, 0.28);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner p {
  margin: 0;
  color: #f6f3ec;
  font-size: 0.9rem;
  line-height: 1.45;
}

.cookie-banner .btn {
  white-space: nowrap;
  padding: 0.58rem 0.9rem;
}

@media (max-width: 820px) {
  .mobile-call-cta {
    display: inline-flex;
    position: fixed;
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
    z-index: 50;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #aa7d34, #936924);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.78rem 1rem;
    box-shadow: 0 12px 24px rgba(16, 22, 31, 0.24);
  }

  .site-footer {
    padding-bottom: 4.8rem;
  }
}

.reveal-up {
  opacity: 0;
  transform: translateY(18px);
  animation: revealUp 700ms ease forwards;
}

.delay-1 {
  animation-delay: 120ms;
}

.delay-2 {
  animation-delay: 220ms;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 940px) {
  .hero-grid,
  .citizenship-grid,
  .process-grid,
  .areas-grid,
  .split,
  .kanzlei-section,
  .footer-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .legal-content {
    width: min(100%, calc(100% - 2.4rem));
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .portrait {
    height: clamp(260px, 62vw, 430px);
  }

  .nav {
    gap: 0.8rem;
    font-size: 0.95rem;
  }

  .header-actions {
    gap: 0.7rem;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    min-height: auto;
    padding: 0.58rem 0 0.74rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .brand {
    justify-content: center;
  }

  .header-actions {
    flex-direction: column;
    justify-content: center;
    gap: 0.55rem;
  }

  .nav {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 0.4rem;
    column-gap: 0.85rem;
    font-size: 0.9rem;
  }

  .hero.section {
    padding-top: clamp(2.2rem, 7vw, 3rem);
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 0.95rem;
    max-width: 220px;
    gap: 0.45rem;
  }

  .brand span {
    display: none;
  }

  .brand-logo {
    height: 29px;
  }

  .nav {
    gap: 0.6rem;
    font-size: 0.85rem;
  }

  .lang-btn {
    font-size: 0.73rem;
    padding: 0.3rem 0.52rem;
  }

  .mobile-call-cta {
    font-size: 0.95rem;
    padding: 0.74rem 0.95rem;
  }

  .site-footer {
    padding-bottom: 4.8rem;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    left: 0.8rem;
    right: 0.8rem;
    bottom: 4.1rem;
  }

  .cookie-banner .btn {
    width: 100%;
  }
}
