/* ═══════════════════════════════════════════════════════════════════════
   PREM SAHIT STUDIO: styles.css
   A label of Rafu Technologies Pvt. Ltd.

   CONTENTS
     01. THEME TOKENS  ← every colour and font lives here
     02. Reset & base
     03. Typography helpers
     04. Buttons & links
     05. Header, nav, mobile menu
     06. Hero + strip
     07. Gallery
     08. Fabrics of the day + trivia
     09. How it works + service area
     10. Reviews
     11. Contact & form
     12. Footer + floating button
     13. Lightbox
     14. Reveals & utilities
     15. Responsive
     16. Reduced motion & print
   ═══════════════════════════════════════════════════════════════════════ */


/* ═══ 01. THEME TOKENS ═════════════════════════════════════════════════
   The palette is lifted straight out of the logo artwork:
     teal ring       #56878C
     ink lettering   #231F20
     sage leaves     #8EBBA8
     red flower      #ED1C24
   Change a value here and it changes everywhere on the site.
   ═══════════════════════════════════════════════════════════════════════ */
:root {
  /* Ground ─────────────────────────────────────── */
  --bg:            #FCFAF6;   /* soft warm white, page background      */
  --surface:       #F1F5F1;   /* pale sage, alternating sections       */
  --surface-2:     #E7EFE9;   /* deeper sage, image frames             */
  --line:          #E2E0D6;   /* hairlines and borders                  */

  /* Ink ───────────────────────────────────────── */
  --ink:           #231F20;   /* from the logo lettering                */
  --ink-soft:      #4C4744;   /* body copy                              */
  --muted:         #837C74;   /* captions and meta                      */

  /* Brand colours ─────────────────────────────── */
  --accent:        #56878C;   /* the teal ring, primary                */
  --accent-deep:   #416B70;   /* hover                                  */
  --accent-soft:   #DCE8E7;   /* teal at 15%, tints and chips          */
  --red:           #ED1C24;   /* the flower, used sparingly, on purpose */
  --sage:          #8EBBA8;   /* the leaves                             */

  /* Dark ground (footer) ───────────────────────── */
  --deep:          #2C4B4F;
  --on-dark:       #F1F5F1;
  --on-dark-soft:  #A9C1BE;

  /* Type ───────────────────────────────────────── */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --fs-hero:  clamp(2.6rem, 7.4vw, 5.4rem);
  --fs-h2:    clamp(1.9rem, 4.4vw, 3.1rem);
  --fs-lede:  clamp(1.02rem, 1.4vw, 1.2rem);
  --tracking: 0.14em;

  /* Space & shape ─────────────────────────────── */
  --shell:     1200px;
  --gutter:    clamp(1.25rem, 5vw, 3.5rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);
  --radius:    14px;          /* soft corners suit the hand-drawn mark  */
  --radius-sm: 9px;
  --header-h:  130px;         /* tall enough to give the logo room      */

  --ease:   cubic-bezier(0.22, 0.68, 0.28, 1);
  --t-fast: 200ms var(--ease);
  --t-med:  380ms var(--ease);
  --t-slow: 800ms var(--ease);
}


/* ═══ 02. RESET & BASE ═════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
svg { display: block; }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-variation-settings: "SOFT" 40, "WONK" 1;   /* Fraunces: softer, friendlier */
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
::selection { background: var(--accent); color: #fff; }

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

.shell {
  width: 100%; max-width: var(--shell);
  margin-inline: auto; padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); position: relative; }
.section--sage { background: var(--surface); }

.skip-link {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -140%);
  z-index: 200; background: var(--ink); color: #fff;
  padding: 0.7rem 1.4rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 0.85rem;
  transition: transform var(--t-fast);
}
.skip-link:focus { transform: translate(-50%, 0); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}


/* ═══ 03. TYPOGRAPHY HELPERS ═══════════════════════════════════════════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-size: 0.78rem; letter-spacing: var(--tracking); text-transform: uppercase;
  color: var(--accent); font-weight: 600;
  margin: 0 0 1rem;
}
/* the little red dot is the logo's flower, reduced to its simplest form */
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); flex: none; }

