/* ===================== RESET ===================== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html,body{scrollbar-width:none;-ms-overflow-style:none}
html::-webkit-scrollbar,body::-webkit-scrollbar{display:none}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{cursor:pointer;border:none;background:none;font-family:inherit}

/* ===================== DESIGN TOKENS ===================== */
:root{
  --bg:         oklch(0.985 0.012 95);
  --fg:         oklch(0.22 0.04 150);
  --card:       oklch(1 0 0);
  --primary:    oklch(0.32 0.06 150);
  --primary-fg: oklch(0.985 0.012 95);
  --secondary:  oklch(0.95 0.02 95);
  --secondary-fg: oklch(0.32 0.06 150);
  --muted-fg:   oklch(0.45 0.025 150);
  --accent:     oklch(0.86 0.22 130);
  --accent-fg:  oklch(0.22 0.06 150);
  --border:     oklch(0.9 0.02 130);
  --input:      oklch(0.92 0.015 130);
  --destructive:oklch(0.577 0.245 27.325);
  --grad-hero:  linear-gradient(135deg,oklch(0.28 0.06 150) 0%,oklch(0.36 0.07 145) 60%,oklch(0.5 0.09 130) 100%);
  --grad-gold:  linear-gradient(135deg,oklch(0.9 0.22 128) 0%,oklch(0.78 0.2 138) 100%);
  --sh-luxe:    0 30px 80px -30px oklch(0.32 0.06 150/0.35);
  --sh-gold:    0 20px 50px -20px oklch(0.86 0.22 130/0.55);
}

/* ===================== BASE ===================== */
body{
  background:var(--bg);
  color:var(--fg);
  font-family:'Inter',system-ui,-apple-system,sans-serif;
  line-height:1.6;
}
h1,h2,h3,h4,.font-display{
  font-family:'Playfair Display',Georgia,serif;
  letter-spacing:-0.02em;
}

/* ===================== ANIMATIONS ===================== */
@keyframes float-slow{0%,100%{transform:translateY(0) rotate(0deg)}50%{transform:translateY(-20px) rotate(1deg)}}
@keyframes fade-up{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}
@keyframes pulse-ring{0%{box-shadow:0 0 0 0 oklch(0.65 0.18 145/0.7)}70%{box-shadow:0 0 0 18px oklch(0.65 0.18 145/0)}100%{box-shadow:0 0 0 0 oklch(0.65 0.18 145/0)}}
@keyframes spin{to{transform:rotate(360deg)}}
.anim-float{animation:float-slow 8s ease-in-out infinite}
.anim-fade-up{animation:fade-up 0.8s cubic-bezier(0.22,1,0.36,1) both}
.anim-pulse{animation:pulse-ring 2s infinite}
.anim-spin{animation:spin 1s linear infinite}

/* ===================== UTILITIES ===================== */
.gold-text{background:var(--grad-gold);-webkit-background-clip:text;background-clip:text;color:transparent}
.sh-luxe{box-shadow:var(--sh-luxe)}
.sh-gold{box-shadow:var(--sh-gold)}
.wrap{width:100%;max-width:1280px;margin:0 auto;padding:0 1rem}
@media(min-width:768px){.wrap{padding:0 2rem}}
.section-label{font-size:.75rem;font-weight:600;text-transform:uppercase;letter-spacing:.3em;color:var(--accent)}
.section-title{margin-top:.5rem;font-size:clamp(2rem,5vw,3rem);font-weight:700;color:var(--fg)}
.section-title.light{color:var(--primary-fg)}
.section-sub{margin-top:.75rem;color:var(--muted-fg)}
.section-sub.light{color:oklch(0.985 0.012 95/0.8)}

/* ===================== HEADER ===================== */
.site-header{
  position:sticky;top:0;z-index:40;
  width:100%;
  border-bottom:1px solid oklch(0.9 0.02 130/0.4);
  background:oklch(0.985 0.012 95/0.85);
  backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:72px;max-width:1280px;margin:0 auto;padding:0 1rem}
