:root {
  --red: #d7192d;
  --red-dark: #a70e20;
  --red-deep: #760818;
  --orange: #f7a918;
  --orange-light: #ffc54e;
  --ink: #24191b;
  --muted: #716568;
  --paper: #fff9f3;
  --white: #fff;
  --line: rgba(153, 13, 33, .13);
  --shadow: 0 24px 65px rgba(100, 7, 22, .16);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--paper); font-family: "DM Sans", system-ui, sans-serif; font-size: 1rem; line-height: 1.7; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 100; top: 8px; left: 8px; padding: 10px 14px; border-radius: 8px; color: var(--red); background: var(--white); font-weight: 700; transform: translateY(-140%); }
.skip-link:focus { transform: translateY(0); }

.header { position: absolute; z-index: 40; inset: 0 0 auto; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.16); }
.nav { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; }
.brand > span:last-child { display: flex; flex-direction: column; line-height: 1; }
.brand small { margin-bottom: 4px; font: 700 .69rem/1 Outfit, sans-serif; letter-spacing: .33em; text-transform: uppercase; }
.brand strong { font: 800 1.42rem/1 Outfit, sans-serif; letter-spacing: -.04em; text-transform: uppercase; }
.pill-mark { position: relative; display: grid; place-items: center; width: 53px; height: 32px; overflow: hidden; border: 2px solid var(--white); border-radius: 999px; background: var(--orange); transform: rotate(-13deg); }
.pill-mark::after { content: ""; position: absolute; inset: -4px auto -4px 50%; width: 2px; background: var(--white); transform: rotate(13deg); }
.pill-mark b { z-index: 1; color: var(--white); font: 800 1.3rem/1 Outfit, sans-serif; transform: rotate(13deg) translateX(-7px); }
.menu { display: flex; align-items: center; gap: 27px; font-size: .92rem; font-weight: 700; }
.menu > a:not(.menu-call) { position: relative; padding-block: 8px; }
.menu > a:not(.menu-call)::after { content: ""; position: absolute; height: 2px; left: 0; right: 100%; bottom: 0; background: var(--orange); transition: right .22s ease; }
.menu > a:not(.menu-call):hover::after, .menu > a:not(.menu-call):focus-visible::after { right: 0; }
.menu-call { padding: 11px 18px; border-radius: 999px; color: var(--red-dark); background: var(--white); }
.menu-toggle { display: none; padding: 8px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle i { display: block; width: 27px; height: 2px; margin: 5px; border-radius: 2px; background: var(--white); }

.hero { position: relative; min-height: 760px; padding: 150px 0 112px; overflow: hidden; isolation: isolate; color: var(--white); background: linear-gradient(122deg, var(--red-dark) 0%, var(--red) 62%, #eb263a 100%); }
.hero::before { content: "J"; position: absolute; z-index: -1; right: -30px; bottom: -160px; color: rgba(255,255,255,.035); font: 800 42rem/1 Outfit, sans-serif; }
.hero-orbit { position: absolute; z-index: -1; border-radius: 999px; border: 1px solid rgba(255,255,255,.12); transform: rotate(-28deg); }
.orbit-one { width: 520px; height: 185px; left: -170px; top: 150px; }
.orbit-two { width: 750px; height: 260px; right: -320px; bottom: 15px; border-color: rgba(247,169,24,.18); box-shadow: 0 0 0 50px rgba(255,255,255,.025); }
.hero-cut { position: absolute; z-index: -1; left: -3%; right: -3%; bottom: -84px; height: 130px; border-radius: 50% 50% 0 0; background: var(--paper); }
.hero-layout { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 75px; }
.kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--orange-light); font-size: .78rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.kicker::before { content: ""; width: 30px; height: 2px; background: currentColor; }
.red-kicker { color: var(--red); }
h1, h2, h3 { margin: 0; font-family: Outfit, "DM Sans", sans-serif; line-height: 1.08; letter-spacing: -.045em; }
.hero h1 { max-width: 680px; margin: 22px 0 24px; font-size: clamp(2.8rem, 5.5vw, 5.25rem); }
.hero-copy > p { max-width: 610px; margin: 0; color: rgba(255,255,255,.82); font-size: 1.13rem; line-height: 1.8; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 22px; border-radius: 999px; font-weight: 700; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 20px; fill: currentColor; }
.button-orange { color: var(--red-deep); background: var(--orange); box-shadow: 0 13px 30px rgba(87, 4, 17, .25); }
.button-orange:hover { background: var(--orange-light); box-shadow: 0 16px 35px rgba(87, 4, 17, .34); }
.button-outline { border: 1px solid rgba(255,255,255,.45); color: var(--white); background: rgba(255,255,255,.07); }
.hero-detail { display: flex; align-items: center; gap: 13px; margin-top: 32px; }
.hero-detail > span { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; color: var(--red-dark); background: var(--white); font: 800 1.3rem/1 Outfit, sans-serif; }
.hero-detail p { display: flex; flex-direction: column; margin: 0; line-height: 1.35; }
.hero-detail strong { font-size: .9rem; }
.hero-detail small { margin-top: 3px; color: rgba(255,255,255,.66); font-size: .78rem; }
.hero-visual { position: relative; min-height: 525px; }
.logo-frame { position: absolute; inset: 0 18px 0 0; overflow: hidden; border: 1px solid rgba(255,255,255,.24); border-radius: 44% 44% 18% 44%; background: #d51a2d; box-shadow: 0 35px 75px rgba(82,3,16,.38); transform: rotate(3deg); }
.logo-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 45%, rgba(97,6,20,.48)); pointer-events: none; }
.logo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 67%; transform: scale(1.05); }
.visual-tag { position: absolute; z-index: 2; left: -20px; bottom: 34px; display: flex; flex-direction: column; min-width: 210px; padding: 16px 20px; border-radius: 15px; color: var(--red-deep); background: var(--white); box-shadow: 0 18px 40px rgba(81,2,15,.24); }
.visual-tag b { font-family: Outfit, sans-serif; }
.visual-tag span { color: var(--muted); font-size: .76rem; }

