@charset "UTF-8";

:root {
  --bg: #0d0b0e;
  --bg-alt: #131015;
  --bg-elev: #1a1620;
  --bg-elev-2: #211b28;
  --clay: #d97a4d;
  --clay-light: #f2a877;
  --clay-dark: #b5602f;
  --glaze: #7fb8a8;
  --glaze-light: #a3d4c4;
  --gold: #e0b872;
  --txt: #ede6e3;
  --txt-dim: #b8aeb2;
  --txt-faint: #8b7f85;
  --border: rgba(237, 230, 227, 0.08);
  --border-2: rgba(237, 230, 227, 0.14);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.35), 0 2px 8px rgba(0,0,0,0.25);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.45), 0 8px 24px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 0 1px rgba(217,122,77,0.15), 0 12px 40px rgba(217,122,77,0.18);

  --ff: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --sec-pad: clamp(4rem, 8vw, 7.5rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff);
  background: var(--bg);
  color: var(--txt);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

h1, h2, h3, h4 {
  font-family: var(--ff);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  color: var(--txt);
}

p { margin: 0; color: var(--txt-dim); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.7rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.3s ease, background 0.3s ease;
  min-height: 48px;

  &.btn-primary {
    background: linear-gradient(135deg, var(--clay-light), var(--clay), var(--clay-dark));
    color: #1a0e08;
    box-shadow: var(--shadow-sm), 0 0 0 1px rgba(217,122,77,0.2), 0 8px 28px rgba(217,122,77,0.28);

    &:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md), 0 0 0 1px rgba(217,122,77,0.3), 0 14px 36px rgba(217,122,77,0.4);
    }
  }

  &.btn-ghost {
    background: rgba(237,230,227,0.04);
    color: var(--txt);
    border: 1px solid var(--border-2);
    backdrop-filter: blur(8px);

    &:hover {
      background: rgba(237,230,227,0.08);
      transform: translateY(-2px);
      border-color: rgba(237,230,227,0.25);
    }
  }

  &.btn-ghost-sm {
    background: rgba(237,230,227,0.06);
    color: var(--txt);
    border: 1px solid var(--border-2);
    font-size: 0.85rem;
    padding: 0.7rem 1.2rem;
    &:hover { background: rgba(237,230,227,0.1); }
  }

  &.btn-text {
    background: transparent;
    color: var(--txt-faint);
    font-size: 0.85rem;
    padding: 0.7rem 0.5rem;
    &:hover { color: var(--txt-dim); }
  }
}


.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 1.1rem 0;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
  border-bottom: 1px solid transparent;

  &.scrolled {
    background: rgba(13,11,14,0.65);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  }

  .hdr-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(1.2rem, 4vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.hdr-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--txt);

  em {
    font-style: normal;
    color: var(--clay-light);
  }
}

.hdr-nav {
  display: flex;
  gap: 2.1rem;
  align-items: center;

  a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--txt-dim);
    position: relative;
    padding: 0.3rem 0;

    &::after {
      content: '';
      position: absolute;
      left: 0; bottom: -2px;
      width: 0; height: 2px;
      background: linear-gradient(90deg, var(--clay), var(--gold));
      transition: width 0.3s ease;
    }

    &:hover { color: var(--txt); }
    &:hover::after { width: 100%; }
    &.active { color: var(--clay-light); }
    &.active::after { width: 100%; }
  }
}

.hdr-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--clay-light), var(--clay));
  color: #1a0e08;
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: var(--shadow-sm), 0 0 20px rgba(217,122,77,0.25);
  transition: transform 0.25s ease, box-shadow 0.3s ease;

  &:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), 0 0 28px rgba(217,122,77,0.4);
  }
}

.hdr-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  background: rgba(237,230,227,0.06);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  z-index: 600;
  position: relative;
  transition: background 0.3s ease;

  span {
    width: 20px;
    height: 2px;
    background: var(--txt);
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.3s ease;
  }

  &.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  &.open span:nth-child(2) { opacity: 0; }
  &.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}