@media(min-width:768px){.header-inner{padding:0 2rem}}
.logo img{height:44px;width:auto;transition:transform .3s}
.logo:hover img{transform:scale(1.05)}
.nav-desktop{display:none;align-items:center;gap:2rem}
@media(min-width:768px){.nav-desktop{display:flex}}
.nav-link{position:relative;font-size:.875rem;font-weight:500;color:oklch(0.22 0.04 150/0.8);transition:color .2s}
.nav-link::after{content:'';position:absolute;bottom:-4px;left:0;height:1px;width:0;background:var(--accent);transition:width .2s}
.nav-link:hover,.nav-link.active{color:var(--accent)}
.nav-link:hover::after,.nav-link.active::after{width:100%}
.btn-enquire{display:inline-flex;align-items:center;border-radius:9999px;background:var(--accent);padding:.6rem 1.25rem;font-size:.875rem;font-weight:600;color:var(--accent-fg);box-shadow:var(--sh-gold);transition:all .3s}
.btn-enquire:hover{transform:scale(1.05);filter:brightness(1.1)}
.hamburger{display:flex;padding:.5rem;color:var(--fg)}
@media(min-width:768px){.hamburger{display:none}}
.mobile-nav{display:none;border-top:1px solid oklch(0.9 0.02 130/0.4);background:var(--bg);overflow:hidden;max-height:0;transition:max-height .3s ease}
.mobile-nav.open{max-height:320px}
@media(max-width:767px){.mobile-nav{display:block}}
.mobile-nav nav{display:flex;flex-direction:column;gap:.25rem;padding:1rem}
.mobile-nav nav a{border-radius:.375rem;padding:.625rem .75rem;font-size:.875rem;font-weight:500;color:oklch(0.22 0.04 150/0.8);transition:background .2s}
.mobile-nav nav a:hover,.mobile-nav nav a.active{background:var(--secondary);color:var(--accent)}

/* ===================== FOOTER ===================== */
.site-footer{border-top:1px solid oklch(0.9 0.02 130/0.6);background:var(--primary);color:var(--primary-fg)}
.footer-grid{display:grid;grid-template-columns:1fr;gap:2.5rem;max-width:1280px;margin:0 auto;padding:4rem 1rem}
@media(min-width:768px){.footer-grid{grid-template-columns:repeat(4,1fr);padding:4rem 2rem}}
.footer-logo-wrap{display:inline-flex;border-radius:.75rem;background:oklch(0.985 0.012 95/0.95);padding:.75rem}
.footer-logo-wrap img{height:56px;width:auto}
.footer-tagline{margin-top:1rem;font-size:.875rem;line-height:1.6;color:oklch(0.985 0.012 95/0.7)}
.footer-col h4{font-size:1rem;font-weight:600;color:var(--accent);font-family:'Playfair Display',Georgia,serif}
.footer-col ul{list-style:none;margin-top:1rem;display:flex;flex-direction:column;gap:.625rem;font-size:.875rem;color:oklch(0.985 0.012 95/0.7)}
.footer-col ul a:hover{color:var(--accent)}
.footer-contact-item{display:flex;align-items:flex-start;gap:.625rem}
.footer-contact-item svg{flex-shrink:0;margin-top:2px;color:var(--accent)}
.footer-social{display:flex;gap:.75rem;margin-top:1rem}
.social-btn{display:flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:9999px;border:1px solid oklch(0.985 0.012 95/0.2);color:var(--primary-fg);transition:all .3s}
.social-btn:hover{background:var(--accent);color:var(--accent-fg);border-color:var(--accent)}
.footer-bottom{border-top:1px solid oklch(0.985 0.012 95/0.1)}
.footer-bottom-inner{max-width:1280px;margin:0 auto;display:flex;flex-direction:column;align-items:center;justify-content:space-between;gap:.5rem;padding:1.25rem 1rem;font-size:.75rem;color:oklch(0.985 0.012 95/0.6)}
@media(min-width:768px){.footer-bottom-inner{flex-direction:row;padding:1.25rem 2rem}}