.benefits { position: relative; z-index: 3; margin-top: -38px; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; border-radius: 22px; background: var(--white); box-shadow: var(--shadow); }
.benefit-grid > div { min-height: 115px; display: flex; align-items: center; gap: 16px; padding: 22px 26px; border-right: 1px solid var(--line); }
.benefit-grid > div:last-child { border-right: 0; }
.benefit-grid > div > span { color: var(--orange); font: 800 1.8rem/1 Outfit, sans-serif; }
.benefit-grid p { display: flex; flex-direction: column; margin: 0; line-height: 1.4; }
.benefit-grid strong { font-size: .95rem; }
.benefit-grid small { margin-top: 4px; color: var(--muted); font-size: .78rem; }

.section { padding: 110px 0; }
.about-layout { display: grid; grid-template-columns: 1fr .9fr; gap: 90px; align-items: start; }
.about-title h2, .section-head h2 { max-width: 650px; margin-top: 18px; color: var(--red-deep); font-size: clamp(2.2rem, 4.3vw, 3.85rem); }
.about-text > p { margin: 0 0 20px; color: var(--muted); font-size: 1.05rem; }
.text-link { display: inline-flex; align-items: center; gap: 13px; margin-top: 12px; color: var(--red); font-weight: 700; }
.text-link span { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; color: var(--white); background: var(--red); }
.care { background: var(--white); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.section-head > p { max-width: 400px; margin: 0 0 5px; color: var(--muted); }
.care-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 54px; }
.care-card { position: relative; min-height: 330px; overflow: hidden; padding: 33px; border: 1px solid var(--line); border-radius: 26px; background: var(--paper); transition: transform .25s ease, box-shadow .25s ease; }
.care-card:hover { transform: translateY(-6px); box-shadow: 0 18px 45px rgba(98,6,20,.11); }
.care-card > b { position: absolute; right: 25px; bottom: 20px; color: rgba(150,8,30,.11); font: 800 5.4rem/1 Outfit, sans-serif; }
.care-icon { display: grid; place-items: center; width: 62px; height: 62px; margin-bottom: 70px; border-radius: 19px; color: var(--red); background: rgba(215,25,45,.08); font: 800 1.55rem/1 Outfit, sans-serif; }
.care-card h3 { margin-bottom: 11px; color: var(--red-deep); font-size: 1.35rem; }
.care-card p { position: relative; z-index: 2; max-width: 250px; margin: 0; color: var(--muted); }
.red-card { color: var(--white); border-color: var(--red); background: linear-gradient(145deg, var(--red), var(--red-dark)); }
.orange-card { background: linear-gradient(145deg, var(--orange-light), var(--orange)); }
.red-card .care-icon { color: var(--red); background: var(--white); }
.red-card h3 { color: var(--white); }
.red-card p { color: rgba(255,255,255,.77); }
.red-card > b { color: rgba(255,255,255,.1); }
.orange-card .care-icon { color: var(--red-deep); background: rgba(255,255,255,.65); }
.orange-card h3 { color: var(--red-deep); }
.orange-card p { color: rgba(69,30,0,.76); }
.orange-card > b { color: rgba(118,8,24,.1); }