.section__title { font-size: var(--fs-h2); font-weight: 400; }
.section__title em { font-style: normal; color: var(--accent); }

.section__head { max-width: 44rem; margin-bottom: clamp(2.25rem, 4.5vw, 3.5rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }
.section__intro { color: var(--muted); font-size: var(--fs-lede); }

.lede { font-size: var(--fs-lede); color: var(--ink); }


/* ═══ 04. BUTTONS & LINKS ══════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  padding: 0.85em 1.7em;
  border: 1.5px solid transparent;
  border-radius: 100px;
  font-size: 0.92rem; font-weight: 600;
  letter-spacing: 0.01em;
  transition: background-color var(--t-fast), color var(--t-fast),
              border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.btn:active { transform: translateY(1px); }
.btn__icon { width: 17px; height: 17px; flex: none; }

.btn--accent {
  background: var(--accent); color: #fff; border-color: var(--accent);
  box-shadow: 0 6px 18px -10px rgba(86, 135, 140, 0.9);
}
.btn--accent:hover { background: var(--accent-deep); border-color: var(--accent-deep); }

.btn--outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }

.btn--light { background: transparent; color: var(--on-dark); border-color: rgba(241,245,241,0.35); }
.btn--light:hover { background: var(--on-dark); color: var(--deep); border-color: var(--on-dark); }

.btn--sm  { padding: 0.62em 1.25em; font-size: 0.84rem; }
.btn--lg  { padding: 1em 2em; font-size: 1rem; }
.btn--block { width: 100%; }


/* ═══ 05. HEADER / NAV ═════════════════════════════════════════════════
   The header is always pale, so the logo needs only one version.
   ═══════════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(252, 250, 246, 0.88);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  transition: box-shadow var(--t-med), transform var(--t-med);
}
.site-header.is-scrolled { box-shadow: 0 1px 0 var(--line), 0 8px 24px -22px rgba(35,31,32,0.5); }
.site-header.is-hidden { transform: translateY(-100%); }

.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
  height: var(--header-h);
  transition: height var(--t-med);
}
.site-header.is-scrolled .site-header__inner { height: 88px; }

.brand { display: block; line-height: 0; margin-right: auto; }
.brand__logo {
  width: auto; height: clamp(64px, 9.1vw, 106px);
  transition: height var(--t-med);
}
.site-header.is-scrolled .brand__logo { height: clamp(50px, 6.6vw, 70px); }

/* While the mobile menu is open the header sits on the dark overlay, so it
   goes transparent and swaps to the reversed wordmark. */
.brand__logo--light { display: none; }
.site-header.is-menu-open {
  background: transparent; box-shadow: none;
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
.is-menu-open .brand__logo--dark  { display: none; }
.is-menu-open .brand__logo--light { display: block; }

.nav { display: flex; align-items: center; gap: clamp(1.25rem, 2.6vw, 2.25rem); }
.nav__list { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.9rem); list-style: none; margin: 0; padding: 0; }
.nav__link {
  position: relative; padding-block: 0.35rem;
  font-size: 0.94rem; font-weight: 500; color: var(--ink-soft);
  transition: color var(--t-fast);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px;
  border-radius: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--t-med);
}
.nav__link:hover, .nav__link.is-current { color: var(--accent); }
.nav__link:hover::after, .nav__link.is-current::after { transform: scaleX(1); transform-origin: left; }

