@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Manrope:wght@400;500;600&family=Newsreader:ital,opsz,wght@1,6..72,400&display=swap');

:root {
  --ink: #14211f;
  --ink-soft: #263431;
  --cream: #f2eee5;
  --paper: #fbfaf6;
  --white: #fff;
  --orange: #d66b3d;
  --orange-bright: #ea7b48;
  --line: rgba(20, 33, 31, .16);
  --display: "Manrope", Arial, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
  --serif: "Newsreader", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--body); font-size: 16px; line-height: 1.55; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.shell { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.section { padding-block: 128px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.skip-link { position: fixed; z-index: 1000; left: 16px; top: 12px; transform: translateY(-160%); background: var(--white); padding: 10px 16px; transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; z-index: 100; width: 100%; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.18); transition: background .25s, color .25s, border-color .25s; }
.site-header.scrolled { background: rgba(20,33,31,.96); backdrop-filter: blur(12px); border-color: rgba(255,255,255,.1); }
.nav-wrap { min-height: 88px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 13px; position: relative; z-index: 2; }
.brand-mark { width: 43px; height: 34px; display: block; position: relative; border-bottom: 3px solid currentColor; }
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; left: 3px; top: 14px; height: 3px; width: 27px; background: currentColor; transform: rotate(-40deg); transform-origin: left center; }
.brand-mark::after { left: 24px; width: 25px; transform: rotate(41deg); }
.brand-mark span { position: absolute; width: 10px; height: 17px; border: 3px solid var(--orange-bright); border-bottom: 0; bottom: 0; left: 17px; }
.brand-type { display: flex; flex-direction: column; line-height: 1; }
.brand-type strong { font-family: var(--display); font-size: 23px; letter-spacing: -.05em; text-transform: uppercase; }
.brand-type small { font-size: 9px; text-transform: uppercase; letter-spacing: .18em; margin-top: 6px; }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 13px; font-weight: 500; }
.site-nav > a:not(.nav-cta) { position: relative; }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -7px; height: 1px; width: 100%; background: var(--orange-bright); transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.site-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 13px 17px; border: 1px solid rgba(255,255,255,.5); display: flex; gap: 18px; transition: background .2s, color .2s; }
.nav-cta:hover { background: var(--white); color: var(--ink); }
.menu-button { display: none; color: inherit; width: 42px; height: 42px; border: 0; background: transparent; padding: 9px; position: relative; z-index: 2; }
.menu-button > span:not(.sr-only) { display: block; height: 1px; background: currentColor; margin: 6px 0; transition: transform .25s, opacity .25s; }

