/* =========================================================
   SHREE CERAMIC — Stylesheet
   Palette: Ink Navy #10233D / Deep Navy #0B1B30 / Gold #B08D57
            Cream #F7F4EE / White #FFFFFF / Charcoal #23262B
   Type: Fraunces (display) + Work Sans (body)
   ========================================================= */

:root{
  --navy: #10233D;
  --navy-deep: #0B1B30;
  --gold: #B08D57;
  --gold-light: #D8BD8F;
  --cream: #F7F4EE;
  --white: #FFFFFF;
  --ink: #23262B;
  --ink-soft: #565C63;
  --line: #E4DFD3;

  --serif: "Fraunces", Georgia, serif;
  --sans: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --radius: 2px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4{ font-family: var(--serif); margin: 0; color: var(--navy); font-weight: 600; }
p{ margin: 0; }

.skip-link{
  position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--navy-deep);
  padding: 10px 16px; z-index: 999;
}
.skip-link:focus{ left: 10px; top: 10px; }

:focus-visible{ outline: 2px solid var(--gold); outline-offset: 3px; }

.section-head{
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head h2{ font-size: clamp(1.8rem, 3vw, 2.4rem); margin-top: 8px; }
.section-sub{ color: var(--ink-soft); margin-top: 12px; font-size: 1.02rem; }

.eyebrow-plain{
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  margin: 0;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-primary:hover{ background: var(--gold-light); }
.btn-outline{
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn-outline:hover{ background: rgba(255,255,255,0.08); }
.contact .btn-outline:hover, .why .btn-outline:hover{ background: rgba(16,35,61,0.06); }

.text-link{
  display: inline-block;
  margin-top: 18px;
  color: var(--navy);
  font-weight: 600;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
}

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.brand-mark{ color: var(--gold); display: flex; flex-shrink: 0; }
.brand-text{ display: flex; flex-direction: column; line-height: 1.2; }
.brand-name{ font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--white); }
.brand-tag{ font-size: 0.68rem; letter-spacing: 0.04em; color: var(--gold-light); }

.main-nav{
  display: flex;
  gap: 30px;
  flex: 1;
  justify-content: center;
}
.main-nav a{
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover{ color: var(--white); }
.main-nav a::after{
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.2s ease;
}
.main-nav a:hover::after{ transform: scaleX(1); }

.header-actions{ display: flex; align-items: center; gap: 18px; }
.header-call{
  display: flex; align-items: center; gap: 8px;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.92rem;
}
.header-call:hover{ color: var(--white); }

.nav-toggle{
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span{ width: 22px; height: 2px; background: var(--white); display: block; }

/* ---------- Hero ---------- */
.hero{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  background: var(--navy);
  min-height: 640px;
}
.hero-copy{
  color: var(--white);
  padding: 90px 60px 70px 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
}
.hero-copy .eyebrow-plain{ color: var(--gold-light); }
.hero-copy h1{
  color: var(--white);
  font-size: clamp(2.1rem, 4vw, 3.15rem);
  line-height: 1.15;
  margin: 18px 0 22px;
  font-weight: 600;
}
.hero-desc{
  color: rgba(255,255,255,0.78);
  font-size: 1.08rem;
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-actions{ display: flex; gap: 16px; flex-wrap: wrap; }
.hero-actions .btn-outline{ color: var(--white); }

.hero-meta{
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-meta div{ display: flex; flex-direction: column; }
.hero-meta strong{ font-family: var(--serif); font-size: 1.3rem; color: var(--gold-light); }
.hero-meta span{ font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-top: 2px; }

.hero-media{
  position: relative;
  overflow: hidden;
}
.hero-media img{
  width: 100%; height: 100%; object-fit: cover;
  min-height: 420px;
}
.hero-media-frame{
  position: absolute;
  inset: 24px 24px 24px -1px;
  border: 1.5px solid var(--gold);
  pointer-events: none;
}

/* ---------- About ---------- */
.about{
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px 24px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-media img{ width: 100%; border: 1px solid var(--line); }
.about-copy h2{ font-size: clamp(1.7rem, 3vw, 2.2rem); margin: 10px 0 22px; line-height: 1.25; }
.about-copy p{ color: var(--ink-soft); margin-bottom: 16px; max-width: 62ch; }

/* ---------- Products ---------- */
.products{
  background: var(--cream);
  padding: 100px 24px;
}
.product-grid{
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}
.product-card{
  background: var(--white);
  padding: 0 0 26px;
}
.product-card-media{ aspect-ratio: 4/3; overflow: hidden; margin-bottom: 20px; }
.product-card-media img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card-media img{ transform: scale(1.04); }
.product-card h3{ font-size: 1.12rem; padding: 0 22px; margin-bottom: 10px; }
.product-card p{ padding: 0 22px; color: var(--ink-soft); font-size: 0.93rem; }

/* ---------- Brands ---------- */
.brands{ padding: 90px 24px 100px; text-align: center; }
.brand-row{ display: flex; justify-content: center; }
.brand-pill{
  border: 1.5px solid var(--navy);
  padding: 22px 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.brand-pill-name{ font-family: var(--serif); font-size: 1.4rem; letter-spacing: 0.04em; color: var(--navy); font-weight: 600; }
.brand-pill-sub{ font-size: 0.8rem; color: var(--ink-soft); }
.brand-note{ margin-top: 24px; color: var(--ink-soft); font-size: 0.9rem; }

/* ---------- Gallery ---------- */
.gallery{ padding: 0 24px 110px; }
.gallery-grid{
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-item{
  padding: 0; border: none; background: none; cursor: pointer;
  aspect-ratio: 1/1; overflow: hidden; position: relative;
}
.gallery-item img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease, filter 0.3s ease; }
.gallery-item:hover img{ transform: scale(1.06); }
.gallery-item::after{
  content: "";
  position: absolute; inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.gallery-item:hover::after{ border-color: var(--gold); }

/* ---------- Why choose us ---------- */
.why{ background: var(--navy-deep); padding: 100px 24px; color: var(--white); }
.why .section-head h2{ color: var(--white); }
.why .eyebrow-plain{ color: var(--gold-light); }
.why-grid{
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.why-card{ border-top: 2px solid var(--gold); padding-top: 22px; }
.why-icon{ color: var(--gold-light); margin-bottom: 16px; }
.why-card h3{ color: var(--white); font-size: 1.08rem; margin-bottom: 10px; }
.why-card p{ color: rgba(255,255,255,0.68); font-size: 0.93rem; }

/* ---------- Contact ---------- */
.contact{ max-width: var(--container); margin: 0 auto; padding: 100px 24px 110px; }
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 20px;
}
.contact-grid-single{
  grid-template-columns: 1fr;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.info-list li{
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.info-label{ font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold); font-weight: 600; }
.info-value{ font-size: 1rem; color: var(--ink); display: flex; gap: 14px; flex-wrap: wrap; }
.info-value a:hover{ color: var(--navy); text-decoration: underline; }
.contact-buttons{ display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.contact .btn-outline{ border-color: var(--navy); color: var(--navy); }

/* ---------- Footer ---------- */
.site-footer{ background: var(--navy-deep); color: rgba(255,255,255,0.75); }
.footer-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 70px 24px 40px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 40px;
}
.footer-col h4{ color: var(--gold-light); font-family: var(--sans); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer-col a, .footer-col p{ display: block; margin-bottom: 10px; font-size: 0.92rem; }
.footer-col a:hover{ color: var(--white); }
.footer-name{ color: var(--white); font-size: 1.3rem; display: block; margin-bottom: 10px; }
.footer-gst{ color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 22px;
  font-size: 0.82rem;
}

/* ---------- Lightbox ---------- */
.lightbox{
  position: fixed; inset: 0; background: rgba(11,27,48,0.94);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000; padding: 40px;
}
.lightbox[hidden]{ display: none; }
.lightbox img{ max-width: 92vw; max-height: 88vh; border: 2px solid var(--gold); }
.lightbox-close{
  position: absolute; top: 22px; right: 30px;
  background: none; border: none; color: var(--white);
  font-size: 2.4rem; line-height: 1; cursor: pointer;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px){
  .hero{ grid-template-columns: 1fr; }
  .hero-media img{ min-height: 340px; }
  .hero-copy{ padding: 70px 40px 50px; max-width: none; }
  .about{ grid-template-columns: 1fr; gap: 40px; }
  .product-grid{ grid-template-columns: repeat(2, 1fr); }
  .why-grid{ grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .gallery-grid{ grid-template-columns: repeat(3, 1fr); }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px){
  .main-nav{
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 24px 22px;
    gap: 4px;
    display: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .main-nav.open{ display: flex; }
  .main-nav a{ width: 100%; padding: 10px 0; }
  .nav-toggle{ display: flex; }
  .header-call span{ display: none; }
  .hero-copy{ padding: 50px 22px 40px; }
  .hero-meta{ gap: 24px; flex-wrap: wrap; }
  .about, .products, .why, .contact{ padding: 60px 20px; }
  .gallery{ padding: 0 20px 70px; }
  .product-grid{ grid-template-columns: 1fr; }
  .why-grid{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-inner{ grid-template-columns: 1fr; padding: 50px 20px 30px; }
  .brand-pill{ padding: 18px 30px; }
}

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