/* ===================== FLOATING ACTIONS ===================== */
.floating-actions{position:fixed;bottom:1.5rem;right:1.5rem;z-index:50;display:flex;flex-direction:column;align-items:center;gap:.75rem}
.whatsapp-btn{display:flex;align-items:center;justify-content:center;width:56px;height:56px;border-radius:9999px;background:oklch(0.32 0.06 150);color:#fff;box-shadow:0 4px 20px oklch(0.32 0.06 150/0.5);transition:transform .3s}
.whatsapp-btn:hover{transform:scale(1.1)}
.scroll-top{display:flex;align-items:center;justify-content:center;width:44px;height:44px;border-radius:9999px;background:var(--card);border:1px solid var(--border);color:var(--fg);box-shadow:var(--sh-luxe);opacity:0;pointer-events:none;transition:opacity .3s,transform .3s}
.scroll-top.visible{opacity:1;pointer-events:auto}
.scroll-top:hover{transform:translateY(-2px)}

/* ===================== BUTTONS ===================== */
.btn-accent{display:inline-flex;align-items:center;gap:.5rem;border-radius:9999px;background:var(--accent);padding:.875rem 1.75rem;font-size:.875rem;font-weight:600;color:var(--accent-fg);box-shadow:var(--sh-gold);transition:all .3s}
.btn-accent:hover{transform:scale(1.05)}
.btn-accent.sm{padding:.625rem 1.25rem;font-size:.75rem}
.btn-outline{display:inline-flex;align-items:center;gap:.5rem;border-radius:9999px;border:1px solid oklch(0.985 0.012 95/0.3);background:oklch(0.985 0.012 95/0.1);padding:.875rem 1.75rem;font-size:.875rem;font-weight:600;color:var(--primary-fg);backdrop-filter:blur(8px);transition:all .3s}
.btn-outline:hover{background:oklch(0.985 0.012 95/0.2)}
.btn-dark{display:inline-flex;align-items:center;gap:.5rem;border-radius:9999px;background:var(--primary);padding:.75rem 1.75rem;font-size:.875rem;font-weight:600;color:var(--primary-fg);box-shadow:var(--sh-luxe);transition:all .3s}
.btn-dark:hover{filter:brightness(1.1)}
.btn-white{display:inline-flex;align-items:center;gap:.5rem;border-radius:9999px;background:var(--primary-fg);padding:.625rem 1.25rem;font-size:.75rem;font-weight:600;color:var(--primary);transition:transform .3s}
.btn-white:hover{transform:scale(1.05)}

/* ===================== HERO ===================== */
.hero{position:relative;overflow:hidden;isolation:isolate}
.hero-bg{position:absolute;inset:0;z-index:-2;width:100%;height:100%;object-fit:cover}
.hero-overlay{position:absolute;inset:0;z-index:-1;background:linear-gradient(to bottom right,oklch(0.32 0.06 150/0.9),oklch(0.32 0.06 150/0.7),oklch(0.32 0.06 150/0.5))}
.hero-blob{position:absolute;top:-6rem;right:-6rem;z-index:-1;width:24rem;height:24rem;border-radius:9999px;background:oklch(0.86 0.22 130/0.3);filter:blur(60px)}
.hero-content{position:relative;display:flex;flex-direction:column;justify-content:center;min-height:88vh;max-width:1280px;margin:0 auto;padding:5rem 1rem}
@media(min-width:768px){.hero-content{padding:5rem 2rem}}
.hero-badge{display:inline-flex;align-items:center;gap:.5rem;border-radius:9999px;border:1px solid oklch(0.86 0.22 130/0.4);background:oklch(0.32 0.06 150/0.3);padding:.375rem 1rem;font-size:.75rem;font-weight:600;letter-spacing:.3em;text-transform:uppercase;color:var(--accent);backdrop-filter:blur(8px);width:fit-content;align-self:flex-start}
.hero h1{margin-top:1.5rem;font-size:clamp(3rem,8vw,5.5rem);font-weight:700;line-height:1.05;color:var(--primary-fg)}
.hero-sub{margin-top:1.5rem;max-width:36rem;font-size:1.125rem;line-height:1.7;color:oklch(0.985 0.012 95/0.85)}
.hero-ctas{margin-top:2.5rem;display:flex;flex-wrap:wrap;gap:1rem}

/* ===================== STATS ===================== */
.stats-bar{border-top:1px solid var(--border);border-bottom:1px solid var(--border);background:oklch(0.95 0.02 95/0.4)}
.stats-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;max-width:1280px;margin:0 auto;padding:3rem 1rem}
@media(min-width:768px){.stats-grid{grid-template-columns:repeat(4,1fr);padding:3rem 2rem}}
.stat-item{text-align:center}
.stat-icon{display:flex;align-items:center;justify-content:center;width:48px;height:48px;margin:0 auto;border-radius:.75rem;background:oklch(0.86 0.22 130/0.15);color:var(--accent)}
.stat-val{margin-top:.75rem;font-family:'Playfair Display',Georgia,serif;font-size:clamp(1.75rem,4vw,2.25rem);font-weight:700;color:var(--fg)}
.stat-lbl{font-size:.75rem;text-transform:uppercase;letter-spacing:.05em;color:var(--muted-fg)}

