:root {
  --bg: #f7f0e9;
  --bg-soft: #fbf8f4;
  --text: #241f1b;
  --muted: #6f635b;
  --line: #e4d8cc;
  --accent: #b78955;
  --accent-dark: #8f683e;
  --dark: #332d27;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(53, 43, 35, .12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --script: "Parisienne", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg-soft);
  line-height: 1.7;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--dark);
  color: white;
  padding: 10px 14px;
  z-index: 20;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  background: rgba(251, 248, 244, .80);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(228, 216, 204, .72);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  background: rgba(251, 248, 244, .97);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.brand-script {
  font-family: var(--script);
  font-size: 42px;
  color: var(--accent-dark);
}

.brand-text {
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: 12px;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.main-nav a:not(.btn) {
  position: relative;
}

.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 7px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 25px;
  background: var(--accent);
  color: white;
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 12px 28px rgba(143, 104, 62, .22);
}

.btn-small {
  min-height: 40px;
  padding-inline: 18px;
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
}

.btn-outline:hover {
  background: var(--accent-dark);
  color: white;
}

/* HERO */

.hero,
.hero-home {
  position: relative;
  min-height: 820px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-judit.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  transform: scale(1.015);
  z-index: 1;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
          radial-gradient(
                  circle at 28% 46%,
                  rgba(255,255,255,0) 0%,
                  rgba(255,255,255,0) 30%,
                  rgba(247,240,233,.42) 62%,
                  rgba(247,240,233,.82) 100%
          );
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
          linear-gradient(
                  90deg,
                  rgba(36, 31, 27, .04) 0%,
                  rgba(247, 240, 233, .02) 28%,
                  rgba(247, 240, 233, .36) 50%,
                  rgba(247, 240, 233, .88) 78%,
                  rgba(247, 240, 233, .98) 100%
          ),
          linear-gradient(
                  180deg,
                  rgba(36, 31, 27, .08) 0%,
                  rgba(36, 31, 27, 0) 42%,
                  rgba(36, 31, 27, .12) 100%
          );
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(560px, 100%);
  padding: 64px 58px 58px;
  background: rgba(255, 250, 245, .86);
  border: 1px solid rgba(255, 255, 255, .72);
  box-shadow:
          0 28px 80px rgba(53, 43, 35, .16),
          inset 0 1px 0 rgba(255,255,255,.85);
  backdrop-filter: blur(20px);
  border-radius: 28px;
}

.hero-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 56px;
  width: 5px;
  height: 128px;
  background: linear-gradient(180deg, var(--accent), rgba(183, 137, 85, .18));
}

.hero-content::after {
  content: "";
  position: absolute;
  right: 34px;
  bottom: 28px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(183, 137, 85, .18);
  border-radius: 50%;
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 800;
}

.eyebrow::after {
  content: "";
  display: block;
  width: 58px;
  height: 1px;
  background: rgba(183, 137, 85, .62);
}

.hero-content h1,
.hero h1 {
  margin: 0 0 26px;
  font-family: var(--serif);
  font-size: clamp(50px, 5.2vw, 76px);
  line-height: .96;
  font-weight: 500;
  letter-spacing: -.025em;
  color: var(--text);
}

.hero-lead {
  margin: 0 0 34px;
  max-width: 470px;
  font-size: 18px;
  line-height: 1.85;
  color: #584c44;
}

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

.hero-actions .btn {
  min-height: 50px;
  padding-inline: 27px;
}

.hero-actions .btn-outline {
  background: rgba(255,255,255,.42);
  border-color: rgba(143, 104, 62, .34);
}

.hero-actions .btn-outline:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

/* SECTIONS */

