/* ============================================================
   WG INDIA — The Rock Specialist
   Token system
   Color   — ink #0c0e2e · navy #10134f · sky #bfe0f5
             brass #b6914f · parchment #f4f5f8
   Type    — display: 'Fraunces' (carved, chiselled serif)
             body: 'Inter'
             utility/spec: 'JetBrains Mono'
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root{
  --ink:#0c0e2e;
  --ink-soft:#52576b;
  --navy:#10134f;
  --navy-deep:#070a33;
  --sky:#bfe0f5;
  --parchment:#f4f5f8;
  --card:#ffffff;
  --line:rgba(12,14,46,.1);
  --line-strong:rgba(12,14,46,.2);
  --brass:#b6914f;
  --brass-deep:#8f6f37;
  --rust:#e01b1b;
  --paper-shadow:0 18px 40px -22px rgba(12,14,46,.3);
  --radius:2px;
}

*{ margin:0; padding:0; box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  font-family:'Inter',sans-serif;
  background:var(--parchment);
  color:var(--ink);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  width:100%;
  overflow-x:hidden;
}

body.menu-open{ overflow:hidden; }

img{ max-width:100%; display:block; }

a{ color:inherit; }

.eyebrow{
  font-family:'JetBrains Mono',monospace;
  font-size:11.5px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--brass-deep);
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
}
.eyebrow::before{
  content:'';
  width:26px;
  height:1px;
  background:var(--brass);
}

h1,h2,h3{
  font-family:'Fraunces',serif;
  font-weight:500;
  letter-spacing:-.01em;
  color:var(--ink);
}

.section-head{
  max-width:640px;
  margin:0 auto 56px;
  text-align:center;
  padding:0 4px;
}
.section-head h2{ font-size:clamp(28px,4vw,42px); margin-bottom:14px; }
.section-head p{ color:var(--ink-soft); font-size:16px; }

/* ================= NAVBAR ================= */

header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 6%;
  background:rgba(243,239,230,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:1000;
}

.logo{ display:flex; align-items:center; gap:14px; }
.logo a{ display:block; }

.logo-img{
  height:70px;
  width:auto;
  display:block;
  object-fit:contain;
}

nav ul{ display:flex; list-style:none; gap:8px; margin:0; padding:0; }

nav ul li{ position:relative; }

nav ul li > a{
  display:block;
  padding:10px 16px;
  text-decoration:none;
  color:var(--ink);
  font-weight:500;
  font-size:14.5px;
  letter-spacing:.01em;
  transition:color .25s ease;
}
nav ul li > a i{ font-size:11px; margin-left:5px; transition:transform .25s ease; }

nav ul li > a:hover{ color:var(--brass-deep); }

.header-actions{ display:flex; align-items:center; gap:18px; }

.btn{
  padding:13px 26px;
  background:var(--ink);
  color:var(--parchment);
  border-radius:var(--radius);
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  letter-spacing:.02em;
  border:1px solid var(--ink);
  transition:background .25s ease,color .25s ease;
  white-space:nowrap;
}
.btn:hover{ background:var(--brass); border-color:var(--brass); }

/* Hamburger */
.menu-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:40px;
  height:34px;
  background:none;
  border:none;
  cursor:pointer;
  padding:6px;
  z-index:1002;
}
.menu-toggle span{
  width:24px; height:2px; background:var(--ink); display:block;
  transition:transform .3s ease, opacity .3s ease;
}
.menu-toggle.active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2){ opacity:0; }
.menu-toggle.active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* Dropdown (desktop = hover flyout, mobile = inline accordion) */

.dropdown-content{
  position:absolute;
  background:var(--card);
  border:1px solid var(--line);
  box-shadow:var(--paper-shadow);
  min-width:260px;
  top:calc(100% + 8px);
  left:0;
  opacity:0;
  visibility:hidden;
  transform:translateY(6px);
  transition:opacity .25s ease, transform .25s ease, visibility .25s ease;
  padding:8px 0;
}

.dropdown-content a{
  display:block;
  padding:11px 20px;
  font-size:14px;
  text-decoration:none;
  color:var(--ink-soft);
  border-left:2px solid transparent;
  transition:background .2s ease,color .2s ease,border-color .2s ease;
}
.dropdown-content a:hover{
  background:var(--parchment);
  color:var(--ink);
  border-left-color:var(--brass);
}

