/* =========================================================
   TRUSHTI — Stylesheet
   Design tokens are derived from the Trushti logo:
   a light blue circle, charcoal line typography and a
   scatter of slate dots. Keep new colors within this
   palette rather than introducing unrelated hues.
   ========================================================= */

:root{
  /* ---- Color tokens (derived from logo) ---- */
  --white:            #ffffff;
  --bg:                #fbfcfd;      /* page background, near white with a cool tint */
  --bg-soft:           #eef4f9;      /* light blue-grey section background */
  --bg-soft-2:         #e4edf5;      /* slightly deeper soft blue for contrast bands */
  --blue-light:        #c9dcec;      /* the light blue circle from the logo */
  --blue-mid:          #93b3cd;      /* mid step between light blue and slate */
  --slate:             #48586a;      /* the dot accents in the logo — primary accent */
  --slate-dark:        #34424f;      /* pressed / hover state of slate */
  --charcoal:           #262e35;     /* logo wordmark colour — primary text */
  --charcoal-soft:      #5b6670;     /* secondary text */
  --charcoal-faint:     #8a939b;     /* tertiary text / placeholders */
  --border:             #dbe4ea;     /* hairline borders */
  --border-soft:        #e8eef3;
  --success-bg:         #eef4f9;

  /* ---- Type ---- */
  --font-display: "Instrument Serif", "Iowan Old Style", "Georgia", serif;
  --font-body: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* ---- Radius / shadow ---- */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(38,46,53,0.06), 0 1px 1px rgba(38,46,53,0.04);
  --shadow-md: 0 12px 28px -12px rgba(38,46,53,0.16);
  --shadow-lg: 0 30px 60px -20px rgba(38,46,53,0.22);

  --container: 1200px;
  --transition: 220ms cubic-bezier(.4,0,.2,1);
}

/* ---------------------------------------------------------
   Reset
--------------------------------------------------------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img{ max-width: 100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin:0; padding:0; }
button{ font-family: inherit; cursor:pointer; }
h1,h2,h3,h4{ margin: 0; font-family: var(--font-display); font-weight: 500; color: var(--charcoal); letter-spacing: -0.01em; }
p{ margin: 0; }
input, textarea{ font-family: inherit; }

:focus-visible{
  outline: 2px solid var(--slate);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------------------------------------------------------
   Layout helpers
--------------------------------------------------------- */
.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section{ padding: 96px 0; }
.section-tight{ padding: 64px 0; }
@media (max-width: 768px){
  .section{ padding: 64px 0; }
  .section-tight{ padding: 44px 0; }
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
}
.eyebrow::before{
  content: "";
  width: 18px;
  height: 1px;
  background: var(--slate);
  display: inline-block;
}

.section-head{
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{
  font-size: clamp(30px, 4vw, 42px);
  margin-top: 14px;
  line-height: 1.15;
}
.section-head p{
  margin-top: 16px;
  color: var(--charcoal-soft);
  font-size: 17px;
}

.text-center{ text-align:center; }

/* fade-up reveal (JS toggles .is-visible) */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------------------
   Signature graphic device: the open ring from the logo
--------------------------------------------------------- */
.ring{
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--charcoal);
  opacity: 0.35;
}
.dot-cluster{ position:absolute; }
.dot-cluster span{
  position:absolute;
  width: 9px; height:9px;
  background: var(--slate);
  border-radius: 50%;
  opacity:0.85;
}