section {
  padding: 96px 0;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading p:last-child {
  color: var(--muted);
}

.cards {
  display: grid;
  gap: 28px;
}

.three {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.service-card {
  background: var(--white);
  padding: 40px 34px;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(53, 43, 35, .06);
  border-radius: 22px;
}

.icon {
  display: block;
  font-size: 42px;
  color: var(--accent-dark);
  margin-bottom: 18px;
}

.card p,
.service-card p {
  color: var(--muted);
}

.center {
  text-align: center;
  margin-top: 36px;
}

/* BEMUTATKOZÁS */

.intro-section {
  position: relative;
  overflow: hidden;
  background:
          radial-gradient(circle at 12% 8%, rgba(183, 137, 85, .14), transparent 30%),
          linear-gradient(180deg, #f7f0e9 0%, #fbf8f4 100%);
  padding: 82px 20px 110px;
}

.intro-section::before {
  content: "";
  position: absolute;
  right: -120px;
  top: 70px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(183, 137, 85, .07);
  pointer-events: none;
}

.intro-container {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.intro-label {
  max-width: 1040px;
  margin: 0 auto 22px;
  text-align: right;
}

.intro-label span {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 13px;
  font-weight: 800;
}

.intro-label span::after {
  content: "";
  width: 76px;
  height: 1px;
  background: var(--accent);
  opacity: .7;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 800;
}

.section-tag::after {
  content: "";
  width: 60px;
  height: 1px;
  background: var(--accent);
}

.intro-card {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  background: rgba(255, 250, 245, .96);
  border: 1px solid rgba(228, 216, 204, .95);
  box-shadow: 0 22px 65px rgba(61, 44, 32, .09);
  padding: clamp(38px, 5vw, 66px);
  border-radius: 30px;
  color: var(--text);
}

.intro-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 58px;
  width: 5px;
  height: 112px;
  background: linear-gradient(180deg, var(--accent), rgba(183, 137, 85, .25));
}

.intro-card h2 {
  margin: 0 0 26px;
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1;
  font-weight: 500;
  color: var(--text);
}

.intro-card > p {
  max-width: 850px;
  margin: 0 0 19px;
  font-size: 17px;
  line-height: 1.82;
  color: var(--muted);
}

.intro-card > p:first-of-type {
  font-size: 21px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 30px;
}

.intro-card strong {
  color: var(--text);
  font-weight: 800;
}

.intro-card > p:nth-of-type(3) {
  padding: 28px 32px;
  margin: 34px 0;
  max-width: 900px;
  background: linear-gradient(135deg, #f4e7da, #fff8f1);
  border-left: 4px solid var(--accent);
  border-radius: 22px;
  color: #51453d;
  box-shadow: 0 14px 36px rgba(53, 43, 35, .055);
}

.intro-list-box {
  max-width: 900px;
  margin: 38px 0;
  padding: 34px 36px;
  background: #fff6ee;
  border: 1px solid rgba(228, 216, 204, .95);
  box-shadow: 0 14px 38px rgba(53, 43, 35, .055);
  border-radius: 22px;
}

.intro-list-box h3 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: 31px;
  line-height: 1.18;
  font-weight: 500;
  color: var(--text);
}

.intro-list-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.intro-list-box li {
  position: relative;
  min-height: 54px;
  padding: 15px 18px 15px 44px;
  background: rgba(255, 255, 255, .68);
  border: 1px solid rgba(228, 216, 204, .75);
  border-radius: 16px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--muted);
}

.intro-list-box li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 21px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(183, 137, 85, .14);
}

.intro-signature {
  display: inline-block;
  margin-top: 28px !important;
  margin-bottom: 0 !important;
  font-family: var(--script);
  font-size: 40px !important;
  line-height: 1.2 !important;
  color: var(--accent-dark) !important;
}

/* ABOUT */

.about {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 0;
  box-shadow: var(--shadow);
  background: white;
  border-radius: 28px;
  overflow: hidden;
}

.quote {
  padding: 70px;
  background: linear-gradient(135deg, #f1dfcf, #fff7ef);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 28px;
}

.quote p {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.2;
}

.quote span {
  font-family: var(--script);
  color: var(--accent-dark);
  font-size: 44px;
}

.about-text {
  padding: 70px;
}

.about-text p:not(.eyebrow) {
  color: var(--muted);
}

/* SZOLGÁLTATÁSOK / BLOG */

.services,
.blog {
  background: var(--bg-soft);
}

.service-card {
  text-align: left;
}

.service-card a {
  color: var(--accent-dark);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .08em;
}

.coaching-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 42px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 58px);
  background: rgba(255, 250, 245, .96);
  border: 1px solid rgba(228, 216, 204, .95);
  border-radius: 30px;
  box-shadow: 0 22px 65px rgba(61, 44, 32, .09);
}

.offer-main h3 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1;
  font-weight: 500;
}

.offer-main p {
  max-width: 720px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.82;
}

.offer-main strong {
  color: var(--text);
  font-weight: 800;
}

.offer-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.offer-price-card {
  padding: 30px 28px;
  background: linear-gradient(135deg, #f4e7da, #fff8f1);
  border: 1px solid rgba(228, 216, 204, .95);
  border-radius: 24px;
}

.offer-price-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 800;
}

.offer-price-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
  font-weight: 500;
  color: var(--text);
}

