:root {
  --color-ink: #1b191a;
  --color-ink-soft: #1b191a;
  --color-muted: #1b191a;
  --color-taupe: #1b191a;
  --color-taupe-deep: #1b191a;
  --color-accent: #e7dec3;
  --color-accent-deep: #d4c7a4;
  --color-ivory: #ffffff;
  --color-cream: #ffffff;
  --color-night: #141210;
  --color-night-elevated: #1e1b19;
  --color-night-line: rgba(182, 182, 182, 0.22);
  --color-light-line: rgba(27, 25, 26, 0.12);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Outfit", system-ui, sans-serif;
  --header-h: 5rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --panel-w: min(26rem, 92vw);
}

html.dark {
  --color-ink-soft: #b6b6b6;
  --color-muted: #b6b6b6;
  --color-taupe: #b6b6b6;
  --color-taupe-deep: #b6b6b6;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: #ffffff;
  color: var(--color-ink);
  max-width: 100vw;
  transition: background-color 0.35s var(--ease-out), color 0.35s var(--ease-out);
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

html:not(.dark) body,
html:not(.dark) .site-header,
html:not(.dark) .mobile-drawer,
html:not(.dark) .contact-panel,
html:not(.dark) .dropdown-menu,
html:not(.dark) footer {
  background-color: #ffffff;
}

html.dark body {
  background-color: var(--color-night);
  color: var(--color-muted);
}

html.dark h1,
html.dark h2,
html.dark h3,
html.dark .brand-mark {
  color: #ffffff;
}

.font-display {
  font-family: var(--font-display);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background-color: #ffffff;
}

html.dark .site-header {
  background-color: var(--color-night);
}

.brand-mark {
  letter-spacing: 0.02em;
  font-weight: 600;
}

.nav-link {
  position: relative;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: inherit;
  transition: opacity 0.25s var(--ease-out);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

html:not(.dark) .nav-link,
html:not(.dark) .nav-link[aria-current="page"],
html:not(.dark) .nav-link.is-active {
  color: #1b191a !important;
}

html.dark .nav-link,
html.dark .nav-link[aria-current="page"],
html.dark .nav-link.is-active {
  color: #ffffff !important;
}

/*
  Global button system — use these classes for all current and future buttons.
  .btn-primary  = filled #E7DEC3
  .btn-ghost    = outline; black in light, white in dark
*/
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  height: 2.75rem;
  padding: 0 1.4rem;
  border: 1px solid var(--color-accent);
  background: var(--color-accent);
  color: var(--color-ink);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 0.25s var(--ease-out), color 0.25s var(--ease-out), border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--color-accent-deep);
  border-color: var(--color-accent-deep);
  color: var(--color-ink);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(27, 25, 26, 0.12);
}

.btn-primary:active {
  transform: translateY(0);
  background: #cbbd96;
  border-color: #cbbd96;
  box-shadow: none;
}

html.dark .btn-primary:hover,
html.dark .btn-primary:focus-visible {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--color-ink);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

html.dark .btn-primary:active {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  height: 2.75rem;
  padding: 0 1.4rem;
  border: 1px solid #1b191a;
  background: transparent;
  color: #1b191a;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 0.25s var(--ease-out), color 0.25s var(--ease-out), border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-ink);
  transform: translateY(-1px);
}

.btn-ghost:active {
  transform: translateY(0);
  background: var(--color-accent-deep);
  border-color: var(--color-accent-deep);
}

html.dark .btn-ghost {
  border-color: #ffffff;
  color: #ffffff;
}

html.dark .btn-ghost:hover,
html.dark .btn-ghost:focus-visible {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-ink);
}

html.dark .btn-ghost:active {
  background: var(--color-accent-deep);
  border-color: var(--color-accent-deep);
}

/* Outline button on dark surfaces (hero, overlays) — always white */
.btn-ghost-on-dark {
  border-color: #ffffff;
  color: #ffffff;
}

.btn-ghost-on-dark:hover,
.btn-ghost-on-dark:focus-visible {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-ink);
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  height: 2.75rem;
  width: 2.75rem;
  padding: 0 0.75rem;
  border: 1px solid var(--color-light-line);
  background: transparent;
  color: inherit;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color 0.25s var(--ease-out), background-color 0.25s var(--ease-out), color 0.25s var(--ease-out);
}

