/** Shopify CDN: Minification failed

Line 25:21 Expected identifier but found whitespace
Line 25:23 Unexpected "{"
Line 25:33 Expected ":"
Line 28:15 Expected identifier but found whitespace
Line 28:17 Unexpected "{"
Line 28:27 Expected ":"
Line 29:21 Expected identifier but found whitespace
Line 29:23 Unexpected "{"
Line 29:33 Expected ":"
Line 30:17 Expected identifier but found whitespace
... and 14 more hidden warnings

**/
/* ==========================================================================
   Visage et Mains — Base Styles
   A luxury editorial aesthetic: Swiss precision meets dark sophistication
   ========================================================================== */

/* Custom Properties
   ========================================================================== */
:root {
  /* Colors — deep, warm, and authoritative */
  --color-background: {{ settings.color_background }};
  --color-background-warm: #F7F5F2;
  --color-background-dark: #0C0B09;
  --color-text: {{ settings.color_text }};
  --color-text-light: {{ settings.color_text_light }};
  --color-accent: {{ settings.color_accent }};
  --color-accent-light: #B8A48C;
  --color-border: {{ settings.color_border }};
  --color-border-light: #F0EDE8;
  --color-button-bg: {{ settings.color_button_bg }};
  --color-button-text: {{ settings.color_button_text }};
  --color-white: #FFFFFF;
  --color-cream: #DFDDD2;
  --color-ivory: #F9F7F4;
  --color-charcoal: #2C2A26;
  --color-gold: #C4A96A;
  --color-gold-muted: #A69270;
  --color-error: #9B2C2C;
  --color-success: #276749;

  /* Typography — Cormorant Garamond for headings (editorial serif), Outfit for body (refined geometric sans) */
  --font-heading: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-family: var(--font-body);

  --font-size-xs: calc(0.7rem * {{ settings.body_scale | divided_by: 100.0 }});
  --font-size-sm: calc(0.825rem * {{ settings.body_scale | divided_by: 100.0 }});
  --font-size-base: calc(0.9375rem * {{ settings.body_scale | divided_by: 100.0 }});
  --font-size-md: calc(1.0625rem * {{ settings.body_scale | divided_by: 100.0 }});
  --font-size-lg: calc(1.25rem * {{ settings.heading_scale | divided_by: 100.0 }});
  --font-size-xl: calc(1.625rem * {{ settings.heading_scale | divided_by: 100.0 }});
  --font-size-2xl: calc(2.25rem * {{ settings.heading_scale | divided_by: 100.0 }});
  --font-size-3xl: calc(3rem * {{ settings.heading_scale | divided_by: 100.0 }});
  --font-size-4xl: calc(4rem * {{ settings.heading_scale | divided_by: 100.0 }});
  --font-size-5xl: calc(5.5rem * {{ settings.heading_scale | divided_by: 100.0 }});

  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --heading-weight: {{ settings.heading_weight }};

  --line-height-tight: 1.05;
  --line-height-snug: 1.2;
  --line-height-base: 1.7;
  --letter-spacing-tight: -0.03em;
  --letter-spacing-normal: -0.01em;
  --letter-spacing-wide: 0.12em;
  --letter-spacing-ultra: 0.2em;

  /* Spacing — generous, breathing room */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  --space-5xl: 12rem;

  /* Layout */
  --container-max: 1440px;
  --container-narrow: 680px;
  --container-padding: clamp(1.25rem, 5vw, 4rem);
  --header-height: 72px;

  /* Borders */
  --radius-sm: 0px;
  --radius-md: 2px;
  --radius-lg: 4px;
  --border: 1px solid var(--color-border);
  --border-accent: 1px solid var(--color-gold-muted);

  /* Transitions */
  --duration-fast: 150ms;
  --duration-base: 350ms;
  --duration-slow: 600ms;
  --duration-reveal: 1000ms;
  --easing: cubic-bezier(0.16, 1, 0.3, 1);
  --easing-out: cubic-bezier(0.0, 0, 0.2, 1);
  --easing-dramatic: cubic-bezier(0.77, 0, 0.175, 1);

  /* Shadows — subtle, warm */
  --shadow-sm: 0 1px 4px rgba(12, 11, 9, 0.03);
  --shadow-md: 0 6px 24px rgba(12, 11, 9, 0.05);
  --shadow-lg: 0 16px 48px rgba(12, 11, 9, 0.08);
  --shadow-hover: 0 12px 36px rgba(12, 11, 9, 0.07);
  --shadow-dramatic: 0 24px 64px rgba(12, 11, 9, 0.12);
}

/* Reset
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/* Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-xl); }
h4 { font-size: var(--font-size-lg); }
h5 { font-size: var(--font-size-md); }
h6 { font-size: var(--font-size-base); }

p + p {
  margin-top: var(--space-md);
}

small {
  font-size: var(--font-size-sm);
}

.text-light {
  color: var(--color-text-light);
}

.text-accent {
  color: var(--color-accent);
}

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  font-family: var(--font-body);
}

/* Layout Utilities
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-block: var(--space-5xl);
}

.section--compact {
  padding-block: var(--space-3xl);
}

.section--flush {
  padding-block: 0;
}

/* Grid */
.grid {
  display: grid;
  gap: var(--space-md);
}

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

@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid--3,
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .grid--2,
  .grid--3,
  .grid--4 { grid-template-columns: 1fr; }
}