/* Hamburger ─────────────────────────────────── */
.hamburger { display: none; position: relative; z-index: 2; padding: 0.6rem; margin-right: -0.6rem; }
.hamburger__box { display: block; width: 26px; height: 15px; position: relative; }
.hamburger__bar {
  position: absolute; left: 0; height: 2px; width: 100%; border-radius: 2px;
  background: var(--ink);
  transition: transform var(--t-med), opacity var(--t-fast), background-color var(--t-med), width var(--t-med);
}
.hamburger__bar:nth-child(1) { top: 0; }
.hamburger__bar:nth-child(2) { top: 50%; width: 72%; }
.hamburger__bar:nth-child(3) { bottom: 0; }
.is-menu-open .hamburger__bar { background: var(--on-dark); width: 100%; }
.is-menu-open .hamburger__bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.is-menu-open .hamburger__bar:nth-child(2) { opacity: 0; }
.is-menu-open .hamburger__bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu ───────────────────────────────── */
.menu-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: var(--deep);
  display: grid; place-items: center; place-items: safe center;
  overflow-y: auto;
  opacity: 0; visibility: hidden;
  clip-path: circle(0% at calc(100% - 2.5rem) 2.5rem);
  transition: clip-path 600ms var(--ease), opacity 280ms var(--ease), visibility 600ms;
}
.menu-overlay[hidden] { display: none; }
.menu-overlay.is-open { opacity: 1; visibility: visible; clip-path: circle(150% at calc(100% - 2.5rem) 2.5rem); }
.menu-overlay__nav { width: 100%; padding: 6.5rem var(--gutter) 3rem; }
.menu-overlay ul { list-style: none; margin: 0 0 2.5rem; padding: 0; }
.menu-overlay li {
  border-bottom: 1px solid rgba(241,245,241,0.14);
  opacity: 0; transform: translateY(16px);
  transition: opacity 460ms var(--ease), transform 460ms var(--ease);
  transition-delay: calc(var(--i) * 60ms);
}
.menu-overlay.is-open li { opacity: 1; transform: none; }
.menu-overlay li a {
  display: flex; align-items: baseline; gap: 1rem; padding: 1rem 0;
  font-family: var(--font-display); font-size: clamp(1.9rem, 8vw, 2.6rem);
  color: var(--on-dark);
  transition: color var(--t-fast), padding-left var(--t-med);
}
.menu-overlay li a:hover { color: var(--sage); padding-left: 0.6rem; }
.menu-overlay__num { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: var(--tracking); color: var(--sage); flex: none; }
.menu-overlay__foot {
  display: flex; flex-direction: column; align-items: flex-start; gap: 1rem;
  opacity: 0; transform: translateY(16px);
  transition: opacity 460ms var(--ease) 340ms, transform 460ms var(--ease) 340ms;
}
.menu-overlay.is-open .menu-overlay__foot { opacity: 1; transform: none; }
.menu-overlay__tel {
  font-family: var(--font-display); font-size: 1.45rem;
  color: var(--on-dark); transition: color var(--t-fast);
}
.menu-overlay__tel:hover { color: var(--sage); }
.menu-overlay__note { color: var(--on-dark-soft); font-size: 0.9rem; margin: 0; }


/* ═══ 06. HERO ═════════════════════════════════════════════════════════ */
.hero { padding-top: calc(var(--header-h) + clamp(2rem, 6vw, 4.5rem)); overflow: hidden; }

.hero__text { max-width: 46rem; text-align: center; margin-inline: auto; }
.hero__title {
  font-size: var(--fs-hero); font-weight: 300; line-height: 1.04;
  letter-spacing: -0.015em; margin-bottom: 0.35em;
  font-variation-settings: "SOFT" 60, "WONK" 1;
}
.hero__title em { font-style: normal; color: var(--accent); }
.hero__tagline {
  font-size: var(--fs-lede); color: var(--ink-soft);
  max-width: 34rem; margin-inline: auto; margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

.hero__art { margin-top: clamp(2rem, 5vw, 3.5rem); }
.hero__art img {
  width: 100%; max-width: 1400px; margin-inline: auto;
  border-radius: var(--radius) var(--radius) 0 0;
}

/* Entrance */
.hero__eyebrow, .hero__title, .hero__tagline, .hero__actions, .hero__art {
  opacity: 0; transform: translateY(20px);
  animation: riseIn 800ms var(--ease) forwards;
}
.hero__eyebrow { animation-delay: 60ms; }
.hero__title   { animation-delay: 150ms; }
.hero__tagline { animation-delay: 260ms; }
.hero__actions { animation-delay: 360ms; }
.hero__art     { animation-delay: 460ms; }
@keyframes riseIn { to { opacity: 1; transform: none; } }

/* Reassurance strip ───────────────────────────── */
.strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem 2rem;
  list-style: none; margin: 0; padding: 1.1rem var(--gutter);
  background: var(--surface-2);
  font-size: 0.9rem; color: var(--ink);
}
.strip li { display: inline-flex; align-items: center; gap: 0.55em; }
.strip__mark {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: none;
}