/* ---------------------------------------------------------
   Buttons
--------------------------------------------------------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content:center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn:active{ transform: scale(0.97); }

.btn-primary{
  background: var(--charcoal);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover{
  background: var(--slate-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-secondary{
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-secondary:hover{
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-amazon{
  background: var(--slate);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-amazon:hover{
  background: var(--slate-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-block{ width: 100%; }
.btn-lg{ padding: 18px 38px; font-size: 16px; }

/* ---------------------------------------------------------
   Header / Navigation
--------------------------------------------------------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,252,253,0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.nav{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
}
.brand img{
  height: 62px;
  width: auto;
}
.nav-links{
  display:flex;
  align-items:center;
  gap: 36px;
}
.nav-links a{
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal-soft);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a[aria-current="page"]{
  color: var(--charcoal);
}
.nav-links a[aria-current="page"]::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-4px;
  height:2px;
  background: var(--slate);
  border-radius: 2px;
}
.nav-cta{ display:flex; align-items:center; gap:18px; }

.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  padding: 8px;
}
.hamburger span{
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.hamburger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-panel{
  display:none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 24px;
  border-top: 1px solid var(--border-soft);
  background: var(--bg);
}
.mobile-panel a{
  padding: 14px 4px;
  font-weight: 600;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border-soft);
}
.mobile-panel .btn{ margin-top: 16px; }

@media (max-width: 900px){
  .nav-links{ display:none; }
  .nav-cta .btn{ display:none; }
  .hamburger{ display:flex; }
  .mobile-panel.is-open{ display:flex; }
}

/* ---------------------------------------------------------
   Hero
--------------------------------------------------------- */
.hero{
  position:relative;
  overflow:hidden;
  padding: 72px 0 40px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items:center;
}
.hero-copy h1{
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.06;
  margin-top: 18px;
}
.hero-copy p{
  margin-top: 22px;
  font-size: 18px;
  color: var(--charcoal-soft);
  max-width: 480px;
}
.hero-actions{
  display:flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-visual{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height: 460px;
}
.hero-blob{
  position:absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, var(--blue-light), var(--blue-mid) 78%);
  opacity: 0.9;
}
.hero-ring{
  position:absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid var(--charcoal);
  opacity: 0.28;
  clip-path: polygon(0 0, 100% 0, 100% 42%, 0 55%);
}
.hero-product{
  position:relative;
  width: min(300px, 62vw);
  filter: drop-shadow(0 30px 40px rgba(38,46,53,0.25));
  transition: transform 500ms ease;
}
.hero-product:hover{ transform: translateY(-8px); }
.hero-dots{ position:absolute; top: 8%; right: 6%; }
.hero-dots span:nth-child(1){ top:0; left:22px; }
.hero-dots span:nth-child(2){ top:16px; left:0; }
.hero-dots span:nth-child(3){ top:16px; left:44px; }
.hero-dots span:nth-child(4){ top:34px; left:22px; }
.hero-dots span:nth-child(5){ top:34px; left:66px; }

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ order:-1; min-height: 320px; }
  .hero-blob{ width:300px; height:300px; }
  .hero-ring{ width:340px; height:340px; }
  .hero-copy p{ max-width:none; }
}

/* ---------------------------------------------------------
   Trust / intro band
--------------------------------------------------------- */
.intro-band{
  background: var(--bg-soft);
  position:relative;
  overflow:hidden;
}
.intro-band .container{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items:center;
}
.intro-band h2{
  font-size: clamp(28px, 3.6vw, 38px);
  line-height:1.2;
}
.intro-band p{ color: var(--charcoal-soft); font-size:16.5px; margin-top: 18px; }
@media (max-width: 860px){
  .intro-band .container{ grid-template-columns: 1fr; gap: 24px; }
}