.hero { min-height: 830px; height: 100svh; color: var(--white); position: relative; overflow: hidden; display: flex; align-items: center; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,20,19,.9) 0%, rgba(10,20,19,.6) 42%, rgba(10,20,19,.08) 78%), linear-gradient(0deg, rgba(10,20,19,.45), transparent 45%); }
.hero-grid { position: absolute; inset: 88px 0 0; opacity: .1; background-image: linear-gradient(90deg, transparent calc(25% - 1px), #fff 25%, transparent calc(25% + 1px), transparent calc(50% - 1px), #fff 50%, transparent calc(50% + 1px), transparent calc(75% - 1px), #fff 75%, transparent calc(75% + 1px)); }
.hero-content { position: relative; z-index: 1; padding-top: 52px; }
.eyebrow, .kicker { text-transform: uppercase; letter-spacing: .18em; font-size: 11px; font-weight: 600; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.eyebrow span { display: inline-block; width: 33px; height: 2px; background: var(--orange-bright); }
h1, h2 { font-family: var(--display); font-weight: 500; letter-spacing: -.065em; line-height: .96; margin: 0; }
h1 { font-size: clamp(64px, 7.3vw, 110px); max-width: 920px; }
h1 em, h2 em { font-family: var(--serif); font-weight: 400; letter-spacing: -.03em; color: var(--orange-bright); }
.hero-lead { width: min(590px, 100%); font-size: 18px; color: rgba(255,255,255,.78); margin: 30px 0 35px; }
.hero-actions { display: flex; gap: 32px; align-items: center; }
.button { min-height: 58px; border: 0; padding: 0 24px; display: inline-flex; justify-content: center; align-items: center; gap: 34px; font-weight: 600; font-size: 13px; cursor: pointer; }
.button-primary { background: var(--orange); color: var(--white); transition: background .2s, transform .2s; }
.button-primary:hover { background: var(--orange-bright); transform: translateY(-2px); }
.button span { font-size: 18px; }
.text-link { display: inline-flex; align-items: center; gap: 16px; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 5px; }
.text-link span { color: var(--orange-bright); font-size: 17px; }
.hero-foot { position: absolute; z-index: 2; bottom: 27px; left: 50%; transform: translateX(-50%); display: flex; justify-content: space-between; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.65); }
.proof-strip { background: var(--cream); border-bottom: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: 1.1fr repeat(3, 1fr); }
.proof-grid article { min-height: 118px; display: flex; align-items: center; gap: 17px; border-right: 1px solid var(--line); padding: 0 26px; font-size: 13px; }
.proof-grid article:first-child { padding-left: 0; }
.proof-grid article:last-child { border: 0; }
.proof-grid strong { font-family: var(--display); font-size: 44px; letter-spacing: -.06em; color: var(--orange); }
.proof-grid i { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex: 0 0 auto; }

.section-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 80px; align-items: end; margin-bottom: 75px; }
.kicker { color: var(--orange); margin: 0 0 25px; }
h2 { font-size: clamp(48px, 5.1vw, 76px); }
.section-heading > p { color: #5d6764; max-width: 460px; margin: 0 0 8px; }
.service-list { border-top: 1px solid var(--line); }
.service-card { min-height: 205px; display: grid; grid-template-columns: 65px 165px 1fr 60px; gap: 25px; align-items: center; border-bottom: 1px solid var(--line); transition: background .25s, padding .25s; }
.service-card:hover { background: var(--cream); padding-inline: 20px; }
.service-number { font-size: 11px; color: #7b8482; align-self: start; margin-top: 34px; }
.service-card h3 { font-family: var(--display); font-size: 29px; letter-spacing: -.04em; margin: 0 0 10px; }
.service-card p { color: #66706d; max-width: 620px; margin: 0; }
.service-card > a { justify-self: end; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; font-size: 20px; transition: background .2s, color .2s; }
.service-card:hover > a { background: var(--orange); color: white; border-color: var(--orange); }
.service-icon { width: 112px; height: 88px; position: relative; border-bottom: 3px solid var(--ink); overflow: hidden; }
.service-icon::before, .service-icon::after { content: ""; position: absolute; height: 3px; background: var(--ink); top: 41px; }
.service-icon::before { left: 5px; width: 70px; transform: rotate(-35deg); transform-origin: left; }
.service-icon::after { right: 4px; width: 68px; transform: rotate(35deg); transform-origin: right; }
.service-icon span { position: absolute; right: 13px; bottom: 0; width: 20px; height: 42px; border: 3px solid var(--orange); border-bottom: 0; }
.roof-renovate { border-bottom-style: dashed; }
.roof-renovate::before { box-shadow: 9px -5px 0 -1px var(--orange), 18px -10px 0 -1px var(--orange); }
.roof-repair::after { background: linear-gradient(90deg,var(--ink) 0 40%,transparent 40% 50%,var(--orange) 50% 63%,transparent 63% 70%,var(--ink) 70%); }

.manifesto { background: var(--ink); color: var(--white); overflow: hidden; }
.manifesto-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: center; }
.manifesto-visual { height: 570px; position: relative; border: 1px solid rgba(255,255,255,.13); overflow: hidden; background: radial-gradient(circle at 70% 30%, rgba(214,107,61,.12), transparent 34%); }
.manifesto-visual::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 52px 52px; }
.sun { position: absolute; width: 120px; height: 120px; border: 2px solid var(--orange); border-radius: 50%; top: 95px; right: 65px; }
.roof-line { position: absolute; height: 3px; background: var(--cream); z-index: 1; }
.roof-line.one { width: 370px; left: 45px; top: 315px; transform: rotate(-35deg); transform-origin: left; }
.roof-line.two { width: 330px; right: -10px; top: 316px; transform: rotate(34deg); transform-origin: right; }
.manifesto-visual > p { position: absolute; z-index: 2; bottom: 21px; left: 31px; font-family: var(--display); font-size: 46px; letter-spacing: -.07em; margin: 0; }
.kicker.light { color: rgba(255,255,255,.55); }
.manifesto-copy > p:not(.kicker) { color: rgba(255,255,255,.6); max-width: 610px; font-size: 17px; margin: 32px 0 45px; }
.manifesto-copy ul { list-style: none; padding: 0; margin: 0; border-top: 1px solid rgba(255,255,255,.14); }
.manifesto-copy li { display: flex; align-items: center; gap: 25px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.manifesto-copy li span { color: var(--orange-bright); font-size: 11px; }

.process-head { display: grid; grid-template-columns: .43fr 1fr; margin-bottom: 75px; align-items: start; }
.process-head .kicker { margin-top: 12px; }
.process-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); counter-reset: process; }
.process-grid li { min-height: 285px; padding: 26px 25px 20px; border: 1px solid var(--line); border-right: 0; position: relative; }
.process-grid li:last-child { border-right: 1px solid var(--line); }
.process-grid li::before { content: ""; position: absolute; top: -1px; left: -1px; width: 0; height: 3px; background: var(--orange); transition: width .5s; }
.process-grid li:hover::before { width: calc(100% + 1px); }
.process-grid li > span { display: block; font-family: var(--display); color: var(--orange); font-size: 40px; letter-spacing: -.06em; margin-bottom: 75px; }
.process-grid h3 { font-family: var(--display); margin: 0 0 10px; font-size: 21px; }
.process-grid p { color: #67706e; font-size: 14px; margin: 0; }

.area { background: var(--cream); }
.area-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: center; }
.area-copy > p:not(.kicker) { color: #5e6966; max-width: 500px; margin: 30px 0 26px; }
.place-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.place-tags span { border: 1px solid var(--line); padding: 8px 12px; font-size: 12px; }
.text-link.dark { border-color: var(--line); }
.map-art { min-height: 460px; display: grid; place-items: center; }
.map-art svg { width: 100%; max-height: 460px; overflow: visible; }
.county { stroke: var(--ink); stroke-width: 2; }
.county-tolna { fill: #d9d3c7; }
.county-baranya { fill: var(--ink); }
.route { fill: none; stroke: var(--orange); stroke-width: 3; stroke-dasharray: 7 8; }
.map-art circle { fill: var(--orange); stroke: var(--cream); stroke-width: 4; }
.map-art text { font-size: 11px; letter-spacing: .12em; font-family: var(--body); fill: var(--ink); font-weight: 600; }
.map-art text:first-of-type { fill: var(--white); }
.map-art .county-label { font-size: 20px; letter-spacing: .23em; fill: rgba(255,255,255,.32); }
.map-art .county-label:last-of-type { fill: rgba(20,33,31,.34); }

.faq { display: grid; grid-template-columns: .75fr 1.25fr; gap: 110px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { list-style: none; cursor: pointer; min-height: 84px; display: flex; justify-content: space-between; align-items: center; font-family: var(--display); font-size: 19px; font-weight: 500; }
summary::-webkit-details-marker { display: none; }
summary span { width: 30px; height: 30px; position: relative; flex: 0 0 auto; margin-left: 20px; }
summary span::before, summary span::after { content: ""; position: absolute; background: var(--orange); width: 16px; height: 1px; top: 15px; left: 7px; transition: transform .2s; }
summary span::after { transform: rotate(90deg); }
details[open] summary span::after { transform: rotate(0); }
details p { color: #5c6664; max-width: 650px; margin: -3px 50px 26px 0; }

.quote { background: var(--ink); color: var(--white); position: relative; overflow: hidden; }
.quote::before { content: ""; position: absolute; width: 620px; height: 620px; border: 1px solid rgba(255,255,255,.06); border-radius: 50%; left: -220px; bottom: -390px; box-shadow: 0 0 0 80px rgba(255,255,255,.02), 0 0 0 160px rgba(255,255,255,.02); }
.quote-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; position: relative; }
.quote-copy > p:not(.kicker) { color: rgba(255,255,255,.6); max-width: 450px; margin-top: 28px; }
.quote-form { display: flex; flex-direction: column; gap: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.quote-form label { display: flex; flex-direction: column; gap: 8px; }
.quote-form label > span { text-transform: uppercase; letter-spacing: .13em; font-size: 9px; color: rgba(255,255,255,.55); }
.quote-form input, .quote-form textarea, .quote-form select { width: 100%; color: var(--white); border: 0; border-bottom: 1px solid rgba(255,255,255,.26); background: transparent; padding: 10px 0 13px; outline: none; border-radius: 0; }
.quote-form textarea { resize: vertical; min-height: 95px; }
.quote-form input:focus, .quote-form textarea:focus, .quote-form select:focus { border-color: var(--orange-bright); }
.quote-form option { color: var(--ink); }
.quote-form .button { align-self: flex-start; margin-top: 13px; }
.form-note { font-size: 11px; color: rgba(255,255,255,.45); margin: 0; }
.form-note a { color: rgba(255,255,255,.72); text-decoration: underline; text-underline-offset: 2px; }
.botcheck { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { min-height: 20px; margin: -7px 0 0; font-size: 12px; color: rgba(255,255,255,.64); }
.form-status.success { color: #9ed2aa; }
.form-status.error { color: #f0a68a; }
.quote-form .button:disabled { opacity: .58; cursor: wait; transform: none; }

.site-footer { background: #0d1716; color: var(--white); padding: 70px 0 24px; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-top > p { font-family: var(--display); font-size: 28px; line-height: 1.2; letter-spacing: -.04em; margin: 0; }
.footer-top > p em { color: var(--orange-bright); font-family: var(--serif); }
.back-top { width: 52px; height: 52px; border: 1px solid rgba(255,255,255,.22); display: grid; place-items: center; font-size: 20px; }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; text-transform: uppercase; font-size: 9px; letter-spacing: .13em; color: rgba(255,255,255,.44); }
.footer-bottom p { margin: 0; }
.toast { position: fixed; z-index: 200; bottom: 25px; left: 50%; transform: translate(-50%, 30px); opacity: 0; pointer-events: none; background: var(--white); color: var(--ink); box-shadow: 0 12px 40px rgba(0,0,0,.2); padding: 15px 20px; font-size: 13px; transition: opacity .2s, transform .2s; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.service-card:nth-child(2), .process-grid li:nth-child(2) { transition-delay: .08s; }
.service-card:nth-child(3), .process-grid li:nth-child(3) { transition-delay: .16s; }
.process-grid li:nth-child(4) { transition-delay: .24s; }

@media (max-width: 980px) {
  .section { padding-block: 95px; }
  .site-header.scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .menu-button { display: block; }
  .menu-button[aria-expanded="true"] > span:first-child { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; width: 100vw; min-height: 100vh; min-height: 100dvh; overflow-y: auto; overscroll-behavior: contain; background: var(--ink); padding: 130px 30px 50px; flex-direction: column; align-items: flex-start; gap: 0; opacity: 0; visibility: hidden; transform: translateY(-15px); transition: .25s; }
  .site-nav.open { opacity: 1; visibility: visible; transform: none; }
  .site-nav > a { font-family: var(--display); width: 100%; font-size: 28px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .site-nav .nav-cta { margin-top: 22px; width: auto; font-family: var(--body); font-size: 13px; padding: 14px 17px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid article:nth-child(2) { border-right: 0; }
  .proof-grid article:first-child { padding-left: 26px; }
  .section-heading, .manifesto-grid, .area-grid, .quote-grid { grid-template-columns: 1fr; gap: 55px; }
  .section-heading { align-items: start; }
  .service-card { grid-template-columns: 55px 125px 1fr 50px; }
  .manifesto-visual { height: 430px; }
  .process-head { grid-template-columns: 1fr; gap: 5px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid li:nth-child(2) { border-right: 1px solid var(--line); }
  .process-grid li:nth-child(-n+2) { border-bottom: 0; }
  .area-copy { max-width: 650px; }
  .map-art { min-height: 350px; }
  .faq { grid-template-columns: .65fr 1.35fr; gap: 50px; }
}

@media (max-width: 680px) {
  .shell { width: min(100% - 32px, 1240px); }
  .section { padding-block: 76px; }
  .nav-wrap { min-height: 72px; }
  .brand-mark { width: 37px; transform: scale(.88); transform-origin: left; margin-right: -3px; }
  .brand-type strong { font-size: 20px; }
  .hero { min-height: 740px; height: 100svh; }
  .hero-grid { inset: 72px 0 0; }
  .hero-image { object-position: 68% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(10,20,19,.9), rgba(10,20,19,.4)), linear-gradient(0deg, rgba(10,20,19,.55), transparent); }
  .hero-content { padding-top: 25px; }
  h1 { font-size: clamp(49px, 14vw, 66px); }
  h2 { font-size: clamp(42px, 12vw, 58px); }
  .hero-lead { font-size: 16px; margin-top: 25px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-foot { bottom: 18px; }
  .hero-foot p:last-child { display: none; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid article { min-height: 76px; border-right: 0; border-bottom: 1px solid var(--line); padding: 0 5px; }
  .proof-grid article:first-child { padding-left: 5px; }
  .section-heading { gap: 30px; margin-bottom: 50px; }
  .service-card { grid-template-columns: 40px 1fr 42px; gap: 12px; padding: 28px 0; }
  .service-card:hover { padding-inline: 0; }
  .service-number { grid-row: 1; grid-column: 1; margin-top: 0; }
  .service-icon { grid-row: 1; grid-column: 2; width: 95px; height: 70px; }
  .service-card > div:nth-of-type(2) { grid-row: 2; grid-column: 1 / -1; }
  .service-card > a { grid-row: 1; grid-column: 3; }
  .manifesto-grid { gap: 45px; }
  .manifesto-visual { height: 320px; }
  .sun { width: 85px; height: 85px; right: 25px; top: 52px; }
  .roof-line.one { width: 270px; left: 20px; top: 200px; }
  .roof-line.two { width: 230px; top: 201px; }
  .manifesto-visual > p { font-size: 33px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: 220px; border-right: 1px solid var(--line); border-bottom: 0; }
  .process-grid li:last-child { border-bottom: 1px solid var(--line); }
  .process-grid li > span { margin-bottom: 35px; }
  .area-grid { gap: 30px; }
  .map-art { min-height: 260px; }
  .faq { grid-template-columns: 1fr; gap: 45px; }
  summary { font-size: 16px; line-height: 1.3; }
  .field-row { grid-template-columns: 1fr; }
  .quote-form .button { width: 100%; }
  .footer-top { grid-template-columns: 1fr auto; gap: 45px 20px; }
  .footer-top > p { grid-column: 1 / -1; grid-row: 2; }
  .footer-bottom { gap: 15px; flex-wrap: wrap; }
  .toast { width: calc(100% - 32px); text-align: center; }
}

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