:root {
  --bg: #061008;
  --bg-elevated: #0b1610;
  --bg-card: #101f16;
  --text: #eef8f1;
  --text-muted: #8fa898;
  --accent: #22c55e;
  --accent-2: #86efac;
  --accent-dark: #052e16;
  --accent-soft: rgba(34, 197, 94, 0.18);
  --accent-glow: rgba(34, 197, 94, 0.42);
  --border: rgba(255, 255, 255, 0.09);
  --glass: rgba(11, 22, 16, 0.78);
  --radius: 16px;
  --radius-lg: 24px;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-display: "Instrument Sans", system-ui, sans-serif;
  --header-h: 76px;
  --container: min(1160px, 92vw);
  --shadow-lg: 0 28px 70px rgba(0, 0, 0, 0.55);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-head.align-left {
  text-align: left;
  margin-left: 0;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  font-weight: 700;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

.section-head.light h2 {
  color: var(--text);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(6, 16, 8, 0.55);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header.is-scrolled {
  background: rgba(6, 16, 8, 0.94);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
}

.logo:hover {
  text-decoration: none;
}

.logo-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--accent-dark);
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
}

.logo-text {
  font-weight: 600;
  font-size: 0.95rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.main-nav a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: var(--text);
  text-decoration: none;
}

.nav-cta {
  color: var(--accent-dark) !important;
  background: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: 999px;
}

.nav-cta:hover {
  filter: brightness(1.08);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s, opacity 0.25s;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--header-h) + 2.5rem) 0 4rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 16, 8, 0.94) 0%, rgba(6, 16, 8, 0.8) 42%, rgba(6, 16, 8, 0.58) 100%),
    radial-gradient(circle at 80% 20%, var(--accent-glow), transparent 45%);
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  font-weight: 800;
}

.hero h1 span {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 1rem;
  color: var(--text);
}

.hero-text {
  color: var(--text-muted);
  margin: 0 0 2rem;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s, filter 0.15s, background 0.15s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-dark);
}

.btn-primary:hover {
  filter: brightness(1.08);
}

.btn-outline {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.btn-outline:hover {
  border-color: var(--text-muted);
  background: rgba(255, 255, 255, 0.06);
}

.btn-glass {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}

.glass {
  background: var(--glass);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
}

.hero-stats strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--text);
}

.hero-stats span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
}

.hero-photo-stack {
  position: relative;
  margin: 0 0 1rem;
  padding-right: 2rem;
}

.hero-photo-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-photo-accent {
  position: absolute;
  right: 0;
  bottom: -1.25rem;
  width: 46%;
  border-radius: var(--radius);
  border: 3px solid var(--bg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.hero-card {
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-lg);
  max-width: 320px;
  margin-left: auto;
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: floatY 2.2s ease-in-out infinite;
}

.hero-scroll span::after {
  content: "";
  display: block;
  width: 1px;
  height: 36px;
  margin: 0.5rem auto 0;
  background: linear-gradient(var(--accent), transparent);
}

@keyframes floatY {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

.hero-card-label {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.hero-card-main {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin: 0.25rem 0 0;
}

.hero-card-sub {
  margin: 0;
  color: var(--text-muted);
}

.hero-card hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}

.hero-card-phone a {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

/* Services */
.services {
  background: var(--bg-elevated);
}

.cards-grid.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.35s, box-shadow 0.35s;
}

.service-card:hover {
  border-color: rgba(34, 197, 94, 0.45);
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
}

.service-card.featured {
  border-color: rgba(34, 197, 94, 0.5);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.15);
}

.service-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-media img {
  transform: scale(1.06);
}

.service-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(7, 9, 13, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text);
}

.service-body {
  padding: 1.5rem 1.65rem 1.75rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.65rem;
  line-height: 1.35;
}

.service-body > p {
  color: var(--text-muted);
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.service-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.service-card li + li {
  margin-top: 0.4rem;
}

/* Perks */
.perks {
  padding: 2.5rem 0;
  background: linear-gradient(90deg, var(--accent-soft), transparent);
  border-block: 1px solid var(--border);
}

.perks-title {
  text-align: center;
  font-weight: 600;
  margin: 0 0 1rem;
}

.perks-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
  color: var(--text-muted);
}