.dropdown:hover .dropdown-content,
.dropdown.open .dropdown-content{
  opacity:1; visibility:visible; transform:translateY(0);
}

/* ================= HERO ================= */

.hero{
  padding:90px 6%;
  background:linear-gradient(120deg,#071529 0%,#0b2c56 55%,#4ea3ff 100%);
  color:#fff;
  overflow:hidden;
}

.hero-inner{
  max-width:1320px;
  margin:auto;
  display:flex;
  flex-wrap:nowrap;
  gap:70px;
  align-items:center;
}

.hero-text{
  flex:1 1 55%;
  min-width:0;
}

.hero-image{
  flex:1 1 45%;
  min-width:0;
}

.hero h1{
  font-size:clamp(38px,5vw,68px);
  line-height:1.08;
  color:#fff;
  margin-bottom:25px;
}

.hero h1 em{
  color:#d8b05a;
  font-style:italic;
}

.hero-text p{
  max-width:520px;
  color:rgba(255,255,255,.82);
  line-height:1.8;
  margin-bottom:35px;
}

.buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}
/* ----- LOGO SIZE CONTROL ----- */
.logo-img { 
  height: 42px; 
  width: auto; 
  transition: height 0.2s ease;
}

/* --- Mobile: increase logo size --- */
@media (max-width: 860px) {
  .logo-img {
    height: 56px;  /* increased from 42px for mobile */
  }
}

/* --- Desktop: keep normal size --- */
@media (min-width: 861px) {
  .logo-img {
    height: 42px;
  }
}
.btn1{
  background:#d8b05a;
  color:#111;
  text-decoration:none;
  padding:15px 34px;
  border-radius:8px;
  font-weight:600;
  transition:.3s;
  display:inline-block;
}
.btn1:hover{ transform:translateY(-3px); }

.btn2{
  border:1px solid rgba(255,255,255,.3);
  color:#fff;
  text-decoration:none;
  padding:15px 34px;
  border-radius:8px;
  transition:.3s;
  display:inline-block;
}
.btn2:hover{ background:rgba(255,255,255,.12); }

/* ================= HERO IMAGE ================= */

.hero-image{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
}

/* soft glow platform behind the figure — gives the right column
   visual weight instead of the photo floating alone in empty space */
.hero-image::before{
  content:'';
  position:absolute;
  width:78%;
  aspect-ratio:1/1;
  max-width:480px;
  background:radial-gradient(circle, rgba(216,176,90,.28) 0%, rgba(216,176,90,0) 68%);
  border-radius:50%;
  z-index:0;
}

.hero-photo{
  position:relative;
  z-index:1;
  width:100%;
  display:flex;
  justify-content:center;
  align-items:flex-end;
}

.hero-woman{
  width:100%;
  max-width:520px;
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 25px 45px rgba(0,0,0,.45));
  animation:floatImage 5s ease-in-out infinite;
}

@keyframes floatImage{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-12px); }
}

@media(max-width:1080px){
  .hero-inner{ flex-wrap:wrap; text-align:center; }
  .hero-text{ flex-basis:100%; }
  .hero-image{ flex-basis:100%; }
  .hero-text p{ margin:0 auto 30px; }
  .buttons{ justify-content:center; }
  .hero-image{ margin-top:50px; }
  .hero-woman{ max-width:420px; }
}

@media(max-width:768px){
  .hero{ padding:64px 24px 56px; }
  .hero h1{ font-size:36px; margin-bottom:18px; }
  .hero-text p{ font-size:15px; line-height:1.7; margin-bottom:28px; }
  .hero-woman{ max-width:280px; }
  .btn1, .btn2{ padding:14px 26px; font-size:14.5px; }
}

@media(max-width:480px){
  .hero{ padding:52px 20px 44px; }
  .hero h1{ font-size:30px; }
  .buttons{ flex-direction:column; width:100%; gap:12px; }
  .buttons .btn1, .buttons .btn2{ width:100%; text-align:center; padding:15px 20px; }
  .hero-woman{ max-width:220px; }
}

/* ================= MARQUEE STRIP ================= */