/* ═══ 07. GALLERY ══════════════════════════════════════════════════════ */
.shot-grid {
  display: grid; gap: clamp(1rem, 2.2vw, 1.75rem);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
}
.shot { margin: 0; cursor: pointer; }
.shot__frame {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-2);
  aspect-ratio: 3 / 4;
}
.shot__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.shot__frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(35,31,32,0) 55%, rgba(35,31,32,0.35) 100%);
  opacity: 0; transition: opacity var(--t-med);
}
.shot:hover .shot__frame img, .shot:focus-visible .shot__frame img { transform: scale(1.05); }
.shot:hover .shot__frame::after, .shot:focus-visible .shot__frame::after { opacity: 1; }

.shot__zoom {
  position: absolute; right: 0.75rem; bottom: 0.75rem; z-index: 2;
  width: 40px; height: 40px; display: grid; place-items: center;
  background: var(--bg); color: var(--accent); border-radius: 50%;
  opacity: 0; transform: translateY(8px);
  transition: opacity var(--t-med), transform var(--t-med);
}
.shot__zoom svg { width: 19px; height: 19px; }
.shot:hover .shot__zoom, .shot:focus-visible .shot__zoom { opacity: 1; transform: none; }

.shot figcaption { padding-top: 0.9rem; }
.shot figcaption h3 { font-size: 1.12rem; margin-bottom: 0.1em; }
.shot figcaption p { color: var(--muted); font-size: 0.88rem; margin: 0; }


/* ═══ 08. FABRICS OF THE DAY ═══════════════════════════════════════════
   Three of these show at a time; script.js picks which three from the
   date, so the section changes on its own every morning.
   ═══════════════════════════════════════════════════════════════════════ */
.fabrics__date {
  display: inline-block;
  margin: 0.35rem 0 0;
  padding: 0.35em 1em;
  background: var(--accent-soft);
  border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--accent-deep);
}

.fabric-grid {
  display: grid; gap: clamp(1.25rem, 2.6vw, 2rem);
  grid-template-columns: 1fr;
}
/* the three cloths sit side by side in one line from tablet width up */
@media (min-width: 720px) {
  .fabric-grid { grid-template-columns: repeat(3, 1fr); }
}
.fabric.is-hidden { display: none; }

.fabric {
  display: flex; flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(1rem, 2vw, 1.25rem);
}
.fabric__frame {
  overflow: hidden; border-radius: var(--radius-sm);
  background: var(--surface-2); aspect-ratio: 4 / 3;
  margin-bottom: 1.1rem;
}
.fabric__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.fabric:hover .fabric__frame img { transform: scale(1.04); }

.fabric__name { font-size: 1.24rem; margin-bottom: 0.3em; }
.fabric__desc { font-size: 0.94rem; color: var(--ink-soft); margin-bottom: 1.1rem; }

/* Clickable trivia ───────────────────────────── */
.trivia__btn {
  display: inline-flex; align-items: center; gap: 0.55em;
  margin-top: auto;
  padding: 0.5em 0.95em 0.5em 0.5em;
  align-self: flex-start;
  background: var(--bg);
  border: 1.5px solid var(--line); border-radius: 100px;
  font-size: 0.86rem; font-weight: 600; color: var(--accent-deep);
  transition: border-color var(--t-fast), background-color var(--t-fast), color var(--t-fast);
}
.trivia__btn:hover { border-color: var(--accent); background: var(--accent-soft); }
.trivia__icon {
  display: grid; place-items: center; flex: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--red); color: #fff;
  font-family: var(--font-display); font-size: 0.82rem; line-height: 1;
}
.trivia__chev {
  width: 8px; height: 8px; flex: none;
  border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform var(--t-med);
}
.trivia__btn[aria-expanded="true"] { border-color: var(--accent); background: var(--accent-soft); }
.trivia__btn[aria-expanded="true"] .trivia__chev { transform: rotate(225deg) translate(-2px, -2px); }

