:root {
  --orange: #f39a18;
  --orange-deep: #e8780f;
  --orange-soft: #fff1d8;
  --ink: #17202c;
  --muted: #66707c;
  --cream: #fffaf2;
  --line: #e7e6e2;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.section { padding: 110px 0; }
.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 22px; color: var(--orange-deep); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow > span { width: 29px; height: 2px; background: currentColor; }
.eyebrow.light { color: #ffd894; }
h1, h2 { letter-spacing: -.045em; }
h1 em, h2 em { color: var(--orange); font-style: normal; }
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

.page-progress { position: fixed; z-index: 999; top: 0; left: 0; width: 100%; height: 3px; pointer-events: none; }
.page-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--orange), #ffbd50); box-shadow: 0 0 12px rgba(243,154,24,.65); }

.site-header { padding: 18px 0; transition: padding .3s ease, background .3s ease, box-shadow .3s ease; }
.site-header.is-scrolled { padding: 8px 0; background: rgba(255,255,255,.94); box-shadow: 0 12px 35px rgba(25,31,40,.08); backdrop-filter: blur(16px); }
.navbar { padding: 0; min-height: 58px; }
.navbar-brand img { width: 156px; height: auto; }
.navbar-nav { gap: 18px; }
.navbar .nav-link { position: relative; padding: 12px 4px !important; color: #333b45; font-size: 14px; font-weight: 650; }
.navbar .nav-link::after { content: ""; position: absolute; left: 4px; bottom: 4px; width: 0; height: 2px; background: var(--orange); transition: width .25s ease; }
.navbar .nav-link:hover, .navbar .nav-link:focus { color: var(--ink); }
.navbar .nav-link:hover::after, .navbar .nav-link.active::after { width: calc(100% - 8px); }
.nav-cta { padding: 8px 8px 8px 18px; border: 1px solid rgba(23,32,44,.16); border-radius: 100px; font-size: 14px; font-weight: 750; transition: .25s ease; }
.nav-cta span { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--orange); color: white; }
.nav-cta:hover { border-color: var(--orange); transform: translateY(-2px); }
.menu-button { width: 46px; height: 46px; padding: 0; border: 0; border-radius: 50%; background: var(--ink); box-shadow: none !important; }
.menu-button span { display: block; width: 20px; height: 2px; margin: 5px auto; background: white; transition: .25s ease; }
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.hero { position: relative; min-height: 790px; overflow: hidden; background: #f8f5ef; }
.hero-photo { position: absolute; inset: 0; background: url('../assets/images/esprezza-hero-new.png') center/cover no-repeat; animation: heroZoom 13s ease-out both; }
.hero-wash { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(250,248,244,1) 0%, rgba(250,248,244,.98) 30%, rgba(250,248,244,.68) 47%, rgba(250,248,244,.06) 69%); }
.hero-orbit { position: absolute; border: 1px solid rgba(243,154,24,.25); border-radius: 50%; pointer-events: none; animation: orbit 7s ease-in-out infinite alternate; }
.orbit-one { width: 580px; height: 580px; left: -420px; top: 80px; }
.orbit-two { width: 260px; height: 260px; left: -110px; top: 242px; animation-delay: -3s; }
.hero-content { z-index: 2; padding-top: 90px; }
.hero-copy { max-width: 610px; }
.hero-copy h1 { max-width: 600px; margin-bottom: 25px; font-size: clamp(50px, 6.2vw, 84px); line-height: .99; font-weight: 720; }
.hero-lead { max-width: 570px; margin-bottom: 35px; color: #545f6c; font-size: 18px; line-height: 1.75; }
.hero-actions { gap: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 22px; min-height: 56px; padding: 0 25px; border-radius: 100px; font-size: 14px; font-weight: 800; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--orange); color: white; box-shadow: 0 16px 28px rgba(230,118,7,.24); }
.button-primary:hover { background: var(--orange-deep); color: white; box-shadow: 0 18px 36px rgba(230,118,7,.32); }
.text-link { display: inline-flex; align-items: center; gap: 10px; padding: 11px 0; font-size: 14px; font-weight: 750; border-bottom: 1px solid #a9adb2; }
.text-link:hover { color: var(--ink); }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateY(3px); }
.experience-card { width: 180px; margin: 0 14px 55px 0; padding: 23px 25px; border: 1px solid rgba(255,255,255,.8); border-radius: 24px; background: rgba(255,255,255,.72); box-shadow: 0 24px 50px rgba(24,31,40,.14); backdrop-filter: blur(14px); }
.experience-card strong { display: block; color: var(--ink); font-size: 56px; font-style: normal; line-height: 1; letter-spacing: -.06em; }
.experience-card strong i { color: var(--orange); font-style: normal; }
.experience-card p { margin: 10px 0 0; color: #59616c; font-size: 12px; line-height: 1.55; }
.scroll-note { position: absolute; z-index: 3; left: 50%; bottom: 25px; display: flex; align-items: center; gap: 10px; color: #69717b; font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; transform: translateX(-50%); }
.scroll-note span { width: 1px; height: 28px; background: var(--orange); animation: scrollLine 1.8s ease-in-out infinite; transform-origin: top; }

.impact-strip { position: relative; z-index: 4; background: var(--ink); color: white; }
.impact-item { min-height: 96px; padding: 28px 24px; border-right: 1px solid rgba(255,255,255,.1); }
.impact-item:first-child { border-left: 1px solid rgba(255,255,255,.1); }
.impact-item strong, .impact-item span { display: block; }
.impact-item strong { margin-bottom: 5px; color: #ffd690; font-size: 15px; }
.impact-item span { color: #b8bec7; font-size: 12px; }

.about-section { background: white; }
.about-media { position: relative; min-height: 590px; }
.image-frame { position: absolute; overflow: hidden; background: #eee; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.image-frame:hover img { transform: scale(1.035); }
.image-frame-main { inset: 0 92px 72px 0; border-radius: 6px 82px 6px 6px; }
.image-frame-small { width: 235px; height: 172px; right: 0; bottom: 0; border: 12px solid white; border-radius: 3px; box-shadow: 0 22px 45px rgba(21,29,40,.16); }
.about-accent { position: absolute; width: 78px; max-height: 285px; object-fit: cover; object-position: center; left: -37px; top: 148px; border-radius: 4px; box-shadow: 0 16px 35px rgba(25,31,40,.12); }
.dot-pattern { position: absolute; right: 46px; top: -28px; width: 106px; height: 86px; opacity: .45; background-image: radial-gradient(var(--orange) 1.6px, transparent 1.6px); background-size: 12px 12px; }
.section-copy h2, .section-heading h2, .services-intro h2, .process-copy h2 { margin-bottom: 25px; font-size: clamp(40px, 4.1vw, 58px); line-height: 1.08; font-weight: 710; }
.section-copy > p:not(.eyebrow), .process-copy > p:not(.eyebrow) { color: var(--muted); font-size: 15px; line-height: 1.8; }
.section-copy .lead { color: #343c46 !important; font-size: 17px !important; font-weight: 550; }
.about-points { margin: 28px 0 32px; }
.about-points span { position: relative; display: block; padding-left: 24px; color: #3a424b; font-size: 14px; font-weight: 720; }
.about-points span::before { content: ""; position: absolute; left: 0; top: 3px; width: 12px; height: 12px; border: 4px solid var(--orange); border-radius: 50%; }
.button-outline { border: 1px solid #cfd2d5; background: white; }
.button-outline:hover { border-color: var(--orange); color: var(--ink); box-shadow: 0 14px 28px rgba(20,28,38,.08); }

.benefits-section { background: var(--cream); overflow: hidden; }
.section-heading { max-width: 740px; margin-bottom: 62px; }
.section-heading > p:not(.eyebrow) { max-width: 650px; margin: 0 auto; color: var(--muted); font-size: 16px; line-height: 1.7; }
.benefit-card { gap: 21px; padding: 26px 27px; border: 1px solid #e9e0d3; border-radius: 20px; background: rgba(255,255,255,.82); transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.benefit-card:hover { transform: translateX(7px); border-color: #f5bd68; box-shadow: 0 18px 35px rgba(50,40,25,.07); }
.card-number { display: grid; flex: 0 0 50px; place-items: center; width: 50px; height: 50px; border-radius: 16px; background: var(--orange-soft); color: var(--orange-deep); font-size: 13px; font-weight: 900; }
.benefit-card h3 { margin-bottom: 7px; font-size: 20px; }
.benefit-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.card-arrow { font-size: 23px; color: #aaa59e; transition: color .25s ease, transform .25s ease; }
.benefit-card:hover .card-arrow { color: var(--orange); transform: translate(2px,-2px); }
.benefit-visual { position: relative; min-height: 474px; border-radius: 70px 6px 6px 6px; background: linear-gradient(145deg, #ffc65d, #ef8c0f); overflow: hidden; }
.benefit-person { position: absolute; inset: 20px 20px 20px 55px; width: calc(100% - 75px); height: calc(100% - 40px); object-fit: cover; object-position: 54% center; border-radius: 54px 4px 4px 4px; }
.benefit-quote { position: absolute; left: 22px; bottom: 22px; width: 210px; padding: 19px; background: white; box-shadow: 0 18px 35px rgba(24,30,38,.16); }
.benefit-quote strong, .benefit-quote span { display: block; }
.benefit-quote strong { margin-bottom: 4px; color: var(--orange-deep); font-size: 22px; }
.benefit-quote span { color: #626a73; font-size: 12px; line-height: 1.5; }

.services-section { position: relative; background: var(--ink); color: white; overflow: hidden; }
.services-section::before { content: ""; position: absolute; width: 620px; height: 620px; right: -330px; top: 120px; border: 1px solid rgba(243,154,24,.2); border-radius: 50%; }
.services-intro { margin-bottom: 50px; }
.services-intro h2 { margin: 0; color: white; }
.services-intro p { margin-bottom: 5px; color: #b7bdc6; line-height: 1.75; }
.service-feature { position: relative; height: 500px; border-radius: 8px 80px 8px 8px; overflow: hidden; }
.service-feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,18,27,.92), rgba(11,18,27,.58) 45%, rgba(11,18,27,.08)); }
.service-feature > img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.service-feature:hover > img { transform: scale(1.025); }
.feature-overlay { position: absolute; z-index: 2; left: 55px; top: 50%; width: 420px; transform: translateY(-50%); }
.feature-overlay > span { display: inline-block; margin-bottom: 18px; padding: 8px 12px; border-radius: 100px; background: rgba(243,154,24,.18); color: #ffd89b; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.feature-overlay h3 { margin-bottom: 15px; font-size: 42px; line-height: 1.07; }
.feature-overlay p { color: #d1d5da; line-height: 1.75; }
.feature-overlay a, .service-content a { display: inline-flex; align-items: center; gap: 14px; color: #ffbf5f; font-size: 14px; font-weight: 800; }
.feature-overlay b, .service-content a span { transition: transform .2s ease; }
.feature-overlay a:hover b, .service-content a:hover span { transform: translateX(5px); }
.service-card { min-height: 290px; border: 1px solid rgba(255,255,255,.12); background: #202a36; overflow: hidden; transition: transform .3s ease, border-color .3s ease; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(243,154,24,.7); }
.service-photo { position: relative; min-height: 290px; overflow: hidden; }
.service-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,23,33,.4), transparent 60%); }
.service-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover .service-photo img { transform: scale(1.05); }
.service-photo > span { position: absolute; z-index: 2; left: 16px; bottom: 12px; color: rgba(255,255,255,.8); font-size: 28px; font-weight: 300; }
.service-content { padding: 32px 29px; }
.service-tag { margin-bottom: 11px; color: #ffba52 !important; font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.service-content h3 { margin-bottom: 13px; font-size: 23px; line-height: 1.2; }
.service-content > p:not(.service-tag) { color: #adb4bd; font-size: 13px; line-height: 1.7; }
.services-memory { gap: 25px; margin: 40px auto 0; color: #9ea6b0; font-size: 12px; }
.services-memory img { width: 46px; height: 144px; object-fit: cover; object-position: center; opacity: .85; }
.services-memory p { max-width: 290px; margin: 0; line-height: 1.65; }

.process-section { background: white; }
.process-copy { position: sticky; top: 125px; padding-right: 40px; }
.process-copy > img { width: 100%; height: 230px; margin-top: 32px; object-fit: cover; border-radius: 6px 50px 6px 6px; filter: saturate(.85); }
.process-steps { border-top: 1px solid var(--line); }
.process-steps article { display: grid; grid-template-columns: 70px 1fr; gap: 26px; padding: 34px 10px; border-bottom: 1px solid var(--line); transition: padding-left .25s ease, background .25s ease; }
.process-steps article:hover { padding-left: 24px; background: #fffaf2; }
.process-steps article > span { color: var(--orange); font-size: 14px; font-weight: 900; }
.process-steps h3 { margin-bottom: 8px; font-size: 25px; }
.process-steps p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.visual-break { position: relative; height: 560px; overflow: hidden; }
.visual-break::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(19,26,35,.85), rgba(19,26,35,.12)); }
.visual-break > img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; transition: transform 1.4s ease; }
.visual-break:hover > img { transform: scale(1.025); }
.visual-break-copy { position: absolute; z-index: 2; left: max(24px, calc((100vw - 1140px)/2)); top: 50%; color: white; transform: translateY(-50%); }
.visual-break-copy p { margin-bottom: 22px; font-size: clamp(36px,5vw,68px); line-height: 1.05; letter-spacing: -.04em; }
.visual-break-copy p strong { color: #ffbb55; font-weight: 700; }
.visual-break-copy > span { font-size: 11px; font-weight: 800; letter-spacing: .22em; }

.contact-section { padding-bottom: 70px; background: #f7f4ef; }
.contact-card { min-height: 570px; background: var(--orange); color: white; box-shadow: 0 30px 70px rgba(65,50,28,.18); overflow: hidden; }
.contact-image { position: relative; min-height: 570px; }
.contact-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,27,35,.1), rgba(243,154,24,.18)); }
.contact-image img { width: 100%; height: 100%; object-fit: cover; }
.contact-copy { padding: 72px 67px; }
.contact-copy h2 { margin-bottom: 22px; font-size: clamp(40px,4.2vw,60px); line-height: 1.05; letter-spacing: -.045em; }
.contact-copy > p:not(.eyebrow) { max-width: 540px; color: #fff5e3; line-height: 1.7; }
.contact-actions { gap: 27px; margin-top: 34px; }
.button-white { background: white; color: var(--ink); }
.button-white:hover { color: var(--ink); box-shadow: 0 18px 36px rgba(98,53,9,.18); }
.contact-phone small, .contact-phone strong { display: block; }
.contact-phone small { margin-bottom: 4px; color: #ffe7bd; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-phone strong { font-size: 18px; }
.contact-phone:hover { color: white; }
.contact-details { display: grid; gap: 6px; margin-top: 52px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.28); color: #fff4df; font-size: 12px; }

footer { padding: 65px 0 28px; background: white; }
.footer-main { padding-bottom: 50px; }
.footer-brand img { width: 165px; margin-bottom: 20px; }
.footer-brand p { max-width: 300px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.footer-links { display: grid; align-content: start; gap: 11px; }
.footer-links strong { margin-bottom: 6px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.footer-links a { color: var(--muted); font-size: 13px; transition: color .2s ease; }
.footer-links a:hover { color: var(--orange-deep); }
.footer-bottom { gap: 12px; padding-top: 25px; border-top: 1px solid var(--line); color: #8a9098; font-size: 11px; }
.floating-contact { position: fixed; z-index: 45; right: 24px; bottom: 24px; display: flex; align-items: center; gap: 13px; padding: 8px 8px 8px 18px; border-radius: 100px; background: #1e9d58; color: white; box-shadow: 0 12px 35px rgba(12,90,50,.28); font-size: 12px; font-weight: 800; transition: transform .25s ease; }
.floating-contact:hover { color: white; transform: translateY(-4px); }
.floating-contact b { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.18); }

@keyframes heroZoom { from { transform: scale(1.055); } to { transform: scale(1); } }
@keyframes orbit { from { transform: translateY(-8px) scale(.98); } to { transform: translateY(8px) scale(1.02); } }
@keyframes scrollLine { 0%,100% { transform: scaleY(.4); opacity: .45; } 50% { transform: scaleY(1); opacity: 1; } }

@media (max-width: 991.98px) {
  .site-header { padding: 10px 0; background: rgba(255,255,255,.94); box-shadow: 0 10px 30px rgba(23,32,44,.08); backdrop-filter: blur(14px); }
  .navbar-collapse { margin-top: 12px; padding: 16px 18px 20px; border-radius: 18px; background: white; box-shadow: 0 24px 60px rgba(20,28,38,.14); }
  .navbar-nav { gap: 0; }
  .navbar .nav-link { padding: 13px 4px !important; border-bottom: 1px solid #f0eee9; }
  .nav-cta { margin-top: 13px; justify-content: space-between; }
  .hero { min-height: 790px; align-items: flex-end !important; }
  .hero-photo { background-position: 62% center; }
  .hero-wash { background: linear-gradient(180deg, rgba(248,246,242,.25) 0%, rgba(248,246,242,.62) 38%, rgba(248,246,242,.98) 62%, #f8f6f2 100%); }
  .hero-content { padding-top: 280px; padding-bottom: 90px; }
  .hero-copy h1 { font-size: clamp(48px,10vw,68px); }
  .experience-card { position: absolute; right: 15px; top: -12px; width: 148px; margin: 0; }
  .experience-card strong { font-size: 44px; }
  .scroll-note { display: none; }
  .about-media { min-height: 530px; }
  .section-copy { padding-left: 0 !important; }
  .benefit-visual { min-height: 430px; }
  .services-intro { margin-bottom: 38px; }
  .process-copy { position: static; padding-right: 0; }
  .service-feature { height: 470px; }
  .feature-overlay { left: 32px; width: calc(100% - 64px); }
  .visual-break { height: 480px; }
  .contact-image { min-height: 400px; }
  .contact-copy { padding: 58px 45px; }
}

@media (max-width: 575.98px) {
  .section { padding: 68px 0; }
  .navbar-brand img { width: 134px; }
  .hero { min-height: 760px; }
  .hero-content { padding-top: 275px; padding-bottom: 74px; }
  .hero-copy h1 { margin-bottom: 18px; font-size: 47px; }
  .hero-lead { margin-bottom: 25px; font-size: 15px; line-height: 1.65; }
  .hero-actions { align-items: flex-start !important; flex-direction: column; gap: 10px; }
  .experience-card { top: -44px; width: 138px; padding: 16px; }
  .impact-item { min-height: 88px; padding: 19px 12px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .section-copy h2, .section-heading h2, .services-intro h2, .process-copy h2 { font-size: 38px; }
  .about-media { min-height: 445px; }
  .image-frame-main { inset: 0 42px 58px 0; }
  .image-frame-small { width: 180px; height: 132px; border-width: 8px; }
  .about-accent { left: -8px; top: 124px; width: 55px; height: 215px; }
  .benefit-card { gap: 14px; padding: 20px 16px; }
  .card-number { flex-basis: 42px; width: 42px; height: 42px; }
  .card-arrow { display: none; }
  .benefit-visual { min-height: 390px; border-radius: 42px 5px 5px 5px; }
  .benefit-person { inset: 14px 14px 14px 33px; width: calc(100% - 47px); height: calc(100% - 28px); border-radius: 32px 3px 3px 3px; }
  .service-feature { height: 535px; border-radius: 6px 48px 6px 6px; }
  .service-feature::after { background: linear-gradient(0deg, rgba(11,18,27,.94), rgba(11,18,27,.2)); }
  .feature-overlay { left: 24px; top: auto; bottom: 28px; width: calc(100% - 48px); transform: none; }
  .feature-overlay h3 { font-size: 34px; }
  .service-photo { min-height: 225px; }
  .services-memory { justify-content: flex-start !important; }
  .process-steps article { grid-template-columns: 45px 1fr; gap: 14px; padding: 25px 5px; }
  .visual-break { height: 440px; }
  .visual-break > img { object-position: 62% center; }
  .visual-break-copy { left: 20px; right: 20px; }
  .visual-break-copy p { font-size: 39px; }
  .contact-image { min-height: 310px; }
  .contact-copy { padding: 43px 25px; }
  .contact-copy h2 { font-size: 40px; }
  .contact-actions { align-items: flex-start !important; flex-direction: column; }
  .contact-details { margin-top: 36px; }
  .floating-contact span { display: none; }
  .floating-contact { right: 16px; bottom: 16px; padding: 7px; }
}

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