.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 450;
  background: linear-gradient(160deg, #1a1420, #0d0b0e 70%);
  clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);
  transition: clip-path 0.65s cubic-bezier(0.76,0,0.24,1);
  display: flex;
  align-items: center;
  justify-content: center;

  &.open {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .mob-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    text-align: center;

    a {
      font-size: 1.7rem;
      font-weight: 700;
      color: var(--txt);
      opacity: 0;
      transform: translateY(14px);
      transition: opacity 0.4s ease, transform 0.4s ease;
    }
  }

  &.open .mob-menu-nav a {
    opacity: 1;
    transform: translateY(0);
  }
  &.open .mob-menu-nav a:nth-child(1) { transition-delay: 0.35s; }
  &.open .mob-menu-nav a:nth-child(2) { transition-delay: 0.42s; }
  &.open .mob-menu-nav a:nth-child(3) { transition-delay: 0.49s; }
  &.open .mob-menu-nav a:nth-child(4) { transition-delay: 0.56s; }
  &.open .mob-menu-nav a:nth-child(5) { transition-delay: 0.63s; }
}


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(7rem, 14vw, 9rem) clamp(1.2rem, 4vw, 2.5rem) 4rem;
  background: radial-gradient(120% 100% at 15% 0%, #221a24 0%, #0d0b0e 55%);
  overflow: hidden;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(217,122,77,0.22), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  flex: 1 1 500px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(217,122,77,0.1);
  border: 1px solid rgba(217,122,77,0.25);
  color: var(--clay-light);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--txt);

  span {
    background: linear-gradient(120deg, var(--clay-light), var(--gold) 60%, var(--glaze-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.hero p {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--txt-dim);
  max-width: 540px;
  margin-bottom: 2.2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.8rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;

  div {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--txt-faint);
  }

  i { color: var(--clay-light); font-size: 1rem; }
}

.hero-img-wrap {
  position: relative;
  z-index: 2;
  flex: 1 1 380px;
  max-width: 480px;
  margin-left: auto;
}

.hero-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border-2);
}

.hero-img-card {
  position: absolute;
  bottom: -1.5rem;
  left: -2rem;
  background: linear-gradient(150deg, var(--bg-elev-2), var(--bg-elev));
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
  max-width: 280px;

  i {
    font-size: 1.5rem;
    color: var(--gold);
    background: rgba(224,184,114,0.12);
    padding: 0.7rem;
    border-radius: var(--radius-sm);
  }

  strong { display: block; font-size: 0.9rem; color: var(--txt); }
  span { font-size: 0.78rem; color: var(--txt-faint); }
}


.sec {
  padding: var(--sec-pad) clamp(1.2rem, 4vw, 2.5rem);
  position: relative;
}

.sec-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.sec-eyebrow {
  display: inline-block;
  color: var(--clay-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.9rem;
}

.sec-title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  max-width: 800px;
}

.sec-lead {
  font-size: 1.08rem;
  color: var(--txt-dim);
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.sec-intro {
  background: var(--bg);
  text-align: center;

  .sec-inner { max-width: 780px; margin: 0 auto; }
  .sec-title { margin: 0 auto 1.2rem; }
  .sec-lead { margin: 0 auto; }
}


.sec-features {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  padding-top: 2rem;
}


.zigzag {
  display: flex;
  flex-direction: column;
  gap: clamp(3.5rem, 7vw, 5.5rem);
  margin-top: 1rem;
}

.zigzag-row {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;

  &.reverse { flex-direction: row-reverse; }
}

.zigzag-media {
  flex: 1 1 380px;
  position: relative;

  img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--border);
    transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1);
  }

  &:hover img { transform: scale(1.02) translateY(-4px); }
}

.zigzag-text {
  flex: 1 1 380px;
  position: relative;
}

.zigzag-num {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(217,122,77,0.35);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.zigzag-text h3 {
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.zigzag-text p {
  margin-bottom: 1.3rem;
}

.zigzag-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;

  li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.92rem;
    color: var(--txt-dim);
  }

  i {
    color: var(--glaze);
    margin-top: 0.2rem;
    flex-shrink: 0;
  }
}


.sec-cards {
  background: var(--bg-alt);
}

.crd-grid {
  counter-reset: crdcounter;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
  margin-top: 1rem;
}