/* ---------------------------------------------------------
   Featured product section
--------------------------------------------------------- */
.featured-product{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items:center;
}
.featured-product .visual{
  position:relative;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 48px 24px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.featured-product .visual img{
  width: min(220px, 60%);
  filter: drop-shadow(0 24px 30px rgba(38,46,53,0.18));
  transition: transform var(--transition);
}
.featured-product .visual:hover img{ transform: scale(1.04) translateY(-4px); }
.featured-product .visual .ring{
  width: 240px; height:240px;
  top: -30px; right: -40px;
  border-color: var(--slate);
}
.feature-list{ margin-top: 26px; display:flex; flex-direction:column; gap:14px; }
.feature-list li{
  display:flex;
  align-items:flex-start;
  gap: 12px;
  color: var(--charcoal-soft);
  font-size: 15.5px;
}
.feature-list li svg{ flex-shrink:0; margin-top:3px; color: var(--slate); }
@media (max-width: 860px){
  .featured-product{ grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------
   Feature / why cards
--------------------------------------------------------- */
.card-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card{
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}
.feature-icon{
  width: 48px; height:48px;
  border-radius: 50%;
  background: var(--bg-soft);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--slate);
  margin-bottom: 20px;
}
.feature-card h3{ font-size: 19px; font-family: var(--font-body); font-weight:700; }
.feature-card p{ margin-top:10px; color: var(--charcoal-soft); font-size: 14.5px; }

@media (max-width: 1024px){ .card-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .card-grid{ grid-template-columns: 1fr; } }

/* ---------------------------------------------------------
   How it works — steps
--------------------------------------------------------- */
.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position:relative;
}
.step{
  position: relative;
  padding: 8px 8px 8px 0;
}
.step .num{
  font-family: var(--font-display);
  font-size: 46px;
  color: var(--blue-mid);
  line-height:1;
}
.step h3{ margin-top:14px; font-size:20px; font-family: var(--font-body); font-weight:700; }
.step p{ margin-top:10px; color: var(--charcoal-soft); font-size:15px; }
@media (max-width: 860px){ .steps{ grid-template-columns: 1fr; } }

/* ---------------------------------------------------------
   Brand message band
--------------------------------------------------------- */
.brand-message{
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.brand-message .ring{ border-color: var(--blue-light); opacity:0.5; }
.brand-message h2{
  color: var(--white);
  font-size: clamp(28px, 4vw, 44px);
  max-width: 720px;
  margin: 0 auto;
  line-height:1.25;
}
.brand-message p{
  margin-top: 20px;
  color: #c3ccd3;
  max-width: 560px;
  margin-left:auto;
  margin-right:auto;
}

/* ---------------------------------------------------------
   Shop CTA band
--------------------------------------------------------- */
.shop-cta{
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-soft-2) 100%);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  display:grid;
  grid-template-columns: 1fr auto;
  align-items:center;
  gap: 32px;
  position:relative;
  overflow:hidden;
}
.shop-cta h2{ font-size: clamp(26px, 3.4vw, 36px); }
.shop-cta p{ margin-top:12px; color: var(--charcoal-soft); }
.shop-cta img{ width: 120px; }
.shop-cta-visual{ display:flex; align-items:center; gap:24px; }
@media (max-width: 760px){
  .shop-cta{ grid-template-columns: 1fr; text-align:center; }
  .shop-cta-visual{ justify-content:center; flex-direction:column; }
}

/* ---------------------------------------------------------
   FAQ accordion
--------------------------------------------------------- */
.faq-list{ max-width: 760px; margin: 0 auto; }
.faq-item{
  border-bottom: 1px solid var(--border);
}
.faq-question{
  width:100%;
  background:none;
  border:none;
  text-align:left;
  padding: 22px 4px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 20px;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--charcoal);
}
.faq-question .plus{
  flex-shrink:0;
  width: 24px; height:24px;
  position:relative;
}
.faq-question .plus::before,
.faq-question .plus::after{
  content:"";
  position:absolute;
  background: var(--slate);
  border-radius:2px;
  transition: transform var(--transition), opacity var(--transition);
}
.faq-question .plus::before{ top:50%; left:0; width:100%; height:2px; transform: translateY(-50%); }
.faq-question .plus::after{ left:50%; top:0; width:2px; height:100%; transform: translateX(-50%); }
.faq-item.is-open .faq-question .plus::after{ opacity:0; transform: translateX(-50%) rotate(90deg); }

.faq-answer{
  max-height: 0;
  overflow:hidden;
  transition: max-height 320ms ease;
}
.faq-answer p{
  padding: 0 4px 22px;
  color: var(--charcoal-soft);
  font-size: 15px;
  max-width: 640px;
}