.marquee{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:var(--ink);
  color:var(--parchment);
  overflow:hidden;
  white-space:nowrap;
  padding:14px 0;
}
.marquee-track{
  display:inline-flex;
  gap:48px;
  animation:scroll 32s linear infinite;
}
.marquee-track span{
  font-family:'JetBrains Mono',monospace;
  font-size:12.5px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--parchment);
  opacity:.85;
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.marquee-track span::after{ content:'/'; color:var(--brass); margin-left:38px; }

@keyframes scroll{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}

@media(max-width:480px){
  .marquee{ padding:12px 0; }
  .marquee-track{ gap:32px; }
  .marquee-track span{ font-size:11px; }
  .marquee-track span::after{ margin-left:24px; }
}

/* ================= WHY CHOOSE ================= */

.why{ padding:110px 6%; max-width:1320px; margin:0 auto; }

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
}

.card{
  background:var(--card);
  padding:42px 32px;
  transition:background .3s ease;
}
.card:hover{ background:var(--parchment); }

.card .num{
  font-family:'JetBrains Mono',monospace;
  font-size:11px;
  color:var(--brass-deep);
  letter-spacing:.1em;
  margin-bottom:24px;
  display:block;
}

.card i{
  font-size:28px;
  color:var(--ink);
  margin-bottom:20px;
  display:block;
}

.card h3{ font-size:19px; margin-bottom:10px; }
.card p{ color:var(--ink-soft); font-size:14.5px; }

@media(max-width:768px){
  .why{ padding:70px 6% 80px; }
  .section-head{ margin-bottom:40px; }
  .cards{ grid-template-columns:1fr 1fr; }
  .card{ padding:32px 24px; }
}

@media(max-width:520px){
  .cards{ grid-template-columns:1fr; }
  .card{ padding:30px 26px; }
}

/* ================= PRODUCTS ================= */

.products{ padding:110px 6%; background:var(--ink); color:var(--parchment); }
.products .section-head h2{ color:var(--parchment); }
.products .section-head p{ color:rgba(243,239,230,.65); }

.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
  gap:22px;
  max-width:1320px;
  margin:0 auto;
}

.product{
  background:var(--card);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--paper-shadow);
  display:flex;
  flex-direction:column;
  transition:transform .3s ease, box-shadow .3s ease;
}
.product:hover{ transform:translateY(-4px); }

.product-image{
  width:100%;
  height:210px;
  overflow:hidden;
  background:#eceae3;
}
.product-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .5s ease;
}
.product:hover .product-image img{ transform:scale(1.06); }

.product-body{
  display:flex;
  flex-direction:column;
  flex:1;
  padding:24px 26px 28px;
}

.product h3{
  color:var(--ink);
  font-size:20px;
  margin-bottom:8px;
}
.product-body p{
  flex:1;
  color:var(--ink-soft);
  font-size:14px;
  line-height:1.65;
  margin-bottom:18px;
}

.product-link{
  font-family:'JetBrains Mono',monospace;
  font-size:11.5px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--brass-deep);
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:auto;
  transition:gap .25s ease;
}
.product-link:hover{ gap:13px; }

@media(max-width:768px){
  .products{ padding:70px 6% 80px; }
  .product-grid{ grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:18px; }
  .product-image{ height:190px; }
  .product-body{ padding:20px 22px 24px; }
}

@media(max-width:520px){
  .product-grid{ grid-template-columns:1fr; max-width:420px; }
  .product-image{ height:220px; }
}

/* Stone textures — generated, no external images */