.crd {
  counter-increment: crdcounter;
  position: relative;
  background: linear-gradient(160deg, var(--bg-elev-2), var(--bg-elev));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem 1.8rem;
  transition: transform 0.35s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: var(--shadow-sm);

  &::before {
    content: counter(crdcounter, decimal-leading-zero);
    position: absolute;
    top: 1.3rem;
    right: 1.6rem;
    font-size: 1.6rem;
    font-weight: 800;
    color: rgba(237,230,227,0.08);
  }

  &:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), 0 0 32px rgba(217,122,77,0.12);
    border-color: rgba(217,122,77,0.25);
  }
}

.crd-ico {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(217,122,77,0.18), rgba(127,184,168,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;

  i { font-size: 1.4rem; color: var(--clay-light); }
}

.crd-txt h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.crd-txt p {
  font-size: 0.92rem;
  color: var(--txt-dim);
}


.sec-gallery {
  background: var(--bg);
}

.gallery-swiper {
  margin-top: 1rem;
  padding-bottom: 3.5rem;

  .swiper-slide {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);

    img {
      width: 100%;
      height: 320px;
      object-fit: cover;
    }

    span {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 1rem 1.2rem;
      background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent);
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--txt);
    }
  }

  .swiper-pagination-bullet {
    background: var(--txt-faint);
    opacity: 0.5;
  }
  .swiper-pagination-bullet-active {
    background: var(--clay-light);
    opacity: 1;
  }
  .swiper-button-next, .swiper-button-prev {
    color: var(--clay-light);
    width: 42px; height: 42px;
    background: rgba(26,22,32,0.7);
    border-radius: 50%;
    backdrop-filter: blur(8px);

    &::after { font-size: 1.1rem; }
  }
}


.sec-flow { background: var(--bg-alt); }

.sec-flow-inner {
  display: flex;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  flex-wrap: wrap;
}

.flow-txt { flex: 1 1 480px; }
.flow-img {
  flex: 1 1 380px;
  img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
  }
}

.flow-steps {
  counter-reset: flowcounter;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 1.5rem;
}

.flow-step {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;

  h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
  p { font-size: 0.92rem; }
}

.flow-step-num {
  counter-increment: flowcounter;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--clay), var(--clay-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #1a0e08;
  box-shadow: var(--shadow-sm);

  &::before { content: counter(flowcounter); }
}


.sec-split { background: var(--bg); }

.sec-split-inner {
  display: flex;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  flex-wrap: wrap;
}

.split-img {
  flex: 1 1 420px;
  img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
  }
}

.split-txt {
  flex: 1 1 420px;

  p { margin-bottom: 1.1rem; font-size: 0.98rem; }
}


.sec-cta {
  background: linear-gradient(135deg, #2a1a14, #1a1420 60%);
  text-align: center;
}

.sec-cta-inner {
  max-width: 640px;
  margin: 0 auto;

  h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.3rem);
    margin-bottom: 1rem;
  }
  p {
    margin-bottom: 2rem;
    font-size: 1.02rem;
  }
}


.page-hero {
  padding: clamp(8rem, 14vw, 10rem) clamp(1.2rem, 4vw, 2.5rem) clamp(3rem, 6vw, 4.5rem);
  background: radial-gradient(120% 100% at 85% 0%, #221a24 0%, #0d0b0e 60%);
  text-align: center;
}

.page-hero-inner {
  max-width: 760px;
  margin: 0 auto;

  h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    letter-spacing: -0.02em;
    margin-bottom: 1.1rem;
  }
  p {
    font-size: 1.05rem;
    color: var(--txt-dim);
  }
}

.page-hero-sm {
  padding: clamp(7rem, 12vw, 8.5rem) clamp(1.2rem, 4vw, 2.5rem) 2.5rem;
}


.sec-contact { background: var(--bg-alt); }