/* ===================== UPCOMING ===================== */
.upcoming-section{max-width:1280px;margin:0 auto;padding:5rem 1rem}
@media(min-width:768px){.upcoming-section{padding:7rem 2rem}}
.upcoming-header{display:flex;flex-direction:column;align-items:flex-start;justify-content:space-between;gap:1rem}
@media(min-width:768px){.upcoming-header{flex-direction:row;align-items:flex-end}}
.view-all{display:inline-flex;align-items:center;gap:.5rem;font-size:.875rem;font-weight:600;color:var(--accent);transition:gap .2s}
.view-all:hover{gap:.75rem}
.upcoming-grid{margin-top:3rem;display:grid;gap:2rem}
@media(min-width:768px){.upcoming-grid{grid-template-columns:repeat(2,1fr)}}
.upcoming-card{position:relative;overflow:hidden;border-radius:1.5rem;box-shadow:var(--sh-luxe)}
.upcoming-card img{width:100%;height:420px;object-fit:cover;transition:transform .7s;display:block}
.upcoming-card:hover img{transform:scale(1.05)}
.upcoming-overlay{position:absolute;inset:0;background:linear-gradient(to top,oklch(0.32 0.06 150),oklch(0.32 0.06 150/0.6),transparent)}
.upcoming-info{position:absolute;inset-x:0;bottom:0;padding:2rem;color:var(--primary-fg)}
.badge-upcoming{display:inline-flex;border-radius:9999px;background:var(--accent);padding:.25rem .75rem;font-size:.75rem;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:var(--accent-fg)}
.upcoming-info h3{margin-top:.75rem;font-size:clamp(1.5rem,3vw,2rem);font-weight:700;font-family:'Playfair Display',Georgia,serif}
.upcoming-meta{margin-top:.25rem;display:flex;align-items:center;gap:.375rem;font-size:.875rem;color:oklch(0.985 0.012 95/0.8)}
.upcoming-desc{margin-top:.75rem;max-width:28rem;font-size:.875rem;line-height:1.6;color:oklch(0.985 0.012 95/0.85)}

/* ===================== PORTFOLIO ===================== */
.portfolio-section{background:oklch(0.95 0.02 95/0.4);padding:5rem 0}
@media(min-width:768px){.portfolio-section{padding:7rem 0}}
.portfolio-inner{max-width:1280px;margin:0 auto;padding:0 1rem}
@media(min-width:768px){.portfolio-inner{padding:0 2rem}}
.portfolio-grid{margin-top:3rem;display:grid;gap:2rem}
@media(min-width:768px){.portfolio-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.portfolio-grid{grid-template-columns:repeat(3,1fr)}}

