/* =========================================================================
   SUKHAMAYA WELLNESS — Stylesheet
   Reflexology & holistic therapy studio, Belagavi.

   Contents:
     1. Design tokens
     2. Reset & base
     3. Typography
     4. Layout utilities
     5. Buttons
     6. Navigation
     7. Hero
     8. Sections (services, why-us, about, gallery preview, contact)
     9. Footer
    10. Gallery page & lightbox
    11. About page
    12. Animations / scroll reveal
    13. Responsive
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Design tokens
   ------------------------------------------------------------------------- */
:root{
  /* Brand palette — drawn from the Sukhamaya Wellness logo */
  --plum:        #4A1F4D;
  --plum-deep:   #341536;
  --forest:      #1F5C3A;
  --forest-deep: #133D27;
  --gold:        #D99A34;
  --gold-light:  #F0BE72;
  --cream:       #FBF6EC;
  --cream-2:     #F2E9D8;
  --ink:         #29202B;
  --ink-soft:    #6B5E6D;
  --white:       #FFFFFF;

  /* Reflexology accent chips — used sparingly on the signature motif & steps */
  --acc-coral:  #E1637A;
  --acc-teal:   #2FA093;
  --acc-sky:    #4A90C7;
  --acc-violet: #8654A3;
  --acc-amber:  #E8A33D;

  /* Type */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --max-width: 1220px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(41, 32, 43, 0.06);
  --shadow-md: 0 12px 30px rgba(41, 32, 43, 0.10);
  --shadow-lg: 0 24px 60px rgba(41, 32, 43, 0.16);

  --nav-h: 84px;
}

/* -------------------------------------------------------------------------
   2. Reset & base
   ------------------------------------------------------------------------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* Skip link for keyboard/screen-reader users */
.skip-link{
  position: absolute; left: 12px; top: -60px;
  background: var(--forest); color: var(--white);
  padding: 10px 16px; border-radius: var(--radius-sm);
  z-index: 1000; transition: top .2s ease;
}
.skip-link:focus{ top: 12px; }

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

/* -------------------------------------------------------------------------
   3. Typography
   ------------------------------------------------------------------------- */
.eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before{
  content: ""; width: 22px; height: 2px; background: var(--gold); border-radius: 2px;
}

h1{ font-size: clamp(2.4rem, 4.6vw, 3.6rem); line-height: 1.08; letter-spacing: -0.01em; }
h2{ font-size: clamp(1.9rem, 3vw, 2.5rem); line-height: 1.14; }
h3{ font-size: 1.3rem; line-height: 1.3; }