.sec-contact-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-info {
  .sec-title { font-size: 1.6rem; margin-bottom: 1.5rem; }
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;

  li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }

  i {
    width: 42px; height: 42px;
    border-radius: var(--radius-md);
    background: rgba(217,122,77,0.12);
    color: var(--clay-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  strong { display: block; font-size: 0.9rem; color: var(--txt); margin-bottom: 0.2rem; }
  span { font-size: 0.9rem; color: var(--txt-dim); }
}


.frm {
  background: linear-gradient(160deg, var(--bg-elev-2), var(--bg-elev));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-md);

  .sec-title { font-size: 1.5rem; margin-bottom: 1.4rem; }
}

.frm-row {
  margin-bottom: 1.2rem;

  &.frm-row-inline {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 1.2rem;
  }

  &.frm-row-secondary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 0;
  }
}

.frm-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;

  label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--txt-dim);
  }

  input, textarea {
    background: rgba(13,11,14,0.5);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    color: var(--txt);
    font-family: var(--ff);
    font-size: 0.92rem;
    resize: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;

    &:focus {
      outline: none;
      border-color: var(--clay);
      box-shadow: 0 0 0 3px rgba(217,122,77,0.15);
    }
  }
}

.frm-check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--txt-faint);
  max-width: 420px;
  cursor: pointer;

  input {
    width: 20px; height: 20px;
    flex-shrink: 0;
    accent-color: var(--clay);
    margin-top: 0.1rem;
  }

  a { color: var(--clay-light); text-decoration: underline; }
}


.sec-area { background: var(--bg); }

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.area-item {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  i {
    font-size: 1.5rem;
    color: var(--glaze);
    margin-bottom: 0.9rem;
    display: block;
  }
  h3 { font-size: 1.02rem; margin-bottom: 0.5rem; }
  p { font-size: 0.88rem; }

  &:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }
}


.sec-map { background: var(--bg-alt); }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  margin-top: 1rem;
}


.thanks-sec {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(8rem,14vw,10rem) 1.5rem 4rem;
}

.thanks-card {
  max-width: 560px;
  text-align: center;
  background: linear-gradient(160deg, var(--bg-elev-2), var(--bg-elev));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-lg);
}

.thanks-ico {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clay-light), var(--clay-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);

  i { font-size: 1.8rem; color: #1a0e08; }
}

.thanks-card h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
  margin-bottom: 1rem;
}
.thanks-card p { margin-bottom: 1rem; }

.thanks-redirect {
  font-size: 0.9rem;
  color: var(--txt-faint);
  margin-bottom: 1.8rem;

  span { color: var(--clay-light); font-weight: 700; }
}


.sec-legal-plain { background: var(--bg-alt); }

.legal-plain-inner {
  max-width: 820px;
  margin: 0 auto;

  h2 {
    font-size: 1.35rem;
    margin: 2.4rem 0 1rem;
  }
  p { margin-bottom: 1rem; font-size: 0.96rem; }
  a { color: var(--clay-light); text-decoration: underline; }
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  background: var(--bg-elev);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);

  th, td {
    padding: 0.9rem 1.2rem;
    text-align: left;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
  }
  th {
    color: var(--txt-faint);
    font-weight: 600;
    width: 40%;
  }
  td { color: var(--txt); }
  tr:last-child th, tr:last-child td { border-bottom: none; }
}

.sec-legal-toc { background: var(--bg); }

.legal-toc-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 100px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.4rem;

  .legal-toc-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--txt-faint);
    margin: 0 0 1rem;
    font-weight: 700;
  }

  nav {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }

  .toc-link {
    font-size: 0.87rem;
    color: var(--txt-dim);
    padding: 0.5rem 0.7rem;
    border-radius: var(--radius-sm);
    transition: background 0.25s ease, color 0.25s ease;

    &:hover { background: rgba(237,230,227,0.05); color: var(--txt); }
    &.active {
      background: rgba(217,122,77,0.12);
      color: var(--clay-light);
      font-weight: 600;
    }
  }
}

.legal-toc-mobile-btn {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.3rem;
  background: var(--bg-elev);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-md);
  color: var(--txt);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  margin-bottom: 1rem;

  i { transition: transform 0.3s ease; }
  &.open i { transform: rotate(180deg); }
}

