:root{
  --navy:#122A45;
  --navy-deep:#0B1D30;
  --cream:#FBF6EC;
  --paper:#F3ECDC;
  --saffron:#E28F1A;
  --saffron-dark:#B96E0C;
  --maroon:#7A1F2B;
  --ink:#1B1B1B;
  --line: rgba(18,42,69,0.15);
  --green:#2F6E4E;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--cream);
  color:var(--ink);
  font-family:'Inter',sans-serif;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{font-family:'Fraunces',serif; font-weight:700; color:var(--navy-deep); letter-spacing:-0.01em;}
a{color:inherit; text-decoration:none;}
.mono{font-family:'IBM Plex Mono',monospace;}
.wrap{max-width:1180px; margin:0 auto; padding:0 24px;}
img{max-width:100%; display:block;}

/* ===== Top utility bar ===== */
.topbar{background:var(--navy-deep); color:var(--cream); font-size:13px; padding:8px 0;}
.topbar .wrap{display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:6px;}
.topbar span{opacity:0.85;}
.topbar .badge{background:var(--saffron); color:var(--navy-deep); font-weight:700; padding:2px 10px; border-radius:3px; font-size:11px; letter-spacing:0.04em;}

/* ===== Header ===== */
header.site{background:var(--cream); border-bottom:1px solid var(--line); position:sticky; top:0; z-index:50;}
.nav{display:flex; align-items:center; justify-content:space-between; padding:16px 24px;}
.brand{display:flex; align-items:center; gap:12px;}
.brand .mark{
  width:46px; height:46px; border-radius:8px;
  background:linear-gradient(155deg, var(--saffron), var(--maroon));
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-family:'Fraunces',serif; font-weight:900; font-size:22px; flex-shrink:0;
}
.brand h1{font-size:22px; line-height:1.1;}
.brand .tag{font-size:12px; color:var(--maroon); font-weight:600; font-family:'Inter',sans-serif; letter-spacing:0.02em;}
nav.links{display:flex; gap:24px; font-size:14px; font-weight:600;}
nav.links a{border-bottom:2px solid transparent; padding-bottom:3px; transition:border-color .2s;}
nav.links a:hover, nav.links a.active{border-color:var(--saffron);}
.nav-cta{background:var(--maroon); color:#fff; padding:10px 20px; border-radius:4px; font-weight:700; font-size:14px; white-space:nowrap;}
.burger{display:none; font-size:26px; background:none; border:none; cursor:pointer; color:var(--navy-deep);}
@media (max-width:900px){ nav.links{display:none;} .burger{display:block;} .nav-cta{display:none;} }

/* ===== Page hero (inner pages) ===== */
.page-hero{background:var(--navy); color:#fff; padding:54px 0; position:relative; overflow:hidden;}
.page-hero::before{
  content:""; position:absolute; inset:0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 42px);
}
.page-hero .wrap{position:relative;}
.eyebrow{
  display:inline-block; font-family:'IBM Plex Mono',monospace; font-size:12px; letter-spacing:0.12em;
  text-transform:uppercase; color:var(--saffron); border:1px solid rgba(226,143,26,0.5);
  padding:5px 12px; border-radius:20px; margin-bottom:16px;
}
.page-hero h2{font-size:clamp(30px,4.4vw,46px); color:#fff; margin-bottom:10px;}
.page-hero p{color:rgba(251,246,236,0.85); max-width:600px; font-size:16px;}
.crumb{font-size:13px; color:rgba(251,246,236,0.6); margin-top:14px;}
.crumb a{color:var(--saffron);}

/* ===== Hero (home) ===== */
.hero{background: radial-gradient(circle at 85% 20%, rgba(226,143,26,0.15), transparent 45%), var(--navy); color:var(--cream); padding:76px 0 56px; position:relative; overflow:hidden;}
.hero::before{ content:""; position:absolute; inset:0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 42px);
}
.hero .wrap{position:relative; display:grid; grid-template-columns:1.2fr 1fr; gap:44px; align-items:center;}
.hero h2{font-size:clamp(32px,4.8vw,52px); line-height:1.08; color:#fff; margin-bottom:16px;}
.hero h2 em{color:var(--saffron); font-style:normal;}
.hero p.lead{font-size:16.5px; color:rgba(251,246,236,0.85); max-width:520px; margin-bottom:26px;}
.hero-ctas{display:flex; gap:14px; flex-wrap:wrap;}
.btn{display:inline-flex; align-items:center; gap:8px; padding:14px 24px; border-radius:4px; font-weight:700; font-size:15px; cursor:pointer; border:none;}
.btn-primary{background:var(--saffron); color:var(--navy-deep);}
.btn-primary:hover{background:#fff;}
.btn-outline{background:transparent; color:#fff; border:1px solid rgba(255,255,255,0.4);}
.btn-outline:hover{border-color:#fff;}
.hero-photo{border-radius:10px; overflow:hidden; border:1px solid rgba(226,143,26,0.35); box-shadow:0 20px 50px rgba(0,0,0,0.35);}
.hero-photo img{aspect-ratio:4/3; object-fit:cover; width:100%;}
@media (max-width:900px){ .hero .wrap{grid-template-columns:1fr;} }

/* ===== Section shared ===== */
section{padding:66px 0;}
.section-head{max-width:640px; margin-bottom:40px;}
.section-head span.eyebrow{color:var(--maroon); border-color:rgba(122,31,43,0.3);}
.section-head h2{font-size:clamp(27px,3.4vw,38px); margin-bottom:12px;}
.section-head p{color:#4a4a4a; font-size:16px;}
.alt{background:var(--paper);}
.center{text-align:center; margin-left:auto; margin-right:auto;}

/* ===== Photo grid / gallery ===== */
.photo-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px;}
@media (max-width:900px){.photo-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:560px){.photo-grid{grid-template-columns:1fr;}}
.photo-card{border-radius:8px; overflow:hidden; border:1px solid var(--line); background:#fff; position:relative;}
.photo-card img{width:100%; height:220px; object-fit:cover; transition:transform .3s ease;}
.photo-card:hover img{transform:scale(1.05);}
.photo-card .cap{padding:12px 14px; font-size:13.5px; font-weight:600; color:var(--navy-deep); border-top:1px solid var(--line);}

/* ===== Category / product grid ===== */
.cat-grid{display:grid; grid-template-columns:repeat(3, 1fr); gap:22px;}
@media (max-width:900px){.cat-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:600px){.cat-grid{grid-template-columns:1fr;}}
.cat-card{background:#fff; border:1px solid var(--line); border-radius:8px; overflow:hidden; transition:transform .18s ease, box-shadow .18s ease;}
.cat-card:hover{transform:translateY(-4px); box-shadow:0 12px 28px rgba(18,42,69,0.1);}
.cat-card img{width:100%; height:170px; object-fit:cover;}
.cat-card .body{padding:22px;}
.cat-card .icon{width:44px; height:44px; border-radius:8px; background:var(--paper); display:flex; align-items:center; justify-content:center; margin-bottom:14px; font-size:20px;}
.cat-card h3{font-size:18px; margin-bottom:8px;}
.cat-card p{font-size:14px; color:#555; margin-bottom:14px;}
.cat-card ul{list-style:none; font-size:13.5px; color:var(--navy); display:flex; flex-direction:column; gap:6px;}
.cat-card ul li::before{content:"— "; color:var(--saffron); font-weight:700;}
.cat-card .more{display:inline-block; margin-top:14px; font-size:13px; font-weight:700; color:var(--maroon);}

/* ===== Service detail blocks (with image) ===== */
.service-block{display:grid; grid-template-columns:280px 1fr; gap:30px; padding:34px 0; border-bottom:1px solid var(--line); align-items:start;}
.service-block:last-child{border-bottom:none;}
.service-block img{border-radius:8px; width:100%; height:190px; object-fit:cover;}
.service-block .txt span.tag{
  font-family:'IBM Plex Mono',monospace; font-size:11px; color:var(--maroon); text-transform:uppercase; letter-spacing:0.08em;
  background:rgba(122,31,43,0.07); padding:4px 10px; border-radius:20px; display:inline-block;
}
.service-block h3{font-size:21px; margin-top:10px;}
.service-block p{color:#444; font-size:14.5px; margin:10px 0;}
.service-block ul{padding-left:18px; font-size:14px; color:#333;}
.service-block ul li{margin-bottom:6px;}
@media (max-width:760px){ .service-block{grid-template-columns:1fr;} .service-block img{height:200px;} }

/* ===== Why us / trust strip ===== */
.trust-strip{background:var(--navy); color:var(--cream);}
.trust-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:0;}
.trust-item{padding:26px 20px; border-right:1px solid rgba(255,255,255,0.12); text-align:center;}
.trust-item:last-child{border-right:none;}
.trust-item .n{font-family:'Fraunces',serif; font-size:30px; color:var(--saffron); font-weight:700;}
.trust-item .l{font-size:12.5px; color:rgba(251,246,236,0.75); margin-top:4px;}
@media (max-width:800px){.trust-grid{grid-template-columns:repeat(2,1fr);} .trust-item{border-bottom:1px solid rgba(255,255,255,0.12);}}

/* ===== Testimonials ===== */
.testi-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
@media (max-width:900px){.testi-grid{grid-template-columns:1fr;}}
.testi{background:#fff; border:1px solid var(--line); border-radius:8px; padding:24px;}
.testi .stars{color:var(--saffron); margin-bottom:10px; font-size:15px; letter-spacing:2px;}
.testi p{font-size:14.5px; color:#333; margin-bottom:16px;}
.testi .who{font-size:13px; font-weight:700; color:var(--navy-deep);}
.testi .where{font-size:12px; color:#777;}

/* ===== Counter directory board ===== */
.board{background:var(--navy-deep); border:1px solid rgba(226,143,26,0.35); border-radius:8px; padding:22px;}
.board-head{display:flex; justify-content:space-between; align-items:baseline; border-bottom:1px dashed rgba(226,143,26,0.4); padding-bottom:12px; margin-bottom:14px;}
.board-head span{font-family:'IBM Plex Mono',monospace; font-size:11px; color:var(--saffron); letter-spacing:0.08em;}
.board-head h3{color:#fff; font-size:17px;}
.counter-row{display:flex; align-items:center; gap:12px; padding:9px 0; border-bottom:1px solid rgba(255,255,255,0.08); font-size:13.5px; color:rgba(251,246,236,0.92);}
.counter-row:last-child{border-bottom:none;}
.counter-row .cno{font-family:'IBM Plex Mono',monospace; color:var(--saffron); font-weight:600; font-size:12px; width:34px; flex-shrink:0;}
.counter-row .status{margin-left:auto; width:8px; height:8px; border-radius:50%; background:var(--green); flex-shrink:0;}

/* ===== About / owner section ===== */
.about-grid{display:grid; grid-template-columns:1fr 1.2fr; gap:44px; align-items:center;}
@media (max-width:850px){.about-grid{grid-template-columns:1fr;}}
.about-grid img{border-radius:10px; width:100%; height:360px; object-fit:cover;}
.about-grid h2{margin-bottom:14px;}
.about-grid p{color:#444; font-size:15px; margin-bottom:14px;}

/* ===== Contact ===== */
.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:50px;}
@media (max-width:800px){.contact-grid{grid-template-columns:1fr;}}
.info-card{background:var(--navy-deep); color:#fff; border-radius:8px; padding:30px;}
.info-card h3{color:#fff; font-size:20px; margin-bottom:18px;}
.info-row{display:flex; gap:12px; margin-bottom:16px; font-size:14px; color:rgba(251,246,236,0.9);}
.info-row .ic{color:var(--saffron); font-weight:700; flex-shrink:0;}
.hours{margin-top:20px; padding-top:20px; border-top:1px dashed rgba(226,143,26,0.35); font-size:13.5px;}
.hours div{display:flex; justify-content:space-between; padding:4px 0; color:rgba(251,246,236,0.85);}
.map-frame{margin-top:18px; border-radius:8px; overflow:hidden; border:1px solid rgba(255,255,255,0.15);}
.map-frame img{height:150px; object-fit:cover; width:100%;}

form.enquiry{background:#fff; border:1px solid var(--line); border-radius:8px; padding:30px;}
form.enquiry h3{font-size:20px; margin-bottom:6px;}
form.enquiry p.sub{font-size:13.5px; color:#666; margin-bottom:20px;}
.field{margin-bottom:16px;}
.field label{display:block; font-size:12.5px; font-weight:700; color:var(--navy-deep); margin-bottom:6px; text-transform:uppercase; letter-spacing:0.03em;}
.field input, .field select, .field textarea{width:100%; padding:11px 12px; border:1px solid var(--line); border-radius:4px; font-family:'Inter',sans-serif; font-size:14px; background:var(--cream);}
.field textarea{resize:vertical; min-height:80px;}
.field input:focus, .field select:focus, .field textarea:focus{outline:2px solid var(--saffron); outline-offset:1px;}
.row2{display:grid; grid-template-columns:1fr 1fr; gap:14px;}
@media (max-width:500px){.row2{grid-template-columns:1fr;}}
.submit-btn{width:100%; background:var(--maroon); color:#fff; padding:14px; border:none; border-radius:4px; font-weight:700; font-size:15px; cursor:pointer;}
.submit-btn:hover{background:var(--navy-deep);}
.note{font-size:12px; color:#777; margin-top:10px;}

footer{background:var(--navy-deep); color:rgba(251,246,236,0.7); padding:36px 0 22px; font-size:13px;}
footer .wrap{display:flex; justify-content:space-between; flex-wrap:wrap; gap:14px; align-items:center;}
footer .fbrand{color:#fff; font-family:'Fraunces',serif; font-size:17px; font-weight:700;}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.1); margin-top:22px; padding-top:16px; text-align:center; font-size:12px; color:rgba(251,246,236,0.5);}

.float-call{position:fixed; bottom:22px; right:22px; z-index:60; background:var(--saffron); color:var(--navy-deep); font-weight:800; font-size:14px; padding:14px 22px; border-radius:30px; box-shadow:0 10px 26px rgba(0,0,0,0.25); display:flex; align-items:center; gap:8px;}

@media (prefers-reduced-motion: reduce){ *{transition:none !important;} }
