/* =========================================================
   LashArtTR — single page site styles
   Fonts: Playfair Display (headings), Alex Brush (script accents),
          Space Mono (body copy / labels)
   ========================================================= */

:root {
  --ink: #111111;
  --paper: #ffffff;
  --panel: #f2f2f2;
  --muted: #5c5c5c;
  --line: #e3e3e3;
  --max: 760px;
  --nav-h: 64px;
}

* { box-sizing: border-box; }

body {
  padding-top: var(--nav-h);
}

section[id] {
  scroll-margin-top: var(--nav-h);
}

/* ---------- sticky nav ---------- */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: var(--ink);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.site-nav-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
}

.site-nav-logo img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav-links a {
  color: #fff;
  text-decoration: none;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.site-nav-links a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-nav.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-nav.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-nav.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 640px) {
  :root {
    --nav-h: 56px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav-links {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .site-nav.nav-open .site-nav-links {
    max-height: 300px;
  }

  .site-nav-links a {
    padding: 15px 24px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Space Mono", "Courier New", monospace;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.site {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- shared type ---------- */

.script {
  font-family: "Alex Brush", cursive;
  font-weight: 400;
  line-height: 1;
}

.section-title {
  text-align: center;
  margin: 0 0 28px;
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
}

.section-title .script {
  font-size: 1.35em;
  margin-right: 6px;
  vertical-align: -0.12em;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 11px;
  color: var(--muted);
}

section {
  padding: 56px 0;
}

section + section {
  border-top: 1px solid var(--line);
}

/* ---------- hero ---------- */

.hero {
  padding-top: 64px;
  text-align: center;
}

.hero .brand-logo {
  width: 56px;
  height: auto;
  margin: 0 auto 8px;
}

.hero .brand {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: clamp(56px, 14vw, 104px);
  letter-spacing: 0.02em;
  line-height: 0.95;
}

.hero .by-line {
  font-family: "Alex Brush", cursive;
  font-size: clamp(32px, 8vw, 52px);
  margin-top: -6px;
}

.hero .tagline {
  margin: 10px 0 0;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  color: var(--ink);
}

.hero .location {
  margin-top: 18px;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  line-height: 1.8;
  color: var(--muted);
}

.hero-whatsapp {
  margin-top: 14px;
  text-align: center;
}

.hero-whatsapp a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  text-decoration: none;
  font-size: 12.5px;
  letter-spacing: 0.05em;
}

.hero-whatsapp a:hover {
  text-decoration: underline;
}

.hero-whatsapp svg {
  width: 16px;
  height: 16px;
}

/* ---------- about / technician ---------- */

.about {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: center;
}

.about-photo {
  position: relative;
  text-align: center;
}

.about-photo .eyebrow {
  display: block;
  margin-bottom: 14px;
}

.about-photo .frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 120px 120px 8px 8px;
  overflow: hidden;
  background: linear-gradient(160deg, #2a2a2a, #0a0a0a);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-photo .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo .frame svg {
  width: 46%;
  height: 46%;
  opacity: 0.55;
}

.about-text .greeting {
  font-family: "Alex Brush", cursive;
  font-size: 34px;
  display: block;
  line-height: 1;
}

.about-text .greeting-main {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(30px, 6vw, 44px);
  margin: 2px 0 14px;
}

.about-text p {
  font-size: 13px;
  color: #222;
  text-align: justify;
  margin: 0;
}

/* ---------- hours + contact ---------- */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.panel-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.panel-item {
  background: var(--panel);
  padding: 14px 16px;
  text-align: center;
}

.panel-item strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.panel-item span {
  font-size: 12px;
  color: var(--muted);
}

.contact-panel {
  background: var(--panel);
  padding: 8px 16px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  font-size: 12.5px;
}

.contact-row + .contact-row {
  border-top: 1px solid #e4e4e4;
}

.contact-row .icon {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-row .icon svg {
  width: 15px;
  height: 15px;
}

.contact-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-row small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10.5px;
  letter-spacing: 0.04em;
}

/* ---------- map ---------- */

.map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  filter: grayscale(1) contrast(1.05) brightness(0.97);
  border: 1px solid var(--line);
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- policy cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  background: var(--panel);
  padding: 22px 14px 24px;
  text-align: center;
}

.card .icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card .icon svg {
  width: 22px;
  height: 22px;
}

.card .icon {
  position: relative;
}

.card .icon img {
  position: absolute;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.icon-classic img {
  width: 26px;
  height: 26px;
}

.icon-volume img {
  width: 17px;
  height: 17px;
}

.icon-volume img:nth-child(1) { transform: translate(-7px, -4px) rotate(-8deg); opacity: 0.55; }
.icon-volume img:nth-child(2) { transform: translate(0, 2px); }
.icon-volume img:nth-child(3) { transform: translate(7px, -4px) rotate(8deg); opacity: 0.55; }

.icon-hybrid img:nth-child(1) { width: 22px; height: 22px; transform: translate(-5px, 1px); opacity: 0.6; }
.icon-hybrid img:nth-child(2) { width: 16px; height: 16px; transform: translate(6px, -3px) rotate(10deg); }

.icon-lift img {
  width: 26px;
  height: 26px;
  transform: rotate(-32deg);
}

.card h3 {
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
}

.card p {
  font-size: 11.5px;
  color: var(--muted);
  margin: 0;
}

.cards-2 {
  grid-template-columns: repeat(2, 1fr);
}

.cards-2 .card {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

/* ---------- portfolio ---------- */

.section-intro {
  text-align: center;
  margin: -14px 0 28px;
  font-size: 12.5px;
  color: var(--muted);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.portfolio-item {
  aspect-ratio: 1 / 1;
  background: var(--panel);
  overflow: hidden;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.portfolio-item:hover img {
  transform: scale(1.06);
}

/* ---------- footer ---------- */

.site-footer {
  text-align: center;
  padding: 32px 0 48px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.site-footer a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* ---------- responsive ---------- */

@media (max-width: 640px) {
  .whatsapp-float {
    width: 46px;
    height: 46px;
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  .about {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-photo .frame {
    max-width: 240px;
    margin: 0 auto;
  }

  .about-text p {
    text-align: left;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-2 {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