.legal-content {
  section {
    margin-bottom: 2.4rem;
    scroll-margin-top: 100px;
  }
  h2 {
    font-size: 1.3rem;
    margin-bottom: 0.9rem;
  }
  p {
    font-size: 0.96rem;
    margin-bottom: 0.9rem;
  }
  a { color: var(--clay-light); text-decoration: underline; }
}


.ftr {
  background: #0a080b;
  border-top: 1px solid var(--border);
  padding: 3.5rem clamp(1.2rem, 4vw, 2.5rem) 0;
  margin-top: auto;
}

.ftr-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.ftr-col {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;

  h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--txt-faint);
    margin-bottom: 0.4rem;
  }

  a {
    font-size: 0.9rem;
    color: var(--txt-dim);
    &:hover { color: var(--clay-light); }
  }

  p {
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--txt-dim);
  }
}

.ftr-brand p {
  display: block;
  margin-top: 0.8rem;
  line-height: 1.6;
}

.ftr-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  text-align: center;

  p { font-size: 0.82rem; color: var(--txt-faint); justify-content: center; }
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }


.cookie-consent {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: min(340px, calc(100vw - 2rem));
  background: linear-gradient(160deg, var(--bg-elev-2), var(--bg-elev));
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.2,0.8,0.2,1), opacity 0.5s ease, height 0.4s ease;

  &.visible {
    transform: translateY(0);
    opacity: 1;
  }

  &.hiding {
    transform: translateY(140%);
    opacity: 0;
  }
}

.cookie-consent-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--clay-light), var(--clay-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;

  i { font-size: 1.3rem; color: #1a0e08; }
}

.cookie-consent-msg {
  font-size: 0.88rem;
  color: var(--txt-dim);
  margin-bottom: 1.2rem;
  line-height: 1.55;
}

.cookie-consent-btns {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;

  .btn { width: 100%; justify-content: center; }
}

.cookie-consent-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, margin-top 0.45s ease;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 0;

  &.open {
    max-height: 320px;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border);
  }
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--txt-dim);

  input {
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
  }

  .cookie-slider {
    position: relative;
    width: 40px;
    height: 22px;
    background: rgba(237,230,227,0.15);
    border-radius: 999px;
    transition: background 0.3s ease;
    cursor: pointer;

    &::before {
      content: '';
      position: absolute;
      top: 2px; left: 2px;
      width: 18px; height: 18px;
      background: var(--txt);
      border-radius: 50%;
      transition: transform 0.3s ease;
    }
  }

  input:checked + .cookie-slider {
    background: var(--clay);
  }
  input:checked + .cookie-slider::before {
    transform: translateX(18px);
    background: #1a0e08;
  }
  input:disabled + .cookie-slider {
    opacity: 0.6;
    cursor: not-allowed;
  }
}


@media (max-width: 1024px) {
  .hdr-nav { display: none; }
  .hdr-cta { display: none; }
  .hdr-burger { display: flex; }

  .sec-contact-inner { grid-template-columns: 1fr; }
  .legal-toc-inner { grid-template-columns: 1fr; }
  .legal-toc { display: none; }
  .legal-toc-mobile-btn { display: flex; }
  .legal-toc.mobile-open {
    display: block;
    position: static;
  }

  .ftr-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .hero { flex-direction: column; text-align: left; padding-top: 8rem; }
  .hero-img-wrap { max-width: 100%; margin-left: 0; }
  .hero-img { height: 400px; }
  .hero-img-card { left: 1rem; bottom: -1.2rem; max-width: calc(100% - 2rem); }

  .zigzag-row, .zigzag-row.reverse { flex-direction: column; }
  .sec-flow-inner { flex-direction: column; }
  .sec-split-inner { flex-direction: column; }

  .frm-row.frm-row-inline { grid-template-columns: 1fr; }
  .frm-row-secondary { flex-direction: column; align-items: stretch; }
  .frm-row-secondary .btn { width: 100%; justify-content: center; }

  .ftr-inner { grid-template-columns: 1fr; }

  .cookie-consent {
    right: 0.75rem;
    left: 0.75rem;
    bottom: 0.75rem;
    width: auto;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(2rem, 9vw, 2.6rem); }
  .sec { padding-left: 1.1rem; padding-right: 1.1rem; }
}