/* ===================== PROJECT CARD ===================== */
.project-card{position:relative;overflow:hidden;border-radius:1rem;background:var(--card);box-shadow:var(--sh-luxe);transition:transform .3s,box-shadow .3s}
.project-card:hover{transform:translateY(-4px);box-shadow:var(--sh-gold)}
.card-img-wrap{position:relative;aspect-ratio:4/3;overflow:hidden}
.card-img-wrap img{width:100%;height:100%;object-fit:cover;transition:transform .7s;display:block}
.project-card:hover .card-img-wrap img{transform:scale(1.1)}
.card-img-overlay{position:absolute;inset:0;background:linear-gradient(to top,oklch(0.32 0.06 150/0.9),oklch(0.32 0.06 150/0.2),transparent)}
.card-status{position:absolute;top:1rem;left:1rem;border-radius:9999px;padding:.25rem .75rem;font-size:.75rem;font-weight:600;text-transform:uppercase;letter-spacing:.05em}
.status-upcoming{background:var(--accent);color:var(--accent-fg)}
.status-ongoing{background:oklch(0.65 0.18 145);color:#fff}
.status-completed{background:var(--primary);color:var(--primary-fg)}
.card-title-area{position:absolute;inset-x:0;bottom:0;padding:1.25rem;color:var(--primary-fg)}
.card-title-area h3{font-size:1.5rem;font-weight:700;font-family:'Playfair Display',Georgia,serif}
.card-meta{margin-top:.25rem;display:flex;align-items:center;gap:.75rem;font-size:.75rem;color:oklch(0.985 0.012 95/0.8)}
.card-meta span{display:flex;align-items:center;gap:.25rem}
.card-body{padding:1.25rem}
.card-body p{font-size:.875rem;line-height:1.6;color:var(--muted-fg)}

/* ===================== ABOUT TEASER ===================== */
.about-teaser{max-width:1280px;margin:0 auto;padding:5rem 1rem}
@media(min-width:768px){.about-teaser{padding:7rem 2rem}}
.about-teaser-grid{display:grid;align-items:center;gap:3rem}
@media(min-width:1024px){.about-teaser-grid{grid-template-columns:repeat(2,1fr)}}
.about-img-wrap{position:relative}
.about-img-glow{position:absolute;inset:-1rem;z-index:-1;border-radius:1.5rem;background:linear-gradient(to bottom right,oklch(0.86 0.22 130/0.3),oklch(0.32 0.06 150/0.2));filter:blur(2rem)}
.about-img-wrap img{border-radius:1.5rem;box-shadow:var(--sh-luxe);width:100%}
.about-stat-card{position:absolute;bottom:-1.5rem;right:-1.5rem;display:none;border-radius:1rem;background:var(--card);padding:1.5rem;box-shadow:var(--sh-luxe)}
@media(min-width:768px){.about-stat-card{display:block}}
.about-stat-card .val{font-family:'Playfair Display',Georgia,serif;font-size:2.25rem;font-weight:700;color:var(--accent)}
.about-stat-card .lbl{font-size:.75rem;text-transform:uppercase;letter-spacing:.05em;color:var(--muted-fg)}
.about-teaser-text h2{margin-top:.5rem;font-size:clamp(2rem,5vw,3rem);font-weight:700;color:var(--fg)}
.about-teaser-text p{margin-top:1.25rem;line-height:1.7;color:var(--muted-fg)}

/* ===================== TESTIMONIALS ===================== */
.testimonials-section{background:var(--primary);padding:5rem 0;color:var(--primary-fg)}
@media(min-width:768px){.testimonials-section{padding:7rem 0}}
.testimonials-inner{max-width:1280px;margin:0 auto;padding:0 1rem}
@media(min-width:768px){.testimonials-inner{padding:0 2rem}}
.testimonials-grid{margin-top:3rem;display:grid;gap:1.5rem}
@media(min-width:768px){.testimonials-grid{grid-template-columns:repeat(3,1fr)}}
.testimonial-card{border-radius:1rem;border:1px solid oklch(0.985 0.012 95/0.1);background:oklch(0.985 0.012 95/0.05);padding:1.75rem;backdrop-filter:blur(8px)}
.testimonial-card blockquote{margin-top:1rem;font-size:1rem;line-height:1.6;color:oklch(0.985 0.012 95/0.9)}
.testimonial-stars{display:flex;gap:1px;margin-top:1.25rem;color:var(--accent)}
.testimonial-author{margin-top:.5rem;font-size:.75rem;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:oklch(0.985 0.012 95/0.7)}

/* ===================== CTA SECTION ===================== */
.cta-section{max-width:1280px;margin:0 auto;padding:5rem 1rem}
@media(min-width:768px){.cta-section{padding:5rem 2rem}}
.cta-box{position:relative;overflow:hidden;border-radius:1.5rem;background:linear-gradient(to bottom right,var(--primary),oklch(0.32 0.06 150/0.8));padding:2.5rem;text-align:center;color:var(--primary-fg);box-shadow:var(--sh-luxe)}
@media(min-width:768px){.cta-box{padding:4rem}}
.cta-blob{position:absolute;top:-5rem;right:-5rem;width:15rem;height:15rem;border-radius:9999px;background:oklch(0.86 0.22 130/0.3);filter:blur(3rem);pointer-events:none}
.cta-box h2{position:relative;font-size:clamp(2rem,5vw,3rem);font-weight:700}
.cta-box p{position:relative;margin:.75rem auto 0;max-width:36rem;color:oklch(0.985 0.012 95/0.8)}
.cta-btns{position:relative;margin-top:2rem;display:flex;flex-wrap:wrap;justify-content:center;gap:.75rem}

/* ===================== PAGE HERO (sub-pages) ===================== */
.page-hero{background:var(--grad-hero);color:var(--primary-fg)}
.page-hero-inner{max-width:1280px;margin:0 auto;padding:5rem 1rem}
@media(min-width:768px){.page-hero-inner{padding:7rem 2rem}}
.page-hero h1{margin-top:.75rem;font-size:clamp(2.5rem,6vw,4rem);font-weight:700}
.page-hero p{margin-top:1rem;max-width:40rem;font-size:1rem;line-height:1.7;color:oklch(0.985 0.012 95/0.8)}
@media(min-width:768px){.page-hero p{font-size:1.125rem}}

/* ===================== PROJECTS PAGE ===================== */
.filter-bar{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:.5rem;margin-bottom:2.5rem}
.filter-btn{border-radius:9999px;padding:.5rem 1.25rem;font-size:.875rem;font-weight:500;background:var(--secondary);color:var(--secondary-fg);transition:all .2s}
.filter-btn:hover{background:var(--accent);color:var(--accent-fg)}
.filter-btn.active{background:var(--primary);color:var(--primary-fg);box-shadow:var(--sh-luxe)}

/* ===================== ABOUT PAGE ===================== */
.about-page-content{max-width:64rem;margin:0 auto;padding:4rem 1rem}
@media(min-width:768px){.about-page-content{padding:6rem 2rem}}
.about-prose p{font-size:1.125rem;line-height:1.8;color:var(--muted-fg)}
.about-prose strong{color:var(--fg)}
.about-prose p+p{margin-top:1.5rem}
.values-grid{margin-top:4rem;display:grid;gap:1.5rem}
@media(min-width:768px){.values-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.values-grid{grid-template-columns:repeat(4,1fr)}}
.value-card{border-radius:1rem;border:1px solid var(--border);background:var(--card);padding:1.5rem;box-shadow:0 1px 3px oklch(0 0 0/0.06);transition:transform .3s,box-shadow .3s}
.value-card:hover{transform:translateY(-4px);box-shadow:var(--sh-luxe)}
.value-icon{display:flex;align-items:center;justify-content:center;width:48px;height:48px;border-radius:.75rem;background:oklch(0.86 0.22 130/0.15);color:var(--accent)}
.value-card h3{margin-top:1rem;font-size:1.25rem;font-weight:600;font-family:'Playfair Display',Georgia,serif;color:var(--fg)}
.value-card p{margin-top:.5rem;font-size:.875rem;line-height:1.6;color:var(--muted-fg)}
.about-cta-box{margin-top:4rem;border-radius:1.5rem;background:var(--primary);padding:2.5rem;text-align:center;color:var(--primary-fg);box-shadow:var(--sh-luxe)}
@media(min-width:768px){.about-cta-box{padding:3.5rem}}
.about-cta-box h2{font-size:clamp(1.75rem,4vw,2.25rem);font-weight:700}
.about-cta-box p{margin:.75rem auto 0;max-width:36rem;color:oklch(0.985 0.012 95/0.8)}

/* ===================== CONTACT PAGE ===================== */
.contact-content{max-width:1280px;margin:0 auto;padding:4rem 1rem}
@media(min-width:768px){.contact-content{padding:5rem 2rem}}
.contact-grid{display:grid;gap:2.5rem}
@media(min-width:1024px){.contact-grid{grid-template-columns:2fr 3fr}}
.contact-info-list{display:flex;flex-direction:column;gap:1rem}
.contact-info-item{display:flex;align-items:flex-start;gap:1rem;border-radius:1rem;border:1px solid var(--border);background:var(--card);padding:1.25rem;transition:all .3s}
a.contact-info-item:hover{border-color:var(--accent);box-shadow:var(--sh-gold)}
.contact-info-icon{display:flex;align-items:center;justify-content:center;flex-shrink:0;width:44px;height:44px;border-radius:.75rem;background:oklch(0.86 0.22 130/0.15);color:var(--accent)}
.contact-info-item .clabel{font-size:.75rem;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:var(--muted-fg)}
.contact-info-item .cline{font-size:.875rem;font-weight:500;color:var(--fg)}
.form-card{border-radius:1.5rem;border:1px solid var(--border);background:var(--card);padding:1.5rem;box-shadow:var(--sh-luxe)}
@media(min-width:768px){.form-card{padding:2.5rem}}
.form-card h2{font-size:clamp(1.5rem,3vw,1.875rem);font-weight:700;color:var(--fg)}
.form-card .sub{margin-top:.25rem;font-size:.875rem;color:var(--muted-fg)}
.form-grid{display:grid;gap:1rem;margin-top:1.5rem}
@media(min-width:768px){.form-grid{grid-template-columns:repeat(2,1fr)}}
.field{display:flex;flex-direction:column}
.field label{font-size:.75rem;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:var(--muted-fg);margin-bottom:.375rem}
.field input,.field select,.field textarea{width:100%;border-radius:.75rem;border:1px solid var(--input);background:var(--bg);padding:.75rem 1rem;font-size:.875rem;color:var(--fg);font-family:inherit;outline:none;transition:border-color .2s,box-shadow .2s}
.field input:focus,.field select,.field textarea:focus{border-color:var(--accent);box-shadow:0 0 0 3px oklch(0.86 0.22 130/0.2)}
.field textarea{resize:none}
.field-error{margin-top:.25rem;font-size:.75rem;color:var(--destructive)}
.field-full{grid-column:1/-1}
.btn-submit{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;border-radius:9999px;background:var(--primary);padding:.75rem 1.5rem;font-size:.875rem;font-weight:600;color:var(--primary-fg);box-shadow:var(--sh-luxe);transition:filter .3s;cursor:pointer;border:none;font-family:inherit;margin-top:.5rem}
.btn-submit:hover:not(:disabled){filter:brightness(1.1)}
.btn-submit:disabled{opacity:.6;cursor:not-allowed}

/* ===================== TOAST ===================== */
.toast-msg{position:fixed;top:1.5rem;left:50%;transform:translateX(-50%);z-index:9999;border-radius:.75rem;background:var(--fg);color:var(--bg);padding:.875rem 1.5rem;font-size:.875rem;font-weight:500;box-shadow:0 8px 30px oklch(0 0 0/0.2);opacity:0;transition:opacity .3s;pointer-events:none;white-space:nowrap}
.toast-msg.show{opacity:1}