.lede{
  font-size: 1.1rem; color: var(--ink-soft); max-width: 56ch;
}
.section-head{ max-width: 680px; margin: 0 0 3rem; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head p{ margin-top: 0.9rem; }

em.accent{ font-style: italic; color: var(--forest); }

/* -------------------------------------------------------------------------
   4. Layout utilities
   ------------------------------------------------------------------------- */
.wrap{ max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section{ padding: 96px 0; }
.section.tight{ padding: 64px 0; }
.section.alt{ background: var(--cream-2); }
.section.dark{ background: var(--plum-deep); color: var(--cream); }
.section.dark h2, .section.dark h3{ color: var(--white); }

.grid{ display: grid; gap: 28px; }
.grid.cols-3{ grid-template-columns: repeat(3, 1fr); }
.grid.cols-4{ grid-template-columns: repeat(4, 1fr); }
.grid.cols-5{ grid-template-columns: repeat(5, 1fr); }
.grid.cols-2{ grid-template-columns: repeat(2, 1fr); }

.divider-leaf{
  display: flex; align-items: center; justify-content: center; gap: 14px;
  color: var(--forest); margin: 0 auto 2.5rem; opacity: .8;
}
.divider-leaf .line{ width: 60px; height: 1px; background: currentColor; opacity: .4; }

/* -------------------------------------------------------------------------
   5. Buttons
   ------------------------------------------------------------------------- */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px; font-weight: 700; font-size: 0.98rem;
  border: 2px solid transparent; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{ background: var(--forest); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover{ background: var(--forest-deep); box-shadow: var(--shadow-md); }
.btn-gold{ background: var(--gold); color: var(--plum-deep); box-shadow: var(--shadow-sm); }
.btn-gold:hover{ background: var(--gold-light); box-shadow: var(--shadow-md); }
.btn-outline{ background: transparent; border-color: currentColor; color: var(--plum-deep); }
.btn-outline:hover{ background: var(--plum-deep); color: var(--white); border-color: var(--plum-deep); }
.section.dark .btn-outline{ color: var(--white); }
.section.dark .btn-outline:hover{ background: var(--white); color: var(--plum-deep); }
.btn-sm{ padding: 10px 20px; font-size: 0.85rem; }
.btn svg{ width: 18px; height: 18px; flex-shrink: 0; }

/* -------------------------------------------------------------------------
   6. Navigation
   ------------------------------------------------------------------------- */
.site-header{
  position: sticky; top: 0; z-index: 500;
  background: rgba(251, 246, 236, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(74, 31, 77, 0.08);
  height: var(--nav-h);
  display: flex; align-items: center;
}
.nav{ display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand{ display: flex; align-items: center; gap: 12px; }
.brand img{ height: 54px; width: 54px; object-fit: contain; }
.brand-word{ font-family: var(--font-display); font-weight: 600; }
.brand-word strong{ display: block; color: var(--plum-deep); font-size: 1.18rem; line-height: 1.1; }
.brand-word span{ display: block; color: var(--forest); font-size: 0.68rem; letter-spacing: 0.22em; font-weight: 700; font-family: var(--font-body); }

.nav-links{ display: flex; align-items: center; gap: 8px; }
.nav-links a{
  padding: 10px 16px; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  color: var(--ink); position: relative; transition: color .2s ease, background .2s ease;
}
.nav-links a:hover{ background: rgba(31, 92, 58, 0.08); color: var(--forest); }
.nav-links a.active{ color: var(--forest); background: rgba(31, 92, 58, 0.1); }

.nav-actions{ display: flex; align-items: center; gap: 14px; }
.mobile-only-cta{ display: none; }
.nav-toggle{
  display: none; background: none; border: none; padding: 8px; border-radius: var(--radius-sm);
}
.nav-toggle span{ display: block; width: 24px; height: 2px; background: var(--plum-deep); margin: 5px 0; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* -------------------------------------------------------------------------
   7. Hero
   ------------------------------------------------------------------------- */
.hero{
  padding: 76px 0 90px;
  position: relative; overflow: hidden;
}
.hero .wrap{
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
.hero h1{ margin: 18px 0 20px; }
.hero .lede{ margin-bottom: 34px; }
.hero-ctas{ display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.trust-row{ display: flex; gap: 28px; flex-wrap: wrap; }
.trust-item{ display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--ink-soft); }
.trust-item svg{ width: 20px; height: 20px; color: var(--forest); flex-shrink: 0; }
.trust-item strong{ color: var(--plum-deep); }

.hero-art{ position: relative; display: flex; justify-content: center; align-items: center; }
.hero-art .glow{
  position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(217,154,52,0.22), transparent 70%);
  filter: blur(6px);
}
.hero-art svg{ position: relative; width: 100%; max-width: 460px; height: auto; }

.page-hero{
  padding: 56px 0 64px; position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--cream-2), var(--cream));
}
.page-hero .wrap{ text-align: center; max-width: 780px; }
.page-hero h1{ margin: 16px 0 14px; }
.page-hero .lede{ margin: 0 auto; }

/* -------------------------------------------------------------------------
   8. Sections — Services
   ------------------------------------------------------------------------- */
.steps{
  display: flex; flex-direction: column; gap: 14px;
}
.step-card{
  display: grid; grid-template-columns: auto auto 1fr auto; align-items: center; gap: 20px;
  background: var(--white); border-radius: var(--radius-md); padding: 18px 24px;
  box-shadow: var(--shadow-sm); transition: box-shadow .25s ease, transform .25s ease;
}
.step-card:hover{ box-shadow: var(--shadow-md); transform: translateX(4px); }
.step-num{
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--white);
  flex-shrink: 0;
}
.step-card .step-line{ width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); opacity: .5; }
.step-card h3{ font-size: 1.08rem; }
.step-card p{ color: var(--ink-soft); font-size: 0.92rem; margin-top: 2px; }
.step-icon{
  width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--cream-2); flex-shrink: 0;
}
.step-icon svg{ width: 22px; height: 22px; }

/* -------------------------------------------------------------------------
   Why choose us
   ------------------------------------------------------------------------- */
.benefit-card{
  background: var(--white); border-radius: var(--radius-md); padding: 30px 26px;
  box-shadow: var(--shadow-sm); text-align: left; transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid rgba(74,31,77,0.06);
}
.benefit-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.benefit-icon{
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.benefit-icon svg{ width: 26px; height: 26px; color: var(--white); }
.benefit-card h3{ margin-bottom: 8px; }
.benefit-card p{ color: var(--ink-soft); font-size: 0.94rem; }

/* -------------------------------------------------------------------------
   Gallery preview grid (home) & full gallery grid
   ------------------------------------------------------------------------- */
.gallery-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery-tile{
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 4 / 3; box-shadow: var(--shadow-sm); cursor: pointer;
  border: none; padding: 0; display: block; width: 100%;
}
.gallery-tile .tile-bg{
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  transition: transform .5s ease;
}
.gallery-tile:hover .tile-bg{ transform: scale(1.06); }
.gallery-tile .tile-bg svg{ width: 34%; height: 34%; color: rgba(255,255,255,0.9); }
.gallery-tile .tile-caption{
  position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 18px;
  background: linear-gradient(0deg, rgba(20,12,20,0.72), transparent);
  color: var(--white); text-align: left; font-weight: 700; font-size: 0.95rem;
  opacity: 0; transform: translateY(8px); transition: opacity .3s ease, transform .3s ease;
}
.gallery-tile:hover .tile-caption, .gallery-tile:focus-visible .tile-caption{ opacity: 1; transform: translateY(0); }

.gallery-cta{ text-align: center; margin-top: 40px; }

/* -------------------------------------------------------------------------
   About preview (home)
   ------------------------------------------------------------------------- */
.about-preview{ display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.about-preview-art{ position: relative; }
.about-preview-art .frame{
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center;
}
.quote-block{
  border-left: 3px solid var(--gold); padding-left: 22px; margin: 26px 0;
  font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--plum-deep);
}

/* -------------------------------------------------------------------------
   Contact CTA band
   ------------------------------------------------------------------------- */
.cta-band{
  background: linear-gradient(120deg, var(--plum-deep), var(--plum) 60%, var(--forest-deep));
  color: var(--white); border-radius: var(--radius-lg); padding: 56px 48px;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-band::after{
  content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(217,154,52,0.35), transparent 70%);
}
.cta-band h2{ color: var(--white); margin-bottom: 12px; }
.cta-band p{ color: rgba(255,255,255,0.82); }
.cta-actions{ display: flex; flex-direction: column; gap: 14px; }
.cta-actions .btn{ width: 100%; }
.cta-contact-line{ display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 0.92rem; }
.cta-contact-line svg{ width: 18px; height: 18px; color: var(--gold-light); flex-shrink: 0; }

/* -------------------------------------------------------------------------
   9. Footer
   ------------------------------------------------------------------------- */
.site-footer{ background: var(--plum-deep); color: rgba(255,255,255,0.75); padding: 72px 0 28px; }
.footer-grid{ display: grid; grid-template-columns: 1.4fr 0.8fr 1fr 0.8fr; gap: 40px; }
.footer-brand{ display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img{ height: 50px; width: 50px; object-fit: contain; }
.footer-brand strong{ display: block; color: var(--white); font-family: var(--font-display); font-size: 1.15rem; }
.footer-brand span{ display: block; font-size: 0.68rem; letter-spacing: 0.2em; color: var(--gold-light); font-weight: 700; }
.site-footer p.footer-desc{ font-size: 0.92rem; max-width: 32ch; line-height: 1.6; }
.footer-col h4{ color: var(--white); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--font-body); }
.footer-col ul{ display: flex; flex-direction: column; gap: 11px; }
.footer-col a{ font-size: 0.94rem; transition: color .2s ease; }
.footer-col a:hover{ color: var(--gold-light); }
.footer-contact li{ display: flex; align-items: flex-start; gap: 10px; font-size: 0.94rem; }
.footer-contact svg{ width: 18px; height: 18px; color: var(--gold-light); flex-shrink: 0; margin-top: 2px; }
.social-row{ display: flex; gap: 10px; margin-top: 6px; }
.social-row a{
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; transition: background .2s ease, border-color .2s ease;
}
.social-row a:hover{ background: var(--gold); border-color: var(--gold); color: var(--plum-deep); }
.social-row svg{ width: 17px; height: 17px; }
.footer-bottom{
  margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.84rem;
}

/* -------------------------------------------------------------------------
   10. Full gallery page & lightbox
   ------------------------------------------------------------------------- */
.gallery-full{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gallery-full .gallery-tile{ aspect-ratio: 1/1; }

.lightbox{
  position: fixed; inset: 0; background: rgba(20, 12, 20, 0.92); z-index: 1000;
  display: flex; align-items: center; justify-content: center; padding: 32px;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.lightbox.is-open{ opacity: 1; pointer-events: auto; }
.lightbox-inner{
  max-width: 720px; width: 100%; background: var(--cream); border-radius: var(--radius-lg);
  overflow: hidden; transform: scale(0.94); transition: transform .3s ease; box-shadow: var(--shadow-lg);
}
.lightbox.is-open .lightbox-inner{ transform: scale(1); }
.lightbox-media{ aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; }
.lightbox-media svg{ width: 30%; height: 30%; color: rgba(255,255,255,0.92); }
.lightbox-caption{ padding: 22px 26px; }
.lightbox-caption h3{ margin-bottom: 4px; }
.lightbox-caption p{ color: var(--ink-soft); font-size: 0.92rem; }
.lightbox-close{
  position: absolute; top: 28px; right: 32px; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: none; color: var(--white);
  display: flex; align-items: center; justify-content: center; transition: background .2s ease;
}
.lightbox-close:hover{ background: rgba(255,255,255,0.25); }
.lightbox-close svg{ width: 20px; height: 20px; }
.lightbox-nav{
  position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: none; color: var(--white);
  display: flex; align-items: center; justify-content: center; transition: background .2s ease;
}
.lightbox-nav:hover{ background: rgba(255,255,255,0.25); }
.lightbox-nav.prev{ left: 24px; } .lightbox-nav.next{ right: 24px; }
.lightbox-nav svg{ width: 20px; height: 20px; }

.filter-row{ display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px; }
.filter-btn{
  padding: 9px 20px; border-radius: 999px; background: var(--white); border: 1px solid rgba(74,31,77,0.15);
  font-weight: 600; font-size: 0.88rem; color: var(--ink-soft); transition: all .2s ease;
}
.filter-btn:hover{ border-color: var(--forest); color: var(--forest); }
.filter-btn.active{ background: var(--forest); border-color: var(--forest); color: var(--white); }

/* -------------------------------------------------------------------------
   11. About page
   ------------------------------------------------------------------------- */
.mv-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mv-card{
  background: var(--white); border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.mv-card::before{
  content: ""; position: absolute; top: 0; left: 0; width: 5px; height: 100%;
}
.mv-card.mission::before{ background: var(--forest); }
.mv-card.vision::before{ background: var(--gold); }
.mv-card .mv-icon{ width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.mv-card .mv-icon svg{ width: 26px; height: 26px; color: var(--white); }
.mv-card p{ color: var(--ink-soft); margin-top: 12px; }

.values-grid{ display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.value-pill{
  background: var(--white); border-radius: var(--radius-md); padding: 26px 18px; text-align: center;
  box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
}
.value-pill:hover{ transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value-pill .v-icon{
  width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center;
}
.value-pill .v-icon svg{ width: 24px; height: 24px; color: var(--white); }
.value-pill h3{ font-size: 1rem; }

.team-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card{ text-align: center; }
.team-photo{
  aspect-ratio: 1/1; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm);
}
.team-photo svg{ width: 40%; height: 40%; color: rgba(255,255,255,0.9); }
.team-card h3{ margin-bottom: 2px; }
.team-card span{ color: var(--forest); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.03em; }
.team-card p{ color: var(--ink-soft); font-size: 0.88rem; margin-top: 8px; }

.intro-block{ display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.intro-figure{
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center;
}

/* -------------------------------------------------------------------------
   12. Scroll reveal
   ------------------------------------------------------------------------- */
[data-reveal]{ opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible{ opacity: 1; transform: translateY(0); }

/* -------------------------------------------------------------------------
   13. Responsive
   ------------------------------------------------------------------------- */
@media (max-width: 1080px){
  .grid.cols-4{ grid-template-columns: repeat(2, 1fr); }
  .grid.cols-5{ grid-template-columns: repeat(3, 1fr); }
  .values-grid{ grid-template-columns: repeat(3, 1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px){
  .nav-links, .nav-actions{ display: none; }
  .nav-toggle{ display: block; }
  .nav-links.mobile-open{
    display: flex; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--cream); padding: 14px 24px 24px; box-shadow: var(--shadow-md); gap: 4px;
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav-links.mobile-open a{ padding: 13px 16px; }
  .nav-links.mobile-open a.mobile-only-cta{ display: inline-flex; justify-content: center; margin-top: 10px; }

  .hero .wrap{ grid-template-columns: 1fr; }
  .hero-art{ order: -1; }
  .hero-art svg{ max-width: 300px; }
  .hero{ padding: 40px 0 60px; text-align: left; }

  .grid.cols-3{ grid-template-columns: repeat(2, 1fr); }
  .grid.cols-4{ grid-template-columns: repeat(2, 1fr); }
  .grid.cols-5{ grid-template-columns: repeat(2, 1fr); }
  .values-grid{ grid-template-columns: repeat(2, 1fr); }

  .gallery-grid, .gallery-full{ grid-template-columns: repeat(2, 1fr); }
  .about-preview, .mv-grid, .intro-block{ grid-template-columns: 1fr; }
  .about-preview-art{ order: -1; max-width: 420px; margin: 0 auto; }
  .cta-band{ grid-template-columns: 1fr; padding: 40px 28px; }
  .team-grid{ grid-template-columns: repeat(2, 1fr); }

  .step-card{ grid-template-columns: auto auto 1fr; }
  .step-icon{ display: none; }
}

@media (max-width: 600px){
  .section{ padding: 64px 0; }
  .section.tight{ padding: 44px 0; }
  .grid.cols-3, .grid.cols-4, .grid.cols-5, .values-grid, .gallery-grid, .gallery-full, .team-grid{ grid-template-columns: 1fr; }
  .brand-word strong{ font-size: 1.02rem; }
  .hero-ctas{ flex-direction: column; }
  .hero-ctas .btn{ width: 100%; }
  .trust-row{ flex-direction: column; gap: 12px; }
  .cta-band{ padding: 32px 20px; }
  .footer-grid{ grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom{ flex-direction: column; text-align: center; }
  .filter-row{ justify-content: flex-start; overflow-x: auto; padding-bottom: 6px; }
  .lightbox-nav{ width: 38px; height: 38px; }
  .lightbox-nav.prev{ left: 10px; } .lightbox-nav.next{ right: 10px; }
  .lightbox-close{ top: 14px; right: 14px; }
}