.t-black-galaxy{ background:
  radial-gradient(2px 2px at 12% 20%, #d8b65a 0 100%),
  radial-gradient(1.5px 1.5px at 70% 60%, #c9a247 0 100%),
  radial-gradient(1.5px 1.5px at 40% 80%, #d8b65a 0 100%),
  radial-gradient(1.5px 1.5px at 85% 25%, #e0c878 0 100%),
  radial-gradient(1.5px 1.5px at 55% 35%, #c9a247 0 100%),
  radial-gradient(1.5px 1.5px at 25% 55%, #e0c878 0 100%),
  radial-gradient(1.5px 1.5px at 90% 80%, #d8b65a 0 100%),
  #15171a;
}
.t-tan-brown{ background:
  radial-gradient(3px 3px at 20% 30%, #7a5036 0 100%),
  radial-gradient(2px 2px at 60% 65%, #5a3a26 0 100%),
  radial-gradient(2.5px 2.5px at 80% 20%, #8c6444 0 100%),
  radial-gradient(2px 2px at 35% 75%, #6b452e 0 100%),
  radial-gradient(2px 2px at 50% 45%, #a4794f 0 100%),
  #b08a5e;
}
.t-kashmir-white{ background:
  linear-gradient(115deg, transparent 40%, rgba(140,58,43,.18) 41%, transparent 43%),
  linear-gradient(70deg, transparent 60%, rgba(182,138,78,.25) 61%, transparent 63%),
  linear-gradient(100deg, transparent 25%, rgba(140,58,43,.1) 26%, transparent 28%),
  #ece4d6;
}
.t-statuario{ background:
  linear-gradient(108deg, transparent 30%, rgba(80,80,80,.22) 31%, transparent 33%),
  linear-gradient(95deg, transparent 55%, rgba(80,80,80,.16) 56%, transparent 58%),
  linear-gradient(120deg, transparent 70%, rgba(80,80,80,.18) 71%, transparent 73%),
  #f4f1ea;
}
.t-rosso{ background:
  radial-gradient(2px 2px at 25% 30%, #f3ded0 0 100%),
  radial-gradient(2px 2px at 65% 60%, #f3ded0 0 100%),
  radial-gradient(2px 2px at 45% 80%, #e8c9b8 0 100%),
  #8c3a2b;
}
.t-emerald{ background:
  linear-gradient(112deg, transparent 35%, rgba(20,24,27,.22) 36%, transparent 38%),
  linear-gradient(80deg, transparent 58%, rgba(20,24,27,.15) 59%, transparent 61%),
  #1f5c47;
}
.t-pebble{ background:
  radial-gradient(3px 3px at 20% 25%, #9b9385 0 100%),
  radial-gradient(3px 3px at 70% 55%, #b6ac98 0 100%),
  radial-gradient(3px 3px at 40% 75%, #7e7665 0 100%),
  radial-gradient(3px 3px at 85% 20%, #beb39e 0 100%),
  #a89e8a;
}

/* ================= GALLERY STRIP ================= */

.gallery{ padding:110px 6%; max-width:1320px; margin:0 auto; }

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-template-rows:160px 160px;
  gap:14px;
}
.gallery-grid .g-tile:nth-child(1){ grid-column:span 2; grid-row:span 2; }
.gallery-grid .g-tile:nth-child(4){ grid-column:span 2; }

.g-tile{
  border:1px solid var(--line);
  position:relative;
  overflow:hidden;
}
.g-tile span{
  position:absolute;
  bottom:14px; left:14px;
  font-family:'JetBrains Mono',monospace;
  font-size:10.5px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#fff;
  text-shadow:0 1px 4px rgba(0,0,0,.4);
}

@media(max-width:1080px){
  .gallery-grid{ grid-template-columns:repeat(2,1fr); grid-template-rows:repeat(3,160px); }
  .gallery-grid .g-tile:nth-child(1){ grid-column:span 2; grid-row:span 1; }
}

@media(max-width:768px){
  .gallery{ padding:70px 6% 80px; }
}

@media(max-width:520px){
  .gallery-grid{ grid-template-columns:1fr; grid-template-rows:repeat(5,150px); gap:12px; }
  .gallery-grid .g-tile:nth-child(1),
  .gallery-grid .g-tile:nth-child(4){ grid-column:span 1; grid-row:span 1; }
}

/* ================= CTA ================= */

.cta{
  padding:120px 6%;
  text-align:center;
  background:var(--brass);
  color:var(--ink);
  position:relative;
  overflow:hidden;
}
.cta h2{ font-size:clamp(30px,4.4vw,46px); max-width:640px; margin:0 auto 16px; color:var(--ink); }
.cta p{ font-size:17px; color:rgba(20,24,27,.72); margin-bottom:38px; }
.cta .btn1{
  background:var(--ink);
  border-color:var(--ink);
  color:var(--parchment);
}
.cta .btn1:hover{ background:transparent; color:var(--ink); }

@media(max-width:768px){
  .cta{ padding:72px 24px; }
  .cta p{ font-size:15px; margin-bottom:30px; padding:0 6px; }
}

@media(max-width:480px){
  .cta{ padding:60px 20px; }
  .cta .btn1{ width:100%; }
}

/* ================= FOOTER ================= */

footer{
  background:var(--ink);
  color:rgba(243,239,230,.6);
  padding:70px 6% 30px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:40px;
  max-width:1320px;
  margin:0 auto 50px;
}
.footer-grid h4{
  font-family:'JetBrains Mono',monospace;
  font-size:11px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--brass);
  margin-bottom:20px;
}
.footer-grid p{ font-size:14px; line-height:1.8; max-width:280px; }
.footer-grid ul{ list-style:none; display:flex; flex-direction:column; gap:11px; }
.footer-grid a{ text-decoration:none; color:rgba(243,239,230,.6); font-size:14px; transition:color .2s ease; }
.footer-grid a:hover{ color:var(--brass); }

.footer-social{
  display:flex;
  gap:14px;
  margin-top:20px;
}
.footer-social a{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.15);
  border-radius:50%;
  background:rgba(255,255,255,.05);
  color:#fff;
  text-decoration:none;
  font-size:18px;
  transition:.3s ease;
}
.footer-social a:hover{
  background:var(--brass);
  color:var(--ink);
  border-color:var(--brass);
  transform:translateY(-4px);
}

.footer-bottom{
  max-width:1320px;
  margin:0 auto;
  padding-top:26px;
  border-top:1px solid rgba(243,239,230,.12);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:14px;
  font-family:'JetBrains Mono',monospace;
  font-size:11px;
  letter-spacing:.04em;
  text-transform:uppercase;
}

@media(max-width:768px){
  footer{ padding:56px 6% 26px; }
  .footer-grid{ grid-template-columns:1fr 1fr; gap:36px 24px; margin-bottom:40px; }
  .footer-grid p{ max-width:none; }
}
@media(max-width:520px){
  .footer-grid{ grid-template-columns:1fr; gap:32px; }
  .footer-bottom{ flex-direction:column; text-align:center; gap:8px; }
}

/* ================= RESPONSIVE NAV (single source of truth) ================= */

@media(max-width:991px){
  .logo-img{ height:56px; }
}

@media(max-width:860px){

  header{ padding:14px 20px; }
  .header-actions .btn{ display:none; }
  .menu-toggle{ display:flex; }

  #siteNav{
    position:fixed;
    top:0;
    right:0;
    height:100vh;
    width:min(78vw,320px);
    background-color:#ffffff;
    opacity:1;
    box-shadow:-10px 0 30px rgba(12,14,46,.18);
    transform:translateX(100%);
    transition:transform .35s ease;
    z-index:1001;
    overflow-y:auto;
    padding:100px 0 40px;
  }
  #siteNav.open{ transform:translateX(0); }

  #siteNav ul{
    flex-direction:column;
    gap:0;
    background-color:#ffffff;
  }

  #siteNav ul li{
    width:100%;
    background-color:#ffffff;
    border-bottom:1px solid var(--line);
  }

  #siteNav ul li > a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 28px;
    font-size:16px;
    background-color:#ffffff;
  }

  /* dropdown becomes an inline accordion, not a hover flyout */
  .dropdown-content{
    position:static;
    display:none;
    opacity:1;
    visibility:visible;
    transform:none;
    min-width:100%;
    box-shadow:none;
    border:none;
    padding:0;
    background-color:#ffffff;
  }
  .dropdown.open .dropdown-content{ display:block; }
  .dropdown.open > a i{ transform:rotate(180deg); }
  .dropdown-content a{ padding:14px 28px 14px 42px; background-color:#ffffff; }

  .nav-overlay{
    position:fixed;
    inset:0;
    background:rgba(12,14,46,.55);
    opacity:0;
    visibility:hidden;
    transition:opacity .3s ease, visibility .3s ease;
    z-index:1000;
  }
  .nav-overlay.open{ opacity:1; visibility:visible; }
}

@media(max-width:480px){
  .logo-img{ height:46px; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible{
  outline:2px solid var(--brass);
  outline-offset:2px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}