.offer-price-card small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.offer-facts {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.offer-facts li {
  position: relative;
  padding: 15px 16px 15px 42px;
  background: rgba(255, 255, 255, .68);
  border: 1px solid rgba(228, 216, 204, .8);
  border-radius: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.offer-facts li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 21px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(183, 137, 85, .14);
}

.process-grid {
  max-width: 1080px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.process-step {
  padding: 28px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 16px 42px rgba(53, 43, 35, .055);
}

.process-step span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-weight: 800;
  letter-spacing: .16em;
  font-size: 12px;
}

.process-step h4 {
  margin: 0 0 10px;
  font-size: 19px;
  color: var(--text);
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.service-note {
  max-width: 860px;
  margin: 34px auto 0;
  text-align: center;
}

.service-note p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.28;
  color: var(--text);
}

@media (max-width: 980px) {
  .coaching-offer {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .offer-side {
    max-width: 480px;
  }
}

@media (max-width: 620px) {
  .coaching-offer {
    padding: 30px 22px;
    border-radius: 24px;
  }

  .offer-price-card {
    padding: 26px 22px;
  }

  .offer-price-card strong {
    font-size: 38px;
  }

  .process-step {
    padding: 24px 20px;
  }
}

/* CTA */

.cta {
  background: var(--dark);
  color: white;
  text-align: center;
}

.cta p {
  color: #e8ded4;
  max-width: 620px;
  margin: 20px auto 30px;
}

/* KAPCSOLAT */

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact p {
  color: var(--muted);
}

.contact a {
  color: var(--accent-dark);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 18px;
  background: white;
  border: 1px solid var(--line);
  padding: 34px;
  box-shadow: var(--shadow);
  border-radius: 24px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 14px 15px;
  font: inherit;
  background: #fffdfb;
  border-radius: 12px;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(183, 137, 85, .3);
  border-color: var(--accent);
}

/* FOOTER */

.site-footer {
  background: #201c18;
  color: white;
  padding: 36px 0;
}

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

.footer-brand .brand-script {
  color: #e1bd92;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ANIMÁCIÓ */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* RESPONSIVE */

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

  .main-nav {
    position: fixed;
    inset: 82px 0 auto;
    background: var(--bg-soft);
    padding: 22px 24px 30px;
    display: grid;
    gap: 18px;
    transform: translateY(-130%);
    transition: transform .25s ease;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .hero,
  .hero-home {
    min-height: auto;
    padding: 330px 0 56px;
    align-items: flex-start;
  }

  .hero-bg {
    inset: 0 0 auto 0;
    height: 430px;
    background-image: url("assets/hero-judit-mobile.jpg");
    background-size: cover;
    background-position: center 18%;
    transform: none;
  }

  .hero-bg::after {
    background:
            linear-gradient(
                    180deg,
                    rgba(247, 240, 233, 0) 0%,
                    rgba(247, 240, 233, .08) 42%,
                    rgba(247, 240, 233, .76) 78%,
                    rgba(247, 240, 233, .98) 100%
            );
  }

  .hero-overlay {
    background:
            linear-gradient(
                    180deg,
                    rgba(247, 240, 233, 0) 0%,
                    rgba(247, 240, 233, .30) 54%,
                    rgba(247, 240, 233, .98) 100%
            );
  }

  .hero-inner {
    justify-content: center;
    align-items: flex-start;
    margin-top: -72px;
  }

  .hero-content {
    width: calc(100% - 24px);
    max-width: 720px;
    padding: 36px 30px;
    background: rgba(255,250,245,.94);
    backdrop-filter: blur(16px);
    border-radius: 24px;
  }

  .hero-content h1,
  .hero h1 {
    font-size: clamp(42px, 9vw, 62px);
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    max-width: 820px;
    width: 100%;
    justify-self: center;
  }

  .three {
    grid-template-columns: 1fr;
  }

  .intro-section {
    padding: 70px 18px 90px;
  }

  .intro-label {
    text-align: left;
  }

  .intro-label span {
    justify-content: flex-start;
  }

  .intro-card {
    padding: 40px 32px;
    border-radius: 28px;
  }

  .intro-list-box ul {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 72px;
  }

  .main-nav {
    inset: 72px 0 auto;
  }

  .brand-script {
    font-size: 34px;
  }

  .brand-text {
    font-size: 10px;
  }

  .hero,
  .hero-home {
    padding: 315px 0 48px;
  }

  .hero-bg {
    height: 405px;
    background-position: center 14%;
  }

  .hero-inner {
    margin-top: -74px;
  }


  .hero-content {
    padding: 40px 24px;
    border-radius: 22px;
  }

  .hero-content::before {
    top: 34px;
    height: 92px;
  }

  .hero-content::after {
    display: none;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: .16em;
  }

  .eyebrow::after {
    width: 38px;
  }

  .hero-content h1,
  .hero h1 {
    font-size: 40px;
  }

  .hero-lead,
  .intro-card > p {
    font-size: 16px;
  }

  section {
    padding: 70px 0;
  }

  .intro-section {
    padding: 38px 14px 76px;
  }

  .intro-label span {
    letter-spacing: .16em;
    font-size: 12px;
  }

  .intro-card {
    padding: 30px 22px;
    border-radius: 24px;
  }

  .intro-card::before {
    top: 38px;
    height: 82px;
  }

  .intro-card h2 {
    font-size: 42px;
  }

  .intro-card > p {
    line-height: 1.76;
  }

  .intro-card > p:first-of-type {
    font-size: 18px;
  }

  .intro-card > p:nth-of-type(3) {
    padding: 22px 20px;
  }

  .intro-list-box {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .intro-list-box h3 {
    font-size: 26px;
  }

  .intro-list-box li {
    padding: 14px 15px 14px 40px;
  }

  .intro-signature {
    font-size: 33px !important;
  }

  .quote,
  .about-text {
    padding: 40px 26px;
  }
}

/* SOCIAL */

.social-section{
  padding:100px 0;
  background:#f8f4ef;
}

.social-heading{
  text-align:center;
  max-width:700px;
  margin:0 auto 60px;
}

.social-heading h2{
  margin:20px 0;
  font-family:var(--serif);
  font-size:clamp(42px,5vw,64px);
  font-weight:500;
  line-height:1;
}

.social-heading p{
  color:var(--muted);
}

.social-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.social-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  min-height:220px;

  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;

  box-shadow:0 18px 50px rgba(53,43,35,.06);

  transition:.25s ease;
}

.social-card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 70px rgba(53,43,35,.12);
}

.social-card i{
  font-size:64px;
  margin-bottom:20px;
  color:var(--accent-dark);
}

.social-card span{
  font-size:18px;
  font-weight:700;
  color:var(--text);
}

@media (max-width:980px){

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

}

@media (max-width:620px){

  .social-section{
    padding:70px 0;
  }

  .social-grid{
    grid-template-columns:1fr;
  }

  .social-card{
    min-height:180px;
  }

  .social-card i{
    font-size:54px;
  }

}

/* LEGAL PAGE */

.legal-hero {
  padding: 170px 0 80px;
  background:
          radial-gradient(circle at 18% 20%, rgba(183, 137, 85, .16), transparent 34%),
          linear-gradient(180deg, #f7f0e9 0%, #fbf8f4 100%);
}

.legal-hero h1 {
  max-width: 920px;
  margin: 22px 0 18px;
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 78px);
  line-height: .98;
  font-weight: 500;
  color: var(--text);
}

.legal-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.legal-section {
  padding: 70px 0 110px;
  background: var(--bg-soft);
}

.legal-container {
  max-width: 1040px;
}

.legal-card {
  background: rgba(255, 250, 245, .96);
  border: 1px solid rgba(228, 216, 204, .95);
  border-radius: 28px;
  box-shadow: 0 18px 52px rgba(53, 43, 35, .07);
  padding: clamp(28px, 4vw, 52px);
  margin-bottom: 28px;
}

.legal-card h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
  font-weight: 500;
  color: var(--text);
}

.legal-card h3 {
  margin: 28px 0 12px;
  font-size: 18px;
  color: var(--text);
}

.legal-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.legal-card a {
  color: var(--accent-dark);
  font-weight: 700;
}

.legal-card ul {
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.legal-card li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  line-height: 1.7;
}

.legal-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .75em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(183, 137, 85, .13);
}