/* ---------------------------------------------------------
   Product card (shop grid + featured)
--------------------------------------------------------- */
.product-card{
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow:hidden;
  display:block;
  transition: transform var(--transition), box-shadow var(--transition);
  position:relative;
}
.product-card:hover{
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.product-card .thumb{
  background: var(--bg-soft);
  padding: 40px 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}
.product-card .thumb img{ width: 55%; filter: drop-shadow(0 18px 22px rgba(38,46,53,0.18)); transition: transform var(--transition); }
.product-card:hover .thumb img{ transform: scale(1.05); }
.badge{
  position:absolute;
  top: 18px; left:18px;
  background: var(--white);
  color: var(--slate);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.product-card .info{ padding: 26px 26px 30px; }
.product-card .info h3{ font-size: 20px; font-family: var(--font-body); font-weight:700; }
.product-card .info .tag{ margin-top:6px; font-size:13.5px; color: var(--slate); font-weight:700; }
.product-card .info p{ margin-top:12px; color: var(--charcoal-soft); font-size:14.5px; }
.product-card .info .btn{ margin-top:20px; }

.coming-soon-card{
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 24px;
  text-align:center;
  color: var(--charcoal-faint);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 14px;
  background: var(--bg-soft);
}
.coming-soon-card .icon-circle{
  width:56px; height:56px;
  border-radius:50%;
  border: 1px dashed var(--charcoal-faint);
  display:flex; align-items:center; justify-content:center;
}
.coming-soon-card h3{ color: var(--charcoal-soft); font-size:17px; font-family: var(--font-body); font-weight:700; }
.coming-soon-card p{ font-size: 14px; max-width: 260px; }

.shop-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1024px){ .shop-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px){ .shop-grid{ grid-template-columns: 1fr; } }

/* ---------------------------------------------------------
   Page hero (inner pages)
--------------------------------------------------------- */
.page-hero{
  padding: 64px 0 20px;
  text-align:center;
}
.page-hero .eyebrow{ justify-content:center; }
.page-hero h1{
  font-size: clamp(34px, 5vw, 52px);
  margin-top: 16px;
}
.page-hero p{
  margin-top:16px;
  color: var(--charcoal-soft);
  max-width: 600px;
  margin-left:auto;
  margin-right:auto;
  font-size:17px;
}
.breadcrumb{
  display:flex;
  gap:8px;
  align-items:center;
  font-size: 13.5px;
  color: var(--charcoal-faint);
  justify-content:center;
  margin-top: 8px;
}
.breadcrumb a{ color: var(--charcoal-soft); font-weight:600; }
.breadcrumb a:hover{ color: var(--slate); }

/* ---------------------------------------------------------
   Product detail page
--------------------------------------------------------- */
.product-detail{
  display:grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items:flex-start;
}
.product-detail .gallery{
  position: sticky;
  top: 110px;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 56px 32px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.product-detail .gallery img{
  width: min(320px, 70%);
  filter: drop-shadow(0 30px 34px rgba(38,46,53,0.2));
}
.product-detail .gallery .ring{
  width: 320px; height:320px;
  top:-40px; left:-40px;
}
.product-detail .content .tag{ color: var(--slate); font-weight:700; font-size:13.5px; letter-spacing:0.04em; }
.product-detail .content h1{ font-size: clamp(30px, 4vw, 42px); margin-top:10px; }
.product-detail .content .desc{ margin-top:16px; color: var(--charcoal-soft); font-size: 16.5px; }
.product-detail .price-row{
  display:flex;
  align-items:center;
  gap:16px;
  margin-top: 24px;
  flex-wrap:wrap;
}
.product-detail .buy-note{ font-size:13px; color: var(--charcoal-faint); margin-top:10px; }

.highlight-grid{
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap:14px;
  margin-top:32px;
}
.highlight-chip{
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 14px;
  font-weight:600;
  color: var(--charcoal-soft);
  display:flex;
  align-items:center;
  gap:10px;
}
.highlight-chip svg{ color: var(--slate); flex-shrink:0; }

.detail-block{ margin-top: 44px; }
.detail-block h2{ font-size: 22px; font-family: var(--font-body); font-weight:800; }
.detail-block .rule{ width:40px; height:2px; background:var(--slate); margin-top:10px; border-radius:2px; }
.detail-block p{ margin-top:16px; color: var(--charcoal-soft); font-size:15.5px; }

.usage-steps{ margin-top:18px; display:flex; flex-direction:column; gap:14px; }
.usage-steps li{ display:flex; gap:14px; align-items:flex-start; }
.usage-steps .step-badge{
  flex-shrink:0;
  width:28px; height:28px;
  border-radius:50%;
  background: var(--slate);
  color:var(--white);
  font-size:13px;
  font-weight:700;
  display:flex; align-items:center; justify-content:center;
}
.usage-steps span.step-text{ color: var(--charcoal-soft); font-size:15px; padding-top:3px; }

.surface-tags{ display:flex; flex-wrap:wrap; gap:10px; margin-top:16px; }
.surface-tags span{
  background: var(--white);
  border:1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight:600;
  color: var(--charcoal-soft);
}

.info-table{ margin-top:18px; border-top:1px solid var(--border-soft); }
.info-table .row{
  display:flex;
  justify-content:space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size:14.5px;
}
.info-table .row span:first-child{ color: var(--charcoal-faint); font-weight:600; }
.info-table .row span:last-child{ color: var(--charcoal); font-weight:600; text-align:right; }

@media (max-width: 900px){
  .product-detail{ grid-template-columns:1fr; gap: 32px; }
  .product-detail .gallery{ position: static; }
  .highlight-grid{ grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------
   About page
--------------------------------------------------------- */
.about-block{
  display:grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 48px;
  padding: 44px 0;
  border-top: 1px solid var(--border-soft);
}
.about-block:first-of-type{ border-top:none; }
.about-block h2{ font-size: 26px; }
.about-block p{ color: var(--charcoal-soft); margin-top: 4px; font-size: 16px; }
@media (max-width: 760px){
  .about-block{ grid-template-columns:1fr; gap:14px; }
}

/* ---------------------------------------------------------
   Contact page
--------------------------------------------------------- */
.contact-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card{
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 34px 26px;
  text-align:center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.contact-card .feature-icon{ margin: 0 auto 18px; }
.contact-card h3{ font-size:17px; font-family: var(--font-body); font-weight:700; }
.contact-card p{ margin-top:8px; color: var(--charcoal-soft); font-size:14px; }
.contact-card a.contact-link{
  display:inline-block;
  margin-top:14px;
  font-weight:700;
  color: var(--slate);
  border-bottom: 1px solid transparent;
}
.contact-card a.contact-link:hover{ border-color: var(--slate); }

.contact-note{
  margin-top: 48px;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  font-size: 14.5px;
  color: var(--charcoal-soft);
  text-align:center;
}
@media (max-width: 860px){ .contact-grid{ grid-template-columns: 1fr; } }

/* ---------------------------------------------------------
   Footer
--------------------------------------------------------- */
.site-footer{
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  padding: 64px 0 28px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand img{ height:40px; }
.footer-brand p{
  margin-top:16px;
  color: var(--charcoal-soft);
  font-size: 14.5px;
  max-width: 280px;
}
.footer-col h4{
  font-family: var(--font-body);
  font-size: 13px;
  font-weight:800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal-faint);
}
.footer-col ul{ margin-top:18px; display:flex; flex-direction:column; gap:12px; }
.footer-col a{ color: var(--charcoal-soft); font-size:14.5px; transition: color var(--transition); }
.footer-col a:hover{ color: var(--slate); }
.footer-bottom{
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--charcoal-faint);
}
@media (max-width: 860px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px){
  .footer-grid{ grid-template-columns: 1fr; gap: 32px; }
}
