/* ============ RESET & BASE ============ */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
  --ink:#10151f; --navy:#1b2436; --navy-2:#232c40;
  --gold:#c9a35f; --gold-2:#e3c586; --gold-dark:#a87f3f;
  --cream:#f8f5ef; --paper:#ffffff; --line:#e7e1d5;
  --text:#3c3832; --muted:#77726a;
  --serif:Georgia,'Times New Roman',serif;
  --sans:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
  --shadow:0 18px 50px rgba(16,21,31,.10);
  --shadow-lg:0 30px 80px rgba(16,21,31,.22);
}
html{scroll-behavior:smooth;scroll-padding-top:96px}
body{font-family:var(--sans);color:var(--text);background:var(--cream);line-height:1.7;overflow-x:hidden;-webkit-font-smoothing:antialiased}
body.no-scroll{overflow:hidden}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(1200px,92%);margin-inline:auto}
.ic{width:18px;height:18px;fill:currentColor;flex:none}
.ic.gold{fill:var(--gold)}

/* ============ TOPBAR ============ */
.topbar{background:var(--ink);color:#cfd3dd;font-size:.78rem;letter-spacing:.02em}
.topbar-in{display:flex;justify-content:space-between;align-items:center;gap:1rem;padding:.55rem 0;flex-wrap:wrap}
.topbar-item{display:inline-flex;align-items:center;gap:.5rem;color:#cfd3dd}
.topbar-item .ic{width:14px;height:14px;fill:var(--gold)}
.topbar-right{display:flex;gap:1.4rem}
.topbar a.topbar-item{transition:color .25s}
.topbar a.topbar-item:hover{color:var(--gold-2)}

/* ============ HEADER ============ */
.header{position:sticky;top:0;z-index:1000;background:rgba(255,255,255,.92);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);border-bottom:1px solid transparent;transition:box-shadow .35s,border-color .35s,background .35s}
.header.scrolled{box-shadow:0 10px 34px rgba(16,21,31,.10);border-color:var(--line);background:rgba(255,255,255,.97)}
.header-in{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:.9rem 0}
.brand{display:flex;align-items:center;gap:.8rem}
.brand-mark{width:48px;height:48px;flex:none;display:grid;place-items:center;font-family:var(--serif);font-size:1.7rem;color:var(--gold);background:linear-gradient(135deg,#10151f,#1b2436);border:1px solid rgba(201,163,95,.55);border-radius:10px;box-shadow:0 6px 18px rgba(16,21,31,.25)}
.brand-text{display:flex;flex-direction:column;line-height:1.15}
.brand-name{font-family:var(--serif);font-size:1.28rem;letter-spacing:.06em;color:var(--ink)}
.brand-name em{font-style:normal;color:var(--gold-dark);font-size:.95rem;letter-spacing:.22em;margin-left:.15rem}
.brand-sub{font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;color:var(--muted)}
.brand-light .brand-name,.brand-light .brand-sub{color:#fff}
.brand-light .brand-name em{color:var(--gold-2)}
.nav-links{display:flex;align-items:center;gap:1.7rem}
.nav-link{position:relative;font-size:.92rem;font-weight:600;letter-spacing:.02em;color:#3a3f4a;padding:.35rem 0;transition:color .25s}
.nav-link::after{content:"";position:absolute;left:0;bottom:0;width:0;height:2px;background:linear-gradient(90deg,var(--gold),var(--gold-2));transition:width .3s}
.nav-link:hover,.nav-link.active{color:var(--gold-dark)}
.nav-link:hover::after,.nav-link.active::after{width:100%}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;font-weight:700;font-size:.9rem;letter-spacing:.04em;border-radius:999px;padding:.95rem 1.9rem;cursor:pointer;border:2px solid transparent;transition:transform .25s,box-shadow .25s,background .25s,color .25s,border-color .25s}
.btn:hover{transform:translateY(-3px)}
.btn-sm{padding:.6rem 1.25rem;font-size:.82rem}
.btn-block{width:100%}
.btn-gold{background:linear-gradient(120deg,var(--gold-2),var(--gold) 55%,var(--gold-dark));color:#241b0d;box-shadow:0 12px 30px rgba(201,163,95,.35)}
.btn-gold:hover{box-shadow:0 18px 44px rgba(201,163,95,.5)}
.btn-ghost{border-color:rgba(255,255,255,.65);color:#fff;background:rgba(255,255,255,.06)}
.btn-ghost:hover{background:rgba(255,255,255,.16)}
.btn-dark{background:var(--ink);color:#fff}
.btn-dark:hover{background:var(--navy)}

/* ============ BURGER ============ */
.burger{display:none;flex-direction:column;justify-content:center;gap:6px;width:46px;height:46px;background:transparent;border:1px solid var(--line);border-radius:10px;cursor:pointer;z-index:1200;position:relative;transition:border-color .3s,background .3s}
.burger-line{width:22px;height:2px;background:var(--ink);border-radius:2px;margin-inline:auto;transition:transform .35s,opacity .35s,background .3s}
.burger.open{border-color:var(--gold);background:rgba(201,163,95,.12)}
.burger.open .burger-line{background:var(--gold-dark)}
.burger.open .burger-line:nth-child(1){transform:translateY(8px) rotate(45deg)}
.burger.open .burger-line:nth-child(2){opacity:0}
.burger.open .burger-line:nth-child(3){transform:translateY(-8px) rotate(-45deg)}

/* ============ MOBILE MENU OVERLAY ============ */
.mobile-menu{position:fixed;inset:0;z-index:1050;background:linear-gradient(160deg,rgba(10,14,24,.99),rgba(16,21,31,.99));backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);display:flex;flex-direction:column;justify-content:center;padding:6.5rem 2rem 2.5rem;opacity:0;visibility:hidden;transition:opacity .45s ease,visibility .45s}
.mobile-menu.open{opacity:1;visibility:visible}
.mobile-menu-in{display:flex;flex-direction:column;justify-content:space-between;height:100%;max-width:520px;margin-inline:auto;width:100%}
.mobile-nav{display:flex;flex-direction:column;gap:.35rem;align-items:center}
.m-link{font-family:var(--serif);font-size:clamp(1.5rem,6vw,2rem);color:#fff;padding:.5rem 0;letter-spacing:.03em;opacity:0;transform:translateY(24px);transition:opacity .5s ease,transform .5s ease,color .3s;text-align:center}
.m-link:hover{color:var(--gold-2)}
.mobile-menu.open .m-link{opacity:1;transform:none}
.mobile-menu-foot{display:flex;flex-direction:column;gap:1.4rem;text-align:center}
.mm-contact{display:flex;flex-direction:column;gap:.4rem;color:#cfd3dd;font-size:.95rem}
.mm-contact a{color:var(--gold-2)}
.mm-contact a:hover{text-decoration:underline}

/* ============ HERO ============ */
.hero{position:relative;min-height:100vh;min-height:100svh;display:flex;align-items:center;background-color:#10151f;background-size:cover;background-position:center;background-attachment:fixed}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(10,14,24,.72) 0%,rgba(10,14,24,.55) 45%,rgba(16,21,31,.92) 100%)}
.hero-in{position:relative;z-index:2;text-align:center;padding:7rem 0 8rem;color:#fff}
.hero-badge{display:inline-flex;align-items:center;gap:.6rem;border:1px solid rgba(227,197,134,.4);background:rgba(227,197,134,.10);color:var(--gold-2);font-size:.8rem;letter-spacing:.16em;text-transform:uppercase;padding:.55rem 1.2rem;border-radius:999px;margin-bottom:1.6rem}
.dot{width:8px;height:8px;border-radius:50%;background:var(--gold-2);box-shadow:0 0 0 0 rgba(227,197,134,.6);animation:pulse 2.2s infinite}
@keyframes pulse{0%{box-shadow:0 0 0 0 rgba(227,197,134,.55)}70%{box-shadow:0 0 0 10px rgba(227,197,134,0)}100%{box-shadow:0 0 0 0 rgba(227,197,134,0)}}
.hero-title{font-family:var(--serif);font-weight:700;font-size:clamp(2.4rem,6vw,4.5rem);line-height:1.12;letter-spacing:.01em;text-shadow:0 4px 30px rgba(0,0,0,.35)}
.gold-text{background:linear-gradient(120deg,#f0d9a8,var(--gold) 55%,#b98a3e);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;color:transparent}
.hero-sub{max-width:640px;margin:1.5rem auto 0;font-size:clamp(1rem,1.6vw,1.15rem);color:#e4e2dc}
.hero-rating{display:inline-flex;align-items:center;gap:.6rem;margin-top:1.6rem;padding:.6rem 1.3rem;border:1px solid rgba(255,255,255,.22);border-radius:999px;background:rgba(255,255,255,.08);font-size:.95rem}
.stars{color:var(--gold-2);letter-spacing:.12em}
.rating-num{font-weight:800;color:#fff}
.rating-sep{color:rgba(255,255,255,.4)}
.rating-txt{color:#e4e2dc}
.hero-actions{display:flex;gap:1rem;justify-content:center;margin-top:2.2rem;flex-wrap:wrap}
.hero-scroll{position:absolute;bottom:2.2rem;left:50%;transform:translateX(-50%);z-index:3;width:26px;height:44px;border:2px solid rgba(255,255,255,.5);border-radius:16px;display:flex;justify-content:center;padding-top:8px}
.hero-scroll span{width:4px;height:10px;border-radius:4px;background:var(--gold-2);animation:scrollDrop 1.8s infinite}
@keyframes scrollDrop{0%{transform:translateY(0);opacity:1}70%{transform:translateY(14px);opacity:0}100%{opacity:0}}

/* fade-in entrance */
.fade-in{opacity:0;transform:translateY(26px);animation:fadeUp .9s cubic-bezier(.22,.61,.36,1) forwards}
.d1{animation-delay:.15s}.d2{animation-delay:.3s}.d3{animation-delay:.45s}.d4{animation-delay:.6s}.d5{animation-delay:.75s}
@keyframes fadeUp{to{opacity:1;transform:none}}

/* ============ STRIP ============ */
.strip{background:var(--ink);color:#fff;position:relative;z-index:2}
.strip-in{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;padding:1.6rem 0}
.strip-item{display:flex;flex-direction:column;align-items:center;gap:.1rem;text-align:center;border-right:1px solid rgba(255,255,255,.12)}
.strip-item:last-child{border-right:none}
.strip-item b{font-family:var(--serif);font-size:1.55rem;color:var(--gold-2)}
.strip-item span{font-size:.78rem;letter-spacing:.14em;text-transform:uppercase;color:#aeb4c2}

/* ============ SECTIONS ============ */
.section{padding:6rem 0;position:relative}
.section-alt{background:var(--paper)}
.section-dark{background:linear-gradient(160deg,var(--ink),var(--navy));color:#e4e2dc}
.sec-head{margin-bottom:3.2rem}
.sec-head.center{text-align:center}
.sec-head.left{text-align:left}
.overline{display:inline-flex;align-items:center;gap:.8rem;color:var(--gold-dark);font-size:.78rem;font-weight:700;letter-spacing:.26em;text-transform:uppercase}
.overline::before,.overline::after{content:"";width:34px;height:1px;background:linear-gradient(90deg,transparent,var(--gold))}
.overline.light{color:var(--gold-2)}
.sec-head.left .overline::before{display:none}
.sec-head h2{font-family:var(--serif);font-size:clamp(1.9rem,4vw,3rem);color:var(--ink);line-height:1.18;margin-top:.7rem;font-weight:700}
.sec-head.light h2{color:#fff}
.sec-head p{margin-top:1rem;max-width:640px;color:var(--muted)}
.sec-head.center p{margin-inline:auto}
.sec-head.light p{color:#b9bfcd}

/* ============ ABOUT ============ */
.about-grid{display:grid;grid-template-columns:1fr 1.1fr;gap:4rem;align-items:center}
.about-media{position:relative}
.about-photo{aspect-ratio:4/5;border-radius:18px;background-size:cover;background-position:center;box-shadow:var(--shadow-lg);position:relative}
.about-photo::after{content:"";position:absolute;inset:0;border-radius:18px;border:1px solid rgba(255,255,255,.25);box-shadow:inset 0 0 60px rgba(0,0,0,.25)}
.about-card{position:absolute;left:-1.4rem;bottom:2rem;background:#fff;border-radius:14px;box-shadow:var(--shadow-lg);padding:1.1rem 1.5rem;display:flex;flex-direction:column;gap:.15rem;border-left:4px solid var(--gold);max-width:78%}
.about-card-name{font-family:var(--serif);font-weight:700;color:var(--ink);font-size:1.08rem}
.about-card-role{font-size:.76rem;color:var(--muted);letter-spacing:.04em}
.about-card-stars{color:var(--gold);letter-spacing:.14em;margin-top:.25rem}
.about-text p{margin-bottom:1rem;color:#5a554c}
.about-text p strong{color:var(--ink)}
.about-list{list-style:none;margin:1.4rem 0 1.8rem;display:flex;flex-direction:column;gap:.85rem}
.about-list li{display:flex;align-items:flex-start;gap:.7rem;font-weight:600;color:var(--ink)}
.about-list .ic{width:20px;height:20px;margin-top:3px}
.about-sign{margin-bottom:1.6rem;padding-left:1rem;border-left:3px solid var(--gold);display:flex;flex-direction:column}
.sign-name{font-family:var(--serif);font-size:1.15rem;color:var(--ink);font-weight:700}
.sign-role{font-size:.78rem;color:var(--muted)}

/* ============ CARDS ============ */
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:1.8rem}
.card{background:#fff;border-radius:18px;padding:2.4rem 2rem;box-shadow:var(--shadow);border-top:4px solid transparent;transition:transform .35s,box-shadow .35s,border-color .35s;position:relative;overflow:hidden}
.card::before{content:"";position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,var(--gold-2),var(--gold),var(--gold-dark));transform:scaleX(0);transform-origin:left;transition:transform .4s}
.card:hover{transform:translateY(-10px);box-shadow:var(--shadow-lg)}
.card:hover::before{transform:scaleX(1)}
.card-icon{width:64px;height:64px;border-radius:16px;display:grid;place-items:center;background:linear-gradient(135deg,var(--gold-2),var(--gold));color:#241b0d;margin-bottom:1.4rem;box-shadow:0 10px 24px rgba(201,163,95,.4)}
.card-icon .ic{width:30px;height:30px}
.card h3{font-family:var(--serif);font-size:1.35rem;color:var(--ink);margin-bottom:.8rem}
.card p{color:var(--muted);font-size:.95rem}
.card-link{display:inline-flex;align-items:center;gap:.45rem;margin-top:1.3rem;font-weight:700;font-size:.88rem;color:var(--gold-dark);letter-spacing:.03em}
.card-link span{transition:transform .3s}
.card-link:hover span{transform:translateX(6px)}

/* ============ INSOLVENȚĂ SPLIT ============ */
.split{display:grid;grid-template-columns:1fr 1.05fr;gap:4rem;align-items:center}
.split-media{position:relative}
.split-photo{aspect-ratio:4/3.4;border-radius:18px;background-size:cover;background-position:center;box-shadow:var(--shadow-lg)}
.split-photo::after{content:"";position:absolute;inset:0;border-radius:18px;box-shadow:inset 0 0 80px rgba(0,0,0,.3)}
.split-badge{position:absolute;right:-1rem;top:1.6rem;background:linear-gradient(120deg,var(--gold-2),var(--gold));color:#241b0d;font-weight:700;font-size:.82rem;padding:.65rem 1.2rem;border-radius:999px;box-shadow:0 14px 30px rgba(201,163,95,.45);letter-spacing:.05em}
.check-list{list-style:none;margin:1.8rem 0 2.2rem;display:flex;flex-direction:column;gap:.95rem}
.check-list li{display:flex;align-items:center;gap:.8rem;font-weight:600;color:#e8e6e0}
.check-list .ic{width:22px;height:22px}

/* ============ TESTIMONIALE ============ */
.google-badge{display:inline-flex;align-items:center;gap:.8rem;background:#fff;border:1px solid var(--line);border-radius:14px;padding:.8rem 1.3rem;box-shadow:var(--shadow);margin-top:1.6rem;text-align:left}
.g-logo{width:38px;height:38px;border-radius:50%;display:grid;place-items:center;background:linear-gradient(135deg,#4285F4,#34A853,#FBBC05,#EA4335);color:#fff;font-weight:800;font-size:1.25rem;font-family:var(--serif)}
.google-badge b{color:var(--ink);font-size:1.05rem}
.google-badge small{color:var(--muted);font-size:.75rem}
.testimonial{max-width:820px;margin:3.4rem auto 0;text-align:center;position:relative;background:#fff;border-radius:20px;padding:3.4rem 2.6rem 2.6rem;box-shadow:var(--shadow);border:1px solid var(--line)}
.quote-mark{position:absolute;top:-2rem;left:50%;transform:translateX(-50%);width:72px;height:72px;border-radius:50%;background:linear-gradient(135deg,var(--gold-2),var(--gold));color:#241b0d;font-family:var(--serif);font-size:3.4rem;line-height:1;display:grid;place-items:center;box-shadow:0 14px 30px rgba(201,163,95,.45)}
blockquote{font-family:var(--serif);font-size:clamp(1.15rem,2.2vw,1.45rem);font-style:italic;color:var(--ink);line-height:1.65}
figcaption{display:flex;align-items:center;justify-content:center;gap:.9rem;margin-top:1.8rem}
.avatar{width:46px;height:46px;border-radius:50%;background:linear-gradient(135deg,var(--navy),var(--ink));color:var(--gold-2);display:grid;place-items:center;font-family:var(--serif);font-size:1.2rem;font-weight:700}
.t-name{font-weight:800;color:var(--ink)}
.t-role{font-size:.78rem;color:var(--muted)}

/* ============ BLOG ============ */
.cats{display:flex;gap:.6rem;justify-content:center;flex-wrap:wrap;margin-top:1.5rem}
.cat{font-size:.76rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--gold-dark);border:1px solid rgba(201,163,95,.5);background:rgba(201,163,95,.08);padding:.45rem 1rem;border-radius:999px;transition:background .3s,color .3s}
.cat:hover{background:var(--gold);color:#241b0d}
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.8rem}
.blog-card{background:#fff;border-radius:18px;overflow:hidden;box-shadow:var(--shadow);display:flex;flex-direction:column;transition:transform .35s,box-shadow .35s}
.blog-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-lg)}
.blog-img{height:210px;background-size:cover;background-position:center;transition:transform .6s}
.blog-card:hover .blog-img{transform:scale(1.05)}
.blog-body{padding:1.6rem 1.6rem 1.8rem;display:flex;flex-direction:column;gap:.5rem;flex:1}
.blog-cat{align-self:flex-start;font-size:.7rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:#fff;background:linear-gradient(120deg,var(--gold),var(--gold-dark));padding:.32rem .8rem;border-radius:999px}
.blog-card h3{font-family:var(--serif);font-size:1.14rem;color:var(--ink);line-height:1.4}
.blog-date{font-size:.78rem;color:var(--muted)}
.blog-body .card-link{margin-top:auto}

/* ============ CTA ============ */
.cta{position:relative;padding:7rem 0;background-color:#10151f;background-size:cover;background-position:center;background-attachment:fixed;text-align:center;color:#fff}
.cta-overlay{position:absolute;inset:0;background:linear-gradient(120deg,rgba(10,14,24,.88),rgba(16,21,31,.82))}
.cta-in{position:relative;z-index:2}
.cta .overline{justify-content:center}
.cta h2{font-family:var(--serif);font-size:clamp(1.8rem,4vw,2.9rem);margin-top:.7rem;line-height:1.2}
.cta p{max-width:680px;margin:1.2rem auto 0;color:#d6d3cc}
.cta-actions{display:flex;gap:1rem;justify-content:center;margin-top:2.2rem;flex-wrap:wrap}

/* ============ FAQ ============ */
.faq-wrap{max-width:820px}
.faq{display:flex;flex-direction:column;gap:1rem}
.faq-item{background:#fff;border:1px solid var(--line);border-radius:14px;overflow:hidden;box-shadow:0 8px 26px rgba(16,21,31,.06)}
.faq-item summary{list-style:none;cursor:pointer;display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1.25rem 1.5rem;font-weight:700;color:var(--ink);font-size:1rem;transition:color .25s}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary:hover{color:var(--gold-dark)}
.faq-plus{width:30px;height:30px;flex:none;border-radius:50%;border:1px solid var(--gold);color:var(--gold-dark);display:grid;place-items:center;font-size:1.1rem;font-weight:700;transition:transform .35s,background .35s,color .35s}
.faq-item[open] .faq-plus{transform:rotate(45deg);background:var(--gold);color:#241b0d}
.faq-item p{padding:0 1.5rem 1.4rem;color:var(--muted);font-size:.95rem}
.faq-item p a{color:var(--gold-dark);font-weight:700}
.faq-item p a:hover{text-decoration:underline}

/* ============ CONTACT ============ */
.contact-grid{display:grid;grid-template-columns:1fr 1.15fr;gap:2.6rem;align-items:start}
.contact-info{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.1);border-radius:18px;padding:2.2rem;display:flex;flex-direction:column;gap:1.7rem}
.c-item{display:flex;gap:1.1rem;align-items:flex-start}
.c-icon{width:46px;height:46px;flex:none;border-radius:12px;background:linear-gradient(135deg,var(--gold-2),var(--gold));color:#241b0d;display:grid;place-items:center;box-shadow:0 8px 20px rgba(201,163,95,.35)}
.c-icon .ic{width:22px;height:22px}
.c-item h4{color:#fff;font-family:var(--serif);font-size:1.05rem;margin-bottom:.2rem}
.c-item p{color:#b9bfcd;font-size:.92rem;line-height:1.6}
.c-item a{color:var(--gold-2)}
.c-item a:hover{text-decoration:underline}
.map-panel{position:relative;height:190px;border-radius:14px;overflow:hidden;background:
  repeating-linear-gradient(0deg,rgba(255,255,255,.05) 0 1px,transparent 1px 46px),
  repeating-linear-gradient(90deg,rgba(255,255,255,.05) 0 1px,transparent 1px 46px),
  linear-gradient(160deg,#263048,#1b2436);
  border:1px solid rgba(255,255,255,.12)}
.map-pin{position:absolute;left:50%;top:42%;transform:translate(-50%,-100%);width:0;height:0;border-left:14px solid transparent;border-right:14px solid transparent;border-top:26px solid var(--gold);filter:drop-shadow(0 6px 8px rgba(0,0,0,.5));animation:pinDrop 1.2s ease both}
.map-pin::after{content:"";position:absolute;left:-9px;top:-24px;width:18px;height:18px;border-radius:50%;background:var(--gold-2)}
@keyframes pinDrop{from{transform:translate(-50%,-160%);opacity:0}to{transform:translate(-50%,-100%);opacity:1}}
.map-label{position:absolute;left:50%;bottom:14px;transform:translateX(-50%);background:rgba(16,21,31,.85);color:var(--gold-2);font-size:.76rem;letter-spacing:.04em;padding:.4rem .9rem;border-radius:999px;white-space:nowrap;border:1px solid rgba(201,163,95,.4)}
.contact-form{background:#fff;border-radius:18px;padding:2.4rem;box-shadow:var(--shadow);display:flex;flex-direction:column;gap:1.2rem}
.contact-form h3{font-family:var(--serif);color:var(--ink);font-size:1.5rem;margin-bottom:.2rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1.1rem}
.form-field{display:flex;flex-direction:column;gap:.45rem}
.form-field label{font-size:.8rem;font-weight:700;color:var(--ink);letter-spacing:.04em}
.form-field input,.form-field textarea{font-family:var(--sans);font-size:.95rem;color:var(--text);border:1.5px solid var(--line);border-radius:10px;padding:.85rem 1rem;background:#fbfaf7;transition:border-color .25s,box-shadow .25s;resize:vertical}
.form-field input:focus,.form-field textarea:focus{outline:none;border-color:var(--gold);box-shadow:0 0 0 4px rgba(201,163,95,.15)}
.form-note{color:#2e7d32;font-weight:700;background:#e8f5e9;border:1px solid #a5d6a7;padding:.8rem 1rem;border-radius:10px;font-size:.9rem}
.form-hint{font-size:.8rem;color:var(--muted)}
.form-hint a{color:var(--gold-dark);font-weight:700}
.form-hint a:hover{text-decoration:underline}

/* ============ FOOTER ============ */
.footer{background:#0b0f18;color:#aeb4c2;padding-top:4.5rem}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1.2fr 1.2fr;gap:2.6rem;padding-bottom:3rem}
.f-col h4{color:#fff;font-family:var(--serif);font-size:1.05rem;margin-bottom:1.1rem;position:relative;padding-bottom:.6rem}
.f-col h4::after{content:"";position:absolute;left:0;bottom:0;width:34px;height:2px;background:linear-gradient(90deg,var(--gold),transparent)}
.f-col a{display:block;padding:.28rem 0;color:#aeb4c2;font-size:.9rem;transition:color .25s,padding-left .25s}
.f-col a:hover{color:var(--gold-2);padding-left:6px}
.f-col p{font-size:.9rem;line-height:1.7;margin-bottom:.5rem}
.f-col p a{display:inline;padding:0}
.f-col p a:hover{padding-left:0}
.f-hours{color:var(--gold-2);font-weight:700}
.footer .brand{margin-bottom:1.2rem}
.footer .brand-mark{width:42px;height:42px;font-size:1.4rem}
.footer-bottom{border-top:1px solid rgba(255,255,255,.09);padding:1.3rem 0}
.footer-bottom-in{display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap;font-size:.8rem}
.f-legal a{color:#aeb4c2}
.f-legal a:hover{color:var(--gold-2)}

/* ============ CALL FAB ============ */
.call-fab{position:fixed;right:1.2rem;bottom:1.2rem;z-index:900;width:56px;height:56px;border-radius:50%;background:linear-gradient(135deg,var(--gold-2),var(--gold));color:#241b0d;display:grid;place-items:center;font-size:1.4rem;box-shadow:0 14px 34px rgba(201,163,95,.5);transition:transform .3s,opacity .3s}
.call-fab:hover{transform:scale(1.08)}
body.no-scroll .call-fab{opacity:0;pointer-events:none}

/* ============ REVEAL ANIMATION ============ */
.reveal{opacity:0;transform:translateY(42px);transition:opacity .9s cubic-bezier(.22,.61,.36,1),transform .9s cubic-bezier(.22,.61,.36,1)}
.reveal.visible{opacity:1;transform:none}

/* ============ RESPONSIVE ============ */
@media (max-width:1100px){
  .nav-links{gap:1.1rem}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:1024px){
  .nav-links{display:none}
  .burger{display:flex}
  .about-grid,.split,.contact-grid{grid-template-columns:1fr;gap:3rem}
  .about-card{left:1rem}
  .split-badge{right:1rem}
  .cards,.blog-grid{grid-template-columns:1fr 1fr}
  .strip-in{grid-template-columns:repeat(2,1fr);gap:1.4rem}
  .strip-item{border-right:none}
  .hero{background-attachment:scroll}
  .cta{background-attachment:scroll}
}
@media (max-width:768px){
  .topbar-in{justify-content:center}
  .topbar-right{display:none}
  .topbar-item span{font-size:.72rem}
  .cards,.blog-grid{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .section{padding:4.2rem 0}
  .hero-in{padding:6rem 0 7rem}
  .hero-actions .btn{width:100%}
  .about-card{position:static;margin-top:1rem;max-width:none;border-left:none;border-top:4px solid var(--gold)}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom-in{justify-content:center;text-align:center}
  .quote-mark{top:-1.6rem;width:60px;height:60px;font-size:2.6rem}
  .testimonial{padding:3rem 1.4rem 2rem}
  .brand-sub{display:none}
  .brand-name{font-size:1.12rem}
  .brand-mark{width:42px;height:42px;font-size:1.5rem}
  .contact-form{padding:1.8rem}
  .map-label{white-space:normal;text-align:center;width:90%}
}
@media (max-width:420px){
  .strip-in{grid-template-columns:1fr 1fr}
  .hero-badge{font-size:.68rem}
  .hero-rating{flex-wrap:wrap;justify-content:center}
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation:none!important;transition:none!important}
  html{scroll-behavior:auto}
  .reveal,.fade-in{opacity:1;transform:none}
}

