/* ===== Base ===== */
:root {
  --bg: #0a0a0a;         /* Deep black background */
  --surface: #161616;    /* Elevated surfaces */
  --text: #ffffff;       /* White text */
  --muted: #b0b0b0;      /* Muted gray */
  --brand: #d5001c;      /* Guards Red */
  --brand-2: #c0c0c0;    /* Silver */
  --radius: 16px;
  --shadow: 0 8px 24px rgba(0,0,0,.5);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased;
}
img{max-width:100%;display:block}
.container{width:min(1100px, 92%);margin-inline:auto}
.display{font-family:"Playfair Display", serif; font-size: clamp(2.2rem, 6vw, 4.2rem); line-height:1.1;}

/* ===== Header ===== */
.site-header{position:sticky; top:0; z-index:40; background:linear-gradient(180deg, rgba(12,13,16,.9), rgba(12,13,16,.6) 60%, transparent); backdrop-filter:saturate(1.2) blur(6px);}
.header-wrap{display:flex; align-items:center; justify-content:space-between; padding:14px 0}
.logo{display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--text)}
.logo-mark{display:inline-grid; place-items:center; width:40px; height:40px; border-radius:50%; background:linear-gradient(135deg, var(--brand), #6f5d3a); color:#111; font-weight:700}
.logo-type{font-weight:600; letter-spacing:.3px}
.nav .menu{display:flex; gap:22px; list-style:none; margin:0; padding:0}
.nav a{color:var(--text); text-decoration:none; opacity:.9}
.nav a:hover{opacity:1}
.nav-toggle{display:none}
.btn{border:1px solid transparent; background:var(--brand); color:#111; padding:12px 18px; border-radius:999px; font-weight:600; cursor:pointer; box-shadow:var(--shadow);}
.btn:hover{filter:brightness(1.05)}
.btn-ghost{background:transparent; color:var(--text); border-color:#2a2d36}
.btn-small{padding:8px 14px}

/* HERO */
.hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

/* Background image with overlay */
.hero-media-bg {
  position: absolute;
  inset: 0;
  z-index: 0; /* behind everything */
  background:
    linear-gradient(180deg, rgba(10,10,10,0.3), rgba(10,10,10,0.85) 70%, #0a0a0a),
    url('images/hero-rc.png') center/cover no-repeat;
  filter: contrast(1.05) saturate(1.1);
}

/* Content above */
.hero-content {
  position: relative;
  z-index: 1; /* ensure text/buttons sit above */
  padding: 18vh 0 10vh;
  text-align: left;
}

/* Stronger text */
.hero .display {
  color: #fff;
  font-weight: 800;
  text-shadow: 0 4px 12px rgba(0,0,0,0.8);
  border-bottom: 3px solid var(--brand);
  padding-bottom: .4rem;
}
.hero p {
  color: #f1f1f1;
  font-size: 1.25rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
  max-width: 720px;
}

/* Buttons brighter + clickable */
.btn {
  display: inline-block;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  margin-right: 0.6rem;
  cursor: pointer;
  position: relative;
  z-index: 2; /* ensures clickable */
}
.btn-primary {
  background: var(--brand, #d5001c);
  color: #fff;
  box-shadow: 0 6px 16px rgba(213, 0, 28, 0.35);
}
.btn-primary:hover {
  background: #b80018;
}
.btn-ghost {
  border: 2px solid #fff;
  color: #fff;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
}

/* ===== Badges ===== */
.badges{border-top:1px solid #1b1d26; border-bottom:1px solid #1b1d26; background:linear-gradient(180deg, var(--surface), var(--bg));}
.badges-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:10px; padding:18px 0; text-align:center; color:var(--muted)}
.badge span{color:var(--brand); margin-right:6px}

/* ===== Sections ===== */
.section{padding:56px 0}
.section-alt{background:linear-gradient(180deg, var(--surface), var(--bg))}
.section-head{margin-bottom:22px}
.section-head-row{display:flex; align-items:flex-end; justify-content:space-between; gap:20px}
.section h2{font-family:"Playfair Display", serif; font-weight:700; font-size:clamp(1.6rem,3.2vw,2.2rem)}
.section p{color:var(--muted)}

/* ===== Cards / Collections ===== */
.cards-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px}
.card{background:var(--elev); border:1px solid #212533; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow)}
.card img{aspect-ratio:4/3; object-fit:cover}
.card .card-body{padding:18px}
.card h3{margin:0 0 6px}

/* ===== Product grid (showcase only) ===== */
.products-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:18px}
.product{background:var(--elev); border:1px solid #212533; border-radius:var(--radius); overflow:hidden; position:relative}
.product img { aspect-ratio: 4/3; object-fit: cover; }
.product-title{margin:12px 12px 2px}
.product-meta{margin:0 12px; color:var(--muted); font-size:.95rem}
.price{margin:8px 12px 12px; font-weight:600; color:var(--brand)}
.product .enquire{margin:0 12px 16px; display:inline-block}

/* ===== Heritage / grid-2 ===== */
.grid-2{display:grid; grid-template-columns:1.1fr .9fr; gap:22px; align-items:center}
.media-frame{border-radius:var(--radius); overflow:hidden; border:1px solid #212533; box-shadow:var(--shadow)}

/* Heritage polish */
.pull-quote {
  margin: 12px 0 18px;
  padding: 8px 12px;
  border-left: 3px solid var(--brand);
  color: #eaeaea;
  font-style: italic;
}
.stat-badges {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 10px 0 4px;
}
.stat-badges .badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35rem .6rem; border-radius: 999px; font-weight: 600;
  background: rgba(213,0,28,.1); border: 1px solid rgba(213,0,28,.35);
  color: #fff;
}

/* ===== Services ===== */
.service{padding:18px}

/* ===== Contact / form ===== */
.cta-wrap{display:grid; gap:12px}
.form-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:14px}
.form-grid .full{grid-column:1/-1}
input,select,textarea{width:100%; padding:12px 14px; border-radius:12px; background:#0e0f14; border:1px solid #232634; color:var(--text)}
label{display:block; margin-bottom:6px; color:var(--muted)}
.form-note{margin-top:10px; color:var(--brand-2)}

/* ===== Footer ===== */
.site-footer{border-top:1px solid #1b1d26; padding:28px 0; background:var(--surface)}
.footer-grid{display:flex; align-items:center; justify-content:space-between}
.footer-logo{margin-bottom:8px}
.footer-links{list-style:none; display:flex; gap:16px; padding:0; margin:0}
.footer-links a{color:var(--muted); text-decoration:none}
.footer-links a:hover{color:var(--text)}

/* ===== Utilities ===== */
.link{color:var(--brand); text-decoration:none}
.link:hover{text-decoration:underline}
.muted{color:var(--muted)}
.sr-only{position:absolute !important; height:1px; width:1px; overflow:hidden; clip:rect(1px,1px,1px,1px); white-space:nowrap}

/* ===== Animations ===== */
[data-animate]{opacity:0; transform:translateY(10px); transition:.6s cubic-bezier(.2,.6,.2,1)}
[data-animate].in{opacity:1; transform:none}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .products-grid{grid-template-columns:repeat(2,1fr)}
  .cards-grid{grid-template-columns:repeat(2,1fr)}
  .grid-2{grid-template-columns:1fr}
}
@media (max-width: 720px){
  .nav .menu{display:none}
  .nav-toggle{display:inline-flex; background:transparent; color:var(--text); border:1px solid #2a2d36; padding:8px 12px; border-radius:999px}
  .badges-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 520px){
  .products-grid{grid-template-columns:1fr}
  .cards-grid{grid-template-columns:1fr}
}