.icon-btn.icon-btn-wide {
  width: auto;
  gap: 0.4rem;
  padding-inline: 0.9rem;
}

.icon-btn.icon-btn-bare {
  width: 2.25rem;
  min-width: 2.25rem;
  height: 2.25rem;
  min-height: 2.25rem;
  padding: 0;
  border: none;
  background: transparent;
}

.icon-btn.icon-btn-menu {
  width: 2.75rem;
  min-width: 2.75rem;
  height: 2.75rem;
  min-height: 2.75rem;
  padding: 0;
}

.icon-btn.icon-btn-menu svg {
  width: 22px;
  height: 22px;
}

html.dark .icon-btn {
  border-color: var(--color-night-line);
}

html.dark .icon-btn.icon-btn-bare {
  border: none;
}

.icon-btn:hover,
.icon-btn:focus-visible {
  border-color: var(--color-accent);
  background: rgba(231, 222, 195, 0.28);
  color: var(--color-ink);
}

.icon-btn.icon-btn-bare:hover,
.icon-btn.icon-btn-bare:focus-visible {
  border: none;
  background: rgba(231, 222, 195, 0.18);
}

html.dark .icon-btn:hover,
html.dark .icon-btn:focus-visible {
  color: var(--color-accent);
  background: rgba(231, 222, 195, 0.12);
}