.legal-data-grid {
  display: grid;
  gap: 10px;
  padding: 26px;
  margin: 22px 0 28px;
  background: #fff6ee;
  border: 1px solid rgba(228, 216, 204, .9);
  border-radius: 22px;
}

.legal-data-grid p {
  margin: 0;
}

/* SOCIAL */

.social-section {
  padding: 100px 0;
  background: #f8f4ef;
}

.social-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.social-heading h2 {
  margin: 20px 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 500;
  line-height: 1;
}

.social-heading p {
  color: var(--muted);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(53,43,35,.06);
  transition: .25s ease;
}

.social-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(53,43,35,.12);
}

.social-card i {
  font-size: 64px;
  margin-bottom: 20px;
  color: var(--accent-dark);
}

.social-card span {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

@media (max-width: 980px) {
  .legal-hero {
    padding: 140px 0 60px;
  }

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

@media (max-width: 620px) {
  .legal-hero {
    padding: 120px 0 48px;
  }

  .legal-section {
    padding: 48px 0 72px;
  }

  .legal-card {
    border-radius: 22px;
  }

  .legal-data-grid {
    padding: 22px 18px;
  }

  .social-section {
    padding: 70px 0;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .social-card {
    min-height: 180px;
  }

  .social-card i {
    font-size: 54px;
  }
}