.trivia__body {
  margin: 0.85rem 0 0;
  padding: 0.9rem 1.05rem;
  background: var(--bg);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.9rem; color: var(--ink-soft);
}
.trivia__body[hidden] { display: none; }
.trivia__body em { font-style: normal; font-weight: 600; color: var(--ink); }

/* ═══ 09. HOW IT WORKS ═════════════════════════════════════════════════ */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: clamp(1rem, 2.2vw, 1.75rem);
  grid-template-columns: 1fr;
}
.step {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--sage);
  box-shadow: 0 18px 34px -26px rgba(44,75,79,0.55);
}
.step__num {
  position: absolute; top: clamp(1.5rem, 3vw, 2rem); right: clamp(1.5rem, 3vw, 2rem);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; color: var(--sage);
}
.step__icon {
  display: grid; place-items: center;
  width: 52px; height: 52px; margin-bottom: 1.1rem;
  border-radius: 50%; background: var(--accent-soft); color: var(--accent);
}
.step__icon svg { width: 27px; height: 27px; }
.step__title { font-size: 1.28rem; margin-bottom: 0.4em; }
.step__text { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }

/* Service area callout ───────────────────────── */
.area {
  display: grid; gap: 1.25rem;
  align-items: center;
  margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  background: var(--deep); color: var(--on-dark-soft);
  border-radius: var(--radius);
}
.area h3 { color: var(--on-dark); font-size: 1.3rem; margin-bottom: 0.3em; }
.area p { margin: 0; font-size: 0.95rem; }
.area__pin {
  display: grid; place-items: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(241,245,241,0.12); color: var(--sage);
}
.area__pin svg { width: 27px; height: 27px; }
.area .btn { justify-self: start; }


/* ═══ 10. REVIEWS ══════════════════════════════════════════════════════
   Real WhatsApp screenshots, pinned up as they came. Each keeps its own
   proportions rather than being cropped to a common frame, so nothing in
   the conversation gets cut off.
   ═══════════════════════════════════════════════════════════════════════ */
.notes {
  display: grid; gap: clamp(1.25rem, 2.6vw, 2rem);
  grid-template-columns: 1fr;
  align-items: start;
}
.note {
  margin: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.6rem;
  overflow: hidden;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.note img {
  width: 100%; height: auto;
  border-radius: var(--radius-sm);
  display: block;
}
.note:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px -28px rgba(35,31,32,0.55);
}

/* ═══ 11. CONTACT & FORM ═══════════════════════════════════════════════ */
.contact__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr; align-items: start; }

.phone {
  display: inline-flex; align-items: center; gap: 0.6em;
  margin: 1.5rem 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.4vw, 2.5rem);
  color: var(--ink);
  transition: color var(--t-fast);
}
.phone svg { width: 0.8em; height: 0.8em; color: var(--accent); }
.phone:hover { color: var(--accent); }

.contact__meta { margin-bottom: 1.5rem; }
.contact__meta p { margin: 0 0 0.35em; font-size: 0.95rem; color: var(--ink-soft); }
.contact__meta strong { display: inline-block; min-width: 4.2rem; color: var(--ink); font-weight: 600; }

.socials { list-style: none; display: flex; gap: 0.6rem; margin: 0; padding: 0; }
.socials a {
  display: grid; place-items: center; width: 44px; height: 44px;
  border: 1.5px solid var(--line); border-radius: 50%; color: var(--ink-soft);
  transition: background-color var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.socials svg { width: 20px; height: 20px; }
.socials a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-3px); }

.form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3.5vw, 2.25rem);
}
.form__title { font-size: 1.4rem; margin-bottom: 0.25em; }
.form__sub { color: var(--muted); font-size: 0.92rem; margin-bottom: 1.5rem; }