/* Flexbox helpers */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 1rem 2.25rem;
  font-family: var(--font-body);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  border-radius: 0;
  transition: all var(--duration-base) var(--easing);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}

.btn--primary {
  background-color: var(--color-button-bg);
  color: var(--color-button-text);
  overflow: hidden;
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196, 169, 106, 0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--duration-base) var(--easing);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--primary:hover::before {
  opacity: 1;
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-text);
  border: 1px solid currentColor;
}

.btn--secondary:hover {
  background-color: var(--color-text);
  color: var(--color-background);
  transform: translateY(-1px);
}

.btn--accent {
  background-color: var(--color-gold-muted);
  color: var(--color-white);
}

.btn--accent:hover {
  background-color: var(--color-gold);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--small {
  padding: 0.625rem 1.25rem;
  font-size: 0.625rem;
}

.btn--full {
  width: 100%;
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
}

/* Form Elements
   ========================================================================== */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1.125rem;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-light);
  border: 1px solid var(--color-border);
  border-radius: 0;
  background-color: var(--color-white);
  transition: border-color var(--duration-base) var(--easing),
              box-shadow var(--duration-base) var(--easing);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-gold-muted);
  box-shadow: 0 0 0 3px rgba(196, 169, 106, 0.08);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236B6B6B' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.125rem center;
  padding-right: 2.5rem;
}

/* Accessibility
   ========================================================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-text);
  color: var(--color-white);
  font-size: var(--font-size-sm);
}

.skip-link:focus {
  top: 0;
}

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

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

/* Section Headings — editorial, with decorative line
   ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-light);
  letter-spacing: var(--letter-spacing-tight);
  margin-bottom: var(--space-md);
  position: relative;
}

.section-header__subtitle {
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-light);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}

.section-header__title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-gold-muted);
  margin: var(--space-lg) auto var(--space-sm);
}

/* Miscellaneous
   ========================================================================== */
.divider {
  border: none;
  border-top: var(--border);
  margin-block: var(--space-2xl);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  font-size: 0.625rem;
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  border-radius: 0;
  background-color: var(--color-border);
  color: var(--color-text);
}

.badge--accent {
  background-color: var(--color-gold-muted);
  color: var(--color-white);
}

.badge--success {
  background-color: var(--color-success);
  color: var(--color-white);
}

/* Links
   ========================================================================== */
a.link-underline {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--color-border);
  transition: text-decoration-color var(--duration-base) var(--easing);
}

a.link-underline:hover {
  text-decoration-color: var(--color-text);
}

a.link-hover-accent:hover {
  color: var(--color-gold-muted);
}

/* Scroll Reveal Animations — refined entrance
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-reveal) var(--easing),
              transform var(--duration-reveal) var(--easing);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 150ms; }
.reveal--delay-2 { transition-delay: 300ms; }
.reveal--delay-3 { transition-delay: 450ms; }
.reveal--delay-4 { transition-delay: 600ms; }

.reveal--scale {
  opacity: 0;
  transform: scale(0.96);
}

.reveal--scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

.reveal--fade {
  opacity: 0;
}

.reveal--fade.is-visible {
  opacity: 1;
}

/* Loading States
   ========================================================================== */
.skeleton {
  background: linear-gradient(90deg, var(--color-border-light) 25%, var(--color-border) 50%, var(--color-border-light) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.8s infinite;
}

@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton--text {
  height: 1em;
  width: 80%;
  margin-bottom: var(--space-sm);
}

.skeleton--image {
  aspect-ratio: 1;
  width: 100%;
}

.loading-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(250, 250, 248, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-base) var(--easing);
  backdrop-filter: blur(2px);
}

.loading-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--color-border);
  border-top-color: var(--color-gold-muted);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Rich Text (RTE)
   ========================================================================== */
.rte {
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
}

.rte h2 {
  font-family: var(--font-heading);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.rte h3 {
  font-family: var(--font-heading);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.rte p {
  margin-bottom: var(--space-md);
}

.rte ul, .rte ol {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.rte li {
  margin-bottom: var(--space-sm);
  list-style: disc;
}

.rte ol li {
  list-style: decimal;
}

.rte a {
  color: var(--color-gold-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.rte blockquote {
  border-left: 2px solid var(--color-gold-muted);
  padding-left: var(--space-xl);
  margin-block: var(--space-xl);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: var(--font-size-lg);
  color: var(--color-text-light);
}

.rte img {
  margin-block: var(--space-xl);
}

/* Image Effects
   ========================================================================== */
.img-zoom-wrap {
  overflow: hidden;
}

.img-zoom-wrap img {
  transition: transform var(--duration-slow) var(--easing);
}

.img-zoom-wrap:hover img {
  transform: scale(1.03);
}

/* Separator / Decorative
   ========================================================================== */
.separator {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  margin-block: var(--space-3xl);
}

.separator::before,
.separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.separator__text {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-ultra);
  color: var(--color-text-light);
}

/* Decorative gold line accent */
.gold-line {
  width: 40px;
  height: 1px;
  background: var(--color-gold-muted);
}

.gold-line--center {
  margin-inline: auto;
}

/* Responsive visibility */
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
}

@media (min-width: 769px) {
  .hide-desktop { display: none !important; }
}

/* Print */
@media print {
  .header, .footer, .skip-link { display: none; }
  body { background: #fff; color: #000; }
  .section { padding-block: 1rem; }
}

/* Noise texture overlay for depth */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}