.perks-list li::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 700;
}

/* Atelier */
.atelier {
  background: var(--bg);
}

.atelier-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.atelier-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.atelier-copy > p {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.atelier-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.atelier-points li {
  padding-left: 1.75rem;
  position: relative;
  color: var(--text);
  font-weight: 500;
}

.atelier-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 12px var(--accent-glow);
}

.atelier-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.85rem;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 160px;
  transition: transform 0.55s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-large {
  grid-column: 1 / -1;
}

.gallery-large img {
  min-height: 260px;
  max-height: 340px;
}

/* Why */
.section.why {
  position: relative;
  padding-top: 0;
  overflow: hidden;
}

.why-banner {
  position: relative;
  height: 200px;
}

.why-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.85);
}

.why-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, var(--bg) 92%);
}

.why-wrap {
  position: relative;
  margin-top: -4rem;
  z-index: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.why-item {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: rgba(16, 31, 22, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  transition: transform 0.25s, border-color 0.25s;
}

.why-item:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 197, 94, 0.35);
}

.why-item h3 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.why-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Pricing */
.pricing {
  background: var(--bg-elevated);
}

.pricing-block + .pricing-block {
  margin-top: 3rem;
}

.pricing-category {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.pricing-note,
.pricing-footnote {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0 0 1rem;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

thead {
  background: var(--bg-card);
}

th,
td {
  padding: 1rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.badge-free {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

/* Values */
.values {
  background:
    radial-gradient(circle at 100% 0%, var(--accent-glow), transparent 40%),
    var(--bg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.values-grid article {
  padding: 1.75rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.value-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 700;
}

.values-grid h3 {
  font-size: 1.05rem;
  margin: 0.5rem 0;
  font-family: var(--font-display);
}

.values-grid p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Testimonial */
.testimonial {
  position: relative;
  text-align: center;
  padding: clamp(5rem, 10vw, 7rem) 0;
  overflow: hidden;
}

.testimonial-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.testimonial-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 16, 8, 0.88);
}

.testimonial-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-inline: auto;
}

.stars {
  color: #86efac;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.35;
}

.testimonial-sub {
  margin: 1.25rem 0 2rem;
  color: var(--text-muted);
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.testimonial-card {
  margin: 0;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-scroll {
    animation: none;
  }
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 1.15rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.contact-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-list strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.contact-list span,
.contact-list a {
  color: var(--text);
  font-size: 1.05rem;
}

.contact-list a {
  font-weight: 600;
  text-decoration: none;
}

.contact-list a:hover {
  color: var(--accent);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.rdv-form {
  margin-top: 0.5rem;
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.rdv-form h3 {
  font-family: var(--font-display);
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.rdv-hint {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.rdv-form label {
  display: block;
  margin-bottom: 1rem;
}

.rdv-form label span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.rdv-form input,
.rdv-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.rdv-form input:focus,
.rdv-form select:focus {
  outline: 2px solid var(--accent-soft);
  border-color: rgba(255, 107, 44, 0.5);
}

.btn-block {
  width: 100%;
  margin-top: 0.5rem;
  border: none;
  cursor: pointer;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-lg);
}

.map-photo {
  height: 140px;
  overflow: hidden;
}

.map-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.map-link {
  display: block;
  padding: 0.85rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  background: var(--bg-elevated);
  text-decoration: none;
}

.map-link:hover {
  background: var(--bg-card);
  text-decoration: none;
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: #080a0e;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-inner p {
  margin: 0;
}

.back-top {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
}

.back-top:hover {
  color: var(--accent);
}

/* Float call */
.float-call {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 28px var(--accent-glow);
  text-decoration: none;
  transition: transform 0.2s;
}

.float-call:hover {
  transform: scale(1.06);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .contact-grid,
  .atelier-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .hero-photo-accent {
    width: 40%;
  }

  .hero-card {
    margin: 0;
    max-width: none;
  }

  .hero-scroll {
    display: none;
  }

  .cards-grid.three {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1.5rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-header.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