.contact { padding-top: 0; background: var(--white); }
.contact-card { display: grid; grid-template-columns: .92fr 1.08fr; overflow: hidden; border-radius: 30px; background: var(--red-dark); box-shadow: var(--shadow); }
.contact-copy { padding: 58px; color: var(--white); background: linear-gradient(145deg, var(--red), var(--red-dark)); }
.contact-copy h2 { max-width: 480px; margin: 18px 0; font-size: clamp(2.15rem, 3.7vw, 3.4rem); }
.contact-copy > p { margin: 0 0 29px; color: rgba(255,255,255,.75); }
.contact-items { display: grid; gap: 14px; margin-bottom: 30px; }
.contact-items a { display: flex; align-items: flex-start; gap: 14px; padding: 14px; border: 1px solid rgba(255,255,255,.15); border-radius: 16px; background: rgba(255,255,255,.07); }
.contact-items a > span { display: grid; flex: 0 0 auto; place-items: center; width: 39px; height: 39px; border-radius: 12px; color: var(--red-deep); background: var(--orange); }
.contact-items p { display: flex; flex-direction: column; margin: 0; line-height: 1.5; }
.contact-items small { color: rgba(255,255,255,.63); font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.contact-items strong { margin-top: 2px; font-size: .91rem; }
.map-area { position: relative; min-height: 590px; background: #eee; }
.map-area iframe { width: 100%; height: 100%; min-height: 590px; border: 0; filter: saturate(.82) contrast(1.04); }
.map-area > a { position: absolute; right: 20px; bottom: 20px; padding: 12px 17px; border-radius: 999px; color: var(--red-dark); background: var(--white); box-shadow: 0 8px 25px rgba(0,0,0,.16); font-size: .84rem; font-weight: 700; }

.footer { padding: 70px 0 22px; color: rgba(255,255,255,.72); background: #39030d; }
.footer-main { display: grid; grid-template-columns: 1.15fr .9fr 1fr; gap: 60px; padding-bottom: 52px; }
.footer-brand { color: var(--white); }
.footer-main h3 { margin-bottom: 17px; color: var(--orange-light); font-size: .88rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-main p { margin: 18px 0 0; font-size: .87rem; line-height: 1.8; }
.footer-main a:hover, .footer-bottom a:hover { color: var(--orange-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: .79rem; }
.floating-call { position: fixed; z-index: 35; right: 20px; bottom: 20px; display: flex; align-items: center; gap: 9px; padding: 13px 18px; border: 2px solid var(--white); border-radius: 999px; color: var(--red-deep); background: var(--orange); box-shadow: 0 13px 35px rgba(79,5,17,.27); font-weight: 700; }
.floating-call svg { width: 19px; fill: currentColor; }

.legal-header { position: relative; background: var(--red-dark); }
.back-link { padding: 10px 16px; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; font-size: .86rem; font-weight: 700; }
.legal-hero { padding: 84px 0; color: var(--white); background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.legal-hero h1 { margin: 16px 0 13px; font-size: clamp(2.6rem, 5vw, 4.7rem); }
.legal-hero p { margin: 0; color: rgba(255,255,255,.72); }
.legal-content { max-width: 880px; padding-top: 74px; padding-bottom: 90px; }
.legal-content h2 { margin-top: 41px; color: var(--red-deep); font-size: 1.36rem; letter-spacing: -.025em; }
.legal-content p { color: var(--muted); }
.legal-intro { padding: 25px; border-left: 4px solid var(--orange); border-radius: 0 13px 13px 0; background: var(--white); box-shadow: 0 8px 30px rgba(82,5,17,.06); }
.legal-contact { margin-top: 22px; padding: 24px; border-radius: 16px; color: var(--muted); background: var(--white); box-shadow: 0 8px 30px rgba(82,5,17,.06); }
.legal-contact strong, .legal-contact a { color: var(--red-dark); }
.legal-footer { padding-top: 24px; }

@media (max-width: 1020px) {
  .menu { gap: 18px; font-size: .84rem; }
  .hero-layout { gap: 42px; }
  .hero-visual { min-height: 465px; }
  .footer-main { gap: 36px; }
}

@media (max-width: 800px) {
  .container { width: min(100% - 28px, var(--container)); }
  .nav { min-height: 78px; }
  .menu-toggle { display: block; }
  .menu { position: absolute; top: calc(100% + 8px); left: 14px; right: 14px; display: none; flex-direction: column; align-items: stretch; gap: 2px; padding: 15px; border-radius: 17px; color: var(--ink); background: var(--white); box-shadow: 0 17px 40px rgba(60,0,9,.28); }
  .menu.open { display: flex; }
  .menu a { padding: 11px 13px !important; }
  .menu-call { text-align: center; margin-top: 4px; background: var(--orange); }
  .hero { min-height: auto; padding: 130px 0 115px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .kicker, .actions, .hero-detail { justify-content: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-visual { width: min(550px, 100%); margin-inline: auto; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-grid > div { min-height: 95px; border-right: 0; border-bottom: 1px solid var(--line); }
  .benefit-grid > div:last-child { border-bottom: 0; }
  .about-layout { grid-template-columns: 1fr; gap: 34px; }
  .section-head { align-items: start; flex-direction: column; gap: 24px; }
  .care-grid { grid-template-columns: 1fr; }
  .care-card { min-height: 275px; }
  .care-icon { margin-bottom: 46px; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-copy { padding: 44px 32px; }
  .map-area, .map-area iframe { min-height: 405px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .brand strong { font-size: 1.2rem; }
  .pill-mark { width: 47px; height: 29px; }
  .hero h1 { font-size: 2.65rem; }
  .actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-visual { min-height: 390px; }
  .logo-frame { right: 0; }
  .visual-tag { left: 12px; right: 12px; bottom: 19px; min-width: 0; }
  .section { padding: 80px 0; }
  .about-title h2, .section-head h2 { font-size: 2.35rem; }
  .contact { padding-top: 0; }
  .contact-copy { padding: 39px 22px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .floating-call { width: 52px; height: 52px; justify-content: center; padding: 0; }
  .floating-call span { display: none; }
  .legal-hero { padding: 63px 0; }
  .back-link { padding: 8px 11px; font-size: .75rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