.field { margin-bottom: 1.1rem; }
.field label { display: block; margin-bottom: 0.4rem; font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.field label span { color: var(--red); }
.field input, .field textarea {
  width: 100%; padding: 0.8rem 0.95rem;
  background: var(--bg);
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-size: 0.97rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field textarea { resize: vertical; min-height: 92px; }
.field input::placeholder, .field textarea::placeholder { color: #A9A49C; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(86,135,140,0.16);
}
.field.has-error input, .field.has-error textarea { border-color: var(--red); }
.field__err { color: var(--red); font-size: 0.83rem; margin: 0.35rem 0 0; }

.form__status { margin: 0.9rem 0 0; font-size: 0.92rem; min-height: 1.4em; }
.form__status.is-ok  { color: var(--accent-deep); font-weight: 600; }
.form__status.is-err { color: var(--red); }
.form__note { margin: 0.9rem 0 0; font-size: 0.82rem; color: var(--muted); }


/* ═══ 12. FOOTER + CALL BUTTON ═════════════════════════════════════════ */
.site-footer {
  background: var(--deep); color: var(--on-dark-soft);
  padding-block: clamp(3rem, 7vw, 5rem) 1.75rem;
}
.footer__top {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(241,245,241,0.14);
}
.footer__logo { height: clamp(84px, 11vw, 108px); width: auto; }
.footer__line { margin-top: 1rem; max-width: 24rem; font-size: 0.95rem; }

.footer__contact { display: grid; gap: 0.35rem; justify-items: start; }
.footer__tel {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3.5vw, 1.9rem);
  color: var(--on-dark); transition: color var(--t-fast);
}
.footer__tel:hover { color: var(--sage); }
.footer__contact p { margin: 0; font-size: 0.92rem; }
.footer__contact .btn { margin-top: 0.9rem; }

.footer__nav { padding-block: 1.75rem; }
.footer__nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.75rem 2rem; }
.footer__nav a { font-size: 0.92rem; color: var(--on-dark-soft); transition: color var(--t-fast); }
.footer__nav a:hover { color: var(--sage); }

.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem 2rem;
  padding-top: 1.5rem; border-top: 1px solid rgba(241,245,241,0.14);
  font-size: 0.85rem;
}
.footer__legal { margin: 0; color: var(--on-dark); }
.footer__legal strong { font-weight: 600; }
.footer__copy { margin: 0; color: rgba(169,193,190,0.8); }

/* Floating call button, phones only, see §14 */
.call-fab {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 80;
  display: none; align-items: center; gap: 0.5em;
  padding: 0.85em 1.3em;
  background: var(--accent); color: #fff;
  border-radius: 100px; font-weight: 600; font-size: 0.95rem;
  box-shadow: 0 10px 26px -10px rgba(44,75,79,0.75);
}
.call-fab svg { width: 19px; height: 19px; }


/* ═══ 13. LIGHTBOX ═════════════════════════════════════════════════════ */
.lightbox { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: clamp(0.75rem, 3vw, 2rem); }
.lightbox[hidden] { display: none; }
.lightbox__backdrop {
  position: absolute; inset: 0; background: rgba(35,31,32,0.8);
  backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  opacity: 0; transition: opacity var(--t-med);
}
.lightbox.is-open .lightbox__backdrop { opacity: 1; }

.lightbox__panel {
  position: relative; width: min(660px, 100%); max-height: 92svh;
  background: var(--bg); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(18px) scale(0.985);
  transition: opacity var(--t-med), transform var(--t-med);
}
.lightbox.is-open .lightbox__panel { opacity: 1; transform: none; }