.header-actions-cluster {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

@media (min-width: 768px) {
  .header-actions-cluster {
    gap: 0.5rem;
  }
}

@media (min-width: 1024px) {
  .header-actions-cluster {
    gap: 0.65rem;
  }
}

.header-actions-cluster .btn-primary,
.header-actions-cluster .icon-btn:not(.icon-btn-bare) {
  height: 2.75rem;
  min-height: 2.75rem;
}

.header-actions-cluster .material-symbols-outlined {
  font-size: 1.15rem;
  line-height: 1;
}

.header-bar {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  gap: 0.75rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  margin-left: 0;
  margin-right: 0;
  justify-content: space-between;
}

/* Phone */
@media (max-width: 639px) {
  .header-bar {
    gap: 0.5rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .header-rdv-btn {
    display: none !important;
  }
}

/* Tablet + mid screens (keeps compact header through 1366) */
@media (min-width: 640px) and (max-width: 1499px) {
  .header-bar {
    gap: 1rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .header-right {
    margin-left: 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1499px) {
  .header-bar {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* Full desktop — only when nav fits cleanly */
@media (min-width: 1500px) {
  .header-bar {
    gap: 2rem;
    padding-left: 72px;
    padding-right: 72px;
  }

  .header-right {
    margin-left: 2rem;
  }
}

@media (min-width: 1680px) {
  .header-bar {
    padding-left: 120px;
    padding-right: 120px;
  }
}

.header-brand {
  flex: 1 1 auto;
  min-width: 0;
  justify-content: flex-start;
  text-align: left;
}

.header-brand .brand-mark {
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
}

.header-right {
  flex: 0 0 auto;
  margin-left: 0.75rem;
  padding-left: 0;
}

/* Floating storefront: phone only */
.floating-storefront {
  position: fixed;
  right: 1rem;
  bottom: 1.25rem;
  z-index: 45;
  display: none;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid rgba(231, 222, 195, 0.55);
  background: var(--color-accent);
  color: var(--color-ink);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  animation: float-bounce 1.8s ease-in-out infinite;
}

@media (max-width: 767px) {
  .floating-storefront {
    display: inline-flex;
  }
}

@media (min-width: 1500px) {
  .floating-storefront {
    display: none !important;
  }
}

.floating-storefront .material-symbols-outlined {
  font-size: 1.45rem;
  line-height: 1;
}

.floating-storefront:hover,
.floating-storefront:focus-visible {
  background: var(--color-accent-deep);
}

@keyframes float-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-storefront {
    animation: none;
  }
}

/* Mobile drawer layout */
.mobile-drawer {
  padding: 0.65rem 0.75rem 1rem;
}

.mobile-drawer-head {
  min-height: 2.75rem;
}

.mobile-drawer-close {
  width: 2.5rem !important;
  min-width: 2.5rem !important;
  height: 2.5rem !important;
  min-height: 2.5rem !important;
}

.mobile-drawer-nav {
  margin-top: 0.75rem;
}

.mobile-drawer-footer {
  margin-top: 0.75rem !important;
  padding-top: 0.85rem !important;
}

.mobile-drawer-link,
.mobile-drawer-footer {
  color: var(--color-ink);
}

.mobile-drawer-sublink {
  color: #555;
}

html.dark .mobile-drawer-link,
html.dark .mobile-drawer-footer,
html.dark .mobile-drawer .brand-mark {
  color: #ffffff;
}

html.dark .mobile-drawer-sublink {
  color: rgba(255, 255, 255, 0.72);
}

/* Prevent page-level horizontal scroll on phones */
@media (max-width: 767px) {
  main,
  footer {
    overflow-x: clip;
  }

  .section-pad {
    padding-block: clamp(3rem, 10vw, 5rem);
  }

  .hero-plane .font-display {
    font-size: calc(clamp(1.85rem, 8vw, 2.6rem) + 5px);
    word-break: normal;
  }

  .hero-plane .reveal.mt-5 {
    margin-top: 0.75rem;
  }

  .hero-plane .reveal.mt-4 {
    margin-top: 0.5rem;
  }

  .hero-cta-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.5rem;
    width: 100%;
  }

  .hero-cta-row .btn-primary,
  .hero-cta-row .btn-ghost {
    flex: 1 1 0;
    min-width: 0;
    height: auto;
    min-height: 2.55rem;
    padding: 0.55rem 0.55rem;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .hero-cta-row .material-symbols-outlined {
    font-size: 1rem;
  }

  .hero-eyebrow {
    white-space: nowrap;
    font-size: 0.45rem;
    letter-spacing: 0.05em;
    overflow: visible;
    text-overflow: clip;
    max-width: none;
  }

  .home-cta-actions {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
  }

  .home-cta-actions .btn-primary,
  .home-cta-actions .btn-ghost {
    flex: 1 1 0;
    min-width: 0;
    height: auto;
    min-height: 2.55rem;
    padding: 0.55rem 0.55rem;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .btn-primary,
  .btn-ghost {
    max-width: 100%;
  }

  .gallery-mosaic {
    gap: 0.5rem;
  }
}

.header-right .nav-link {
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

@media (min-width: 1280px) {
  .header-right .nav-link {
    font-size: 0.88rem;
  }
}

.hero-mobile-photo-section {
  display: none;
}

.hero-plane {
  min-height: min(92vh, 54rem);
  background-image: var(--hero-photo);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-petals,
.hero-bandeau {
  display: none;
  pointer-events: none;
}

.hero-scrim {
  background:
    linear-gradient(120deg, rgba(20, 18, 16, 0.78) 10%, rgba(20, 18, 16, 0.35) 55%, rgba(20, 18, 16, 0.55) 100%),
    linear-gradient(to top, rgba(20, 18, 16, 0.7), transparent 45%);
}

/* PC hero: empty left, bandeau right, soft petals full background */
@media (min-width: 1024px) {
  .hero-plane {
    background-image: none;
    background-color: #141210;
    align-items: center;
  }

  .hero-petals {
    display: block;
    z-index: 1;
    background-image: var(--hero-petals);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    mix-blend-mode: screen;
  }

  .hero-bandeau {
    display: block;
    z-index: 2;
    width: min(78vw, 72rem);
    max-width: 78%;
  }

  .hero-bandeau img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      transparent 6%,
      rgba(0, 0, 0, 0.08) 14%,
      rgba(0, 0, 0, 0.28) 22%,
      rgba(0, 0, 0, 0.55) 29%,
      rgba(0, 0, 0, 0.85) 34%,
      #000 37%,
      #000 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      transparent 6%,
      rgba(0, 0, 0, 0.08) 14%,
      rgba(0, 0, 0, 0.28) 22%,
      rgba(0, 0, 0, 0.55) 29%,
      rgba(0, 0, 0, 0.85) 34%,
      #000 37%,
      #000 100%
    );
  }

  .hero-scrim {
    z-index: 3;
    background: linear-gradient(
      90deg,
      rgba(20, 18, 16, 0.68) 0%,
      rgba(20, 18, 16, 0.28) 28%,
      rgba(20, 18, 16, 0.08) 48%,
      transparent 62%
    );
  }

  .hero-copy {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .hero-copy .font-display,
  .hero-copy .reveal.mt-5,
  .hero-copy .reveal.mt-4,
  .hero-cta-row {
    max-width: 34rem;
  }
}

.hero-mobile-cta,
.hero-phone-alt-cta {
  display: none !important;
}

/* Phone: image + buttons joined, copy under — must follow base/desktop rules */
@media (max-width: 767px) {
  .hero-stack {
    display: flex;
    flex-direction: column;
  }

  .hero-mobile-photo-section {
    display: block;
    position: relative;
    width: 100%;
    line-height: 0;
    background: #141210;
  }

  .hero-mobile-photo-section img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
  }

  .hero-mobile-cta {
    display: flex !important;
    flex-wrap: nowrap;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    margin: 0;
    padding: 0.75rem 1rem;
    box-sizing: border-box;
    gap: 0.5rem;
  }

  /* RDV on image: black + brand text, hover invert */
  .hero-mobile-cta .btn-primary {
    background: #1b191a;
    border-color: #1b191a;
    color: var(--color-accent);
    box-shadow: none;
  }

  .hero-mobile-cta .btn-primary:hover,
  .hero-mobile-cta .btn-primary:focus-visible {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #1b191a;
    box-shadow: none;
  }

  /* Call btn on image: brand fill, brand-black text/icon */
  .hero-mobile-cta .btn-ghost-on-dark {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-ink) !important;
  }

  .hero-mobile-cta .btn-ghost-on-dark .material-symbols-outlined {
    color: var(--color-ink) !important;
  }

  .hero-mobile-cta .btn-ghost-on-dark:hover,
  .hero-mobile-cta .btn-ghost-on-dark:focus-visible {
    background: #1b191a;
    border-color: #1b191a;
    color: var(--color-accent) !important;
  }

  .hero-mobile-cta .btn-ghost-on-dark:hover .material-symbols-outlined,
  .hero-mobile-cta .btn-ghost-on-dark:focus-visible .material-symbols-outlined {
    color: var(--color-accent) !important;
  }

  .hero-desktop-cta {
    display: none !important;
  }

  .hero-phone-alt-cta {
    display: flex !important;
    flex-wrap: nowrap;
    margin-top: 1.15rem !important;
    gap: 0.5rem;
  }

  .hero-plane {
    min-height: 0;
    align-items: stretch;
    justify-content: flex-start;
    background-image: none;
    background-color: #141210;
  }

  .hero-petals {
    display: block;
    z-index: 1;
    background-image: var(--hero-petals);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.08;
    mix-blend-mode: screen;
  }

  .hero-scrim {
    z-index: 3;
    background: rgba(20, 18, 16, 0.45);
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    padding-top: 0.625rem;
    padding-bottom: 2.75rem;
    text-align: left;
  }

  .hero-copy .hero-eyebrow {
    margin-top: 0;
  }

  .hero-copy .font-display {
    margin-top: 0.85rem;
  }

  /* Light mode: phone text block follows page (white) */
  html:not(.dark) .hero-plane {
    background-color: #ffffff;
  }

  html:not(.dark) .hero-scrim {
    background: rgba(255, 255, 255, 0.2);
  }

  html:not(.dark) .hero-petals {
    opacity: 0.14;
    mix-blend-mode: multiply;
  }

  html:not(.dark) .hero-plane .font-display {
    color: var(--color-ink);
  }

  html:not(.dark) .hero-copy .reveal.mt-5 {
    color: rgba(27, 25, 26, 0.85);
  }

  html:not(.dark) .hero-copy .reveal.mt-4 {
    color: rgba(27, 25, 26, 0.7);
  }

  html:not(.dark) .hero-eyebrow {
    color: rgba(27, 25, 26, 0.55);
  }

  html:not(.dark) .hero-phone-alt-cta .btn-ghost-on-dark {
    border-color: rgba(27, 25, 26, 0.35);
    color: var(--color-ink);
  }
}

.section-pad {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.home-services-section {
  background-color: #ffffff;
  padding-top: clamp(2rem, 4vw, 3.5rem);
}

html.dark .home-services-section {
  background-color: var(--color-night-elevated);
}

.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.service-tile {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
}

.service-tile img {
  transition: transform 0.8s var(--ease-out);
}

.service-tile:hover img,
.service-tile.is-cta-open img {
  transform: scale(1.05);
}

.service-card-summary {
  font-size: 0.9rem; /* ~text-xs + 2-3px */
  line-height: 1.45;
}

.service-card-cta {
  opacity: 0;
  transform: translateY(-0.75rem);
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.service-tile:hover .service-card-cta,
.service-tile.is-cta-open .service-card-cta {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.service-rdv-btn {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.product-card {
  border: 1px solid var(--color-light-line);
  background: rgba(255, 255, 255, 0.45);
  transition: border-color 0.3s var(--ease-out), background-color 0.3s var(--ease-out);
}

html.dark .product-card {
  border-color: var(--color-night-line);
  background: var(--color-night-elevated);
}

.product-card[data-open="true"] {
  border-color: var(--color-accent);
}

.product-details-preview {
  display: block;
}
.product-card[data-open="true"] .product-details-preview {
  display: none;
}

.product-details {
  display: none;
}

.product-card[data-open="true"] .product-details {
  display: block;
}

.product-details-inner {
  overflow: hidden;
}

.product-voir-inline {
  display: inline;
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.product-oos-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  color: #dc2626;
  background: #fff;
  border: 1px solid #dc2626;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
}

.product-price-badge {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  z-index: 2;
  max-width: calc(100% - 7.5rem);
  padding: 0.2rem 0.55rem;
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-ink, #1a1a1a);
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

html.dark .product-price-badge {
  background: rgba(20, 20, 20, 0.88);
  color: var(--color-cream, #f5f0ea);
}

.product-buy-btn {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 2;
  min-height: 2.35rem !important;
  height: 2.35rem !important;
  padding-inline: 0.9rem !important;
  font-size: 0.68rem !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.product-buy-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}

.product-buy-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.product-buy-popup {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 90;
  width: min(22rem, calc(100vw - 2rem));
  padding: 1.5rem 1.35rem 1.4rem;
  border: 1px solid var(--color-light-line);
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -46%) scale(0.98);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

html.dark .product-buy-popup {
  border-color: var(--color-night-line);
  background: var(--color-night-elevated);
}

.product-buy-popup.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.product-buy-popup-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
}

.footer-copy {
  font-size: clamp(0.58rem, 2.4vw, 0.75rem);
  line-height: 1.45;
}

.footer-copy-line {
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.footer-copy-line::-webkit-scrollbar {
  display: none;
}

.footer-brand-name {
  white-space: nowrap;
  font-size: clamp(1.05rem, 3.8vw, 1.7rem);
  line-height: 1.1;
  min-width: 0;
}

.home-local-section {
  padding-block: clamp(2rem, 4vw, 3.5rem);
}

.footer-google-stars {
  color: #c4a35a;
  letter-spacing: 0.12em;
  font-size: 1.05rem;
  line-height: 1;
}

.home-local-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 0;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.home-local-links li {
  display: inline-flex;
  align-items: center;
  font-size: 0.84rem;
  line-height: 1.4;
}

.home-local-links li:not(:last-child)::after {
  content: "|";
  margin-inline: 0.7rem;
  opacity: 0.35;
}

.home-local-links a {
  transition: opacity 0.25s var(--ease-out);
}

.home-local-links a:hover {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .home-local-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 0.75rem;
    row-gap: 0.7rem;
  }

  .home-local-links li {
    display: block;
    font-size: 0.78rem;
  }

  .home-local-links li:not(:last-child)::after {
    content: none;
  }
}

@media (min-width: 768px) {
  .home-local-links li {
    flex: 0 0 auto;
  }
}

.panel-overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
}

.panel-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.contact-panel {
  width: var(--panel-w);
  max-width: 100vw;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-out);
  overflow: hidden;
}

.contact-panel.is-open {
  transform: translateX(0);
}

.contact-panel-body {
  overflow: hidden;
  min-height: 0;
  padding-bottom: 0.5rem;
}

.contact-panel-stack {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.contact-panel-section + .contact-panel-section {
  padding-top: 0.1rem;
}

.contact-panel-brand-name {
  white-space: nowrap;
}

html.dark .contact-panel-brand-name {
  color: #ffffff;
}

.contact-panel-btn {
  min-height: 2.4rem !important;
  height: 2.4rem !important;
  padding-inline: 1rem !important;
  font-size: 0.76rem !important;
}

.social-icon {
  width: 3.15rem !important;
  min-width: 3.15rem !important;
  height: 3.15rem !important;
  min-height: 3.15rem !important;
  padding: 0 !important;
}

.social-icon svg {
  width: 22px;
  height: 22px;
}

.contact-panel-icon {
  width: 3.15rem !important;
  min-width: 3.15rem !important;
  height: 3.15rem !important;
  min-height: 3.15rem !important;
}

.contact-panel-theme {
  flex-shrink: 0;
  min-height: 2.35rem;
  padding-block: 0.35rem;
}

.contact-panel-theme-toggle {
  width: 2.15rem !important;
  min-width: 2.15rem !important;
  height: 2.15rem !important;
  min-height: 2.15rem !important;
}

@media (max-width: 380px) {
  .contact-panel-brand-name {
    font-size: 1.05rem;
  }

  .contact-panel-stack {
    gap: 0.8rem;
  }
}

@media (max-height: 780px) {
  .contact-panel-stack {
    gap: 0.7rem;
  }

  .contact-panel-body {
    padding-top: 0.75rem;
    padding-bottom: 0.35rem;
  }

  .contact-panel-btn {
    min-height: 2.25rem !important;
    height: 2.25rem !important;
  }

  .contact-panel-theme {
    min-height: 2.1rem;
    padding-block: 0.25rem;
  }
}

.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out), visibility 0.25s;
}

.dropdown-menu.is-open,
.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.mobile-drawer {
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.gallery-mosaic img {
  transition: transform 0.7s var(--ease-out), filter 0.7s var(--ease-out);
}

.gallery-mosaic a:hover img {
  transform: scale(1.03);
  filter: saturate(1.05);
}

.form-field {
  width: 100%;
  border: 1px solid var(--color-light-line);
  background: transparent;
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 0.25s var(--ease-out);
}

html.dark .form-field {
  border-color: var(--color-night-line);
}

.form-field:focus {
  border-color: var(--color-accent);
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Public cookie notice (not CMS chat) */
#se-notice-root {
  position: fixed;
  left: 1.15rem;
  bottom: 1.15rem;
  z-index: 80;
}

.se-notice-panel {
  width: 558px;
  height: 241px;
  max-width: calc(100vw - 2.3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding: 1.6rem 1.75rem;
  background: #fff;
  color: #1b191a;
  border: 1px solid #e5e5e5;
  border-radius: 0.375rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
}

.se-notice-panel[hidden] {
  display: none !important;
}

.se-notice-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.2;
}

.se-notice-text {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #4a4746;
}

.se-notice-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.95rem;
}

.se-notice-link {
  display: inline-block;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  color: #1b191a;
}

.se-notice-ok {
  margin: 0;
  margin-left: auto;
  flex-shrink: 0;
  border: 0;
  border-radius: 999px;
  background: #1b191a;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.65rem 1.35rem;
  cursor: pointer;
}

.se-notice-ok:hover {
  opacity: 0.88;
}

.se-notice-fab {
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  border: 1px solid #e5e5e5;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  overflow: hidden;
}

.se-notice-fab[hidden] {
  display: none !important;
}

.se-notice-fab img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.4rem;
  border-radius: 999px;
}

html.dark .se-notice-panel,
html.dark .se-notice-fab {
  background: #1e1b19;
  border-color: rgba(182, 182, 182, 0.22);
  color: #f5f5f5;
}

html.dark .se-notice-text {
  color: #b6b6b6;
}

html.dark .se-notice-link,
html.dark .se-notice-title {
  color: #fff;
}

html.dark .se-notice-ok {
  background: #fff;
  color: #1b191a;
}

@media (max-width: 680px) {
  .se-notice-panel {
    width: calc(100vw - 2.3rem);
    height: auto;
    padding: 1.25rem 1.2rem;
  }
}