.lightbox__close {
  position: absolute; top: 0.7rem; right: 0.7rem; z-index: 3;
  width: 40px; height: 40px; display: grid; place-items: center;
  background: var(--bg); color: var(--ink); border-radius: 50%;
  transition: background-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.lightbox__close svg { width: 19px; height: 19px; }
.lightbox__close:hover { background: var(--accent); color: #fff; transform: rotate(90deg); }

.lightbox__media { margin: 0; background: var(--surface-2); min-height: 0; }
.lightbox__media img { width: 100%; height: 100%; max-height: 72svh; object-fit: contain; }

.lightbox__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem clamp(1rem, 3vw, 1.5rem);
  border-top: 1px solid var(--line);
}
.lightbox__title { font-size: 1.15rem; margin: 0 0 0.1em; }
.lightbox__note { font-size: 0.87rem; color: var(--muted); margin: 0; }
.lightbox__nav { display: flex; align-items: center; gap: 0.5rem; flex: none; }
.lightbox__arrow {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1.5px solid var(--line); border-radius: 50%; color: var(--ink-soft);
  transition: border-color var(--t-fast), color var(--t-fast), background-color var(--t-fast);
}
.lightbox__arrow:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.lightbox__count { font-size: 0.84rem; color: var(--muted); min-width: 3.2em; text-align: center; }


/* ═══ 14. REVEALS & UTILITIES ══════════════════════════════════════════
   Elements are hidden only once script.js confirms it can bring them
   back (it adds .js-reveals to <html>). If JS is blocked or fails, the
   page renders fully visible.
   ═══════════════════════════════════════════════════════════════════════ */
.js-reveals .reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.js-reveals .reveal.is-visible { opacity: 1; transform: none; }
.js-reveals .shot-grid .reveal:nth-child(3n+2) { transition-delay: 80ms; }
.js-reveals .shot-grid .reveal:nth-child(3n+3) { transition-delay: 160ms; }
.js-reveals .steps .reveal:nth-child(2) { transition-delay: 90ms; }
.js-reveals .steps .reveal:nth-child(3) { transition-delay: 180ms; }
.js-reveals .steps .reveal:nth-child(4) { transition-delay: 270ms; }
.js-reveals .notes .reveal:nth-child(2) { transition-delay: 100ms; }
.js-reveals .notes .reveal:nth-child(3) { transition-delay: 200ms; }


/* ═══ 15. RESPONSIVE ═══════════════════════════════════════════════════
   Mobile-first: everything above is the phone layout.
   ═══════════════════════════════════════════════════════════════════════ */
@media (min-width: 600px) {
  .steps  { grid-template-columns: repeat(2, 1fr); }
  .notes { grid-template-columns: repeat(2, 1fr); }
  .area   { grid-template-columns: auto 1fr auto; }
  .area .btn { justify-self: end; }
}

@media (min-width: 900px) {
  .notes { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1000px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
  .contact__grid { grid-template-columns: 1fr 0.9fr; }
  .footer__top { grid-template-columns: 1fr auto; align-items: start; }
  .footer__contact { justify-items: end; text-align: right; }
}

/* Below 1000px the hamburger takes over */
@media (max-width: 999.98px) {
  :root { --header-h: 92px; }
  .nav { display: none; }
  .hamburger { display: block; }
  .site-header.is-scrolled .site-header__inner { height: 76px; }
}

/* Phones: show the floating call button, give the page room for it */
@media (max-width: 700px) {
  .call-fab { display: inline-flex; }
  .site-footer { padding-bottom: 5.5rem; }
  .hero__actions .btn { width: 100%; }
  .strip { gap: 0.5rem 1.25rem; font-size: 0.85rem; }
}

/* Short screens: keep the whole mobile menu on one page */
@media (max-height: 700px) {
  .menu-overlay__nav { padding-top: 5rem; }
  .menu-overlay li a { padding: 0.75rem 0; font-size: clamp(1.6rem, 7vw, 2.1rem); }
}


/* ═══ 16. REDUCED MOTION & PRINT ═══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal, .js-reveals .reveal { opacity: 1 !important; transform: none !important; }
  .hero__eyebrow, .hero__title, .hero__tagline, .hero__actions, .hero__art { opacity: 1; transform: none; }
}

@media print {
  .site-header, .menu-overlay, .lightbox, .call-fab, .shot__zoom { display: none !important; }
  body { color: #000; background: #fff; }
  .reveal, .js-reveals .reveal { opacity: 1 !important; transform: none !important; }
}
