/* Veronika Hair Studio — Glass design */

:root {
  --glass-bg: rgba(18, 18, 18, 0.45);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-gold: rgba(208, 173, 135, 0.25);
  --surface: #0a0a0a;
  --surface-container-low: #121212;
  --surface-container-lowest: #1a1a1a;
  --surface-container-high: #242424;
  --surface-dim: #2a2a2a;
  --primary: #8b6b47;
  --primary-container: #d0ad87;
  --primary-fixed: #ffddba;
  --on-surface: #ffffff;
  --on-primary: #0a0a0a;
  --secondary: rgba(255, 255, 255, 0.85);
  --outline-variant: rgba(208, 173, 135, 0.3);
  --radius: 0.75rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2.5rem;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  --font-display: "Poppins", system-ui, sans-serif;
  --font-body: "Poppins", system-ui, sans-serif;
  --step--1: clamp(0.9rem, 0.85rem + 0.2vw, 1rem);
  --step-0: clamp(1rem, 0.95rem + 0.35vw, 1.125rem);
  --step-1: clamp(1.2rem, 1.05rem + 0.65vw, 1.45rem);
  --step-2: clamp(1.5rem, 1.2rem + 1.1vw, 2rem);
  --step-3: clamp(2rem, 1.5rem + 1.8vw, 2.75rem);
  --step-4: clamp(3rem, 2.5rem + 2vw, 3.5rem);
  /* Shared scrim: hero overlay + scroll backgrounds (same tone, no hard line at hero → services) */
  /* One shared vertical linear scrim for all scroll backgrounds (hero + sections). */
  --bg-scrim-vertical: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.82) 0%,
    rgba(10, 10, 10, 0.55) 36%,
    rgba(10, 10, 10, 0.58) 52%,
    rgba(10, 10, 10, 0.66) 68%,
    rgba(10, 10, 10, 0.73) 82%,
    rgba(10, 10, 10, 0.78) 100%
  );
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--on-surface);
  background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 30%, #0c0c0c 100%);
  min-height: 100vh;
}

/* Scroll-linked section backgrounds */

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.site-bg__layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-bg__layer.is-active {
  opacity: 1;
}

.site-bg__layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg-scrim-vertical);
  pointer-events: none;
}

/* Fixed scale on all layers — avoids zoom snap when toggling .is-active (drift animation removed). */
.site-bg__layer-inner {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transform-origin: center center;
  filter: saturate(1.05) contrast(1.02);
}

@media (max-width: 768px) {
  .site-bg__layer-inner {
    inset: -4%;
    width: 108%;
    height: 108%;
    transform: scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-bg__layer {
    transition-duration: 0.01ms;
  }
  .site-bg__layer-inner {
    transform: none;
    inset: 0;
    width: 100%;
    height: 100%;
  }
}

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

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

a:hover {
  color: var(--primary-container);
}

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

/* Scroll-triggered animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll[data-animate-delay] {
  transition-delay: calc(var(--animate-delay, 0) * 1ms);
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .animate-on-scroll.is-visible {
    opacity: 1;
    transform: none;
  }
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--primary);
  color: var(--on-primary);
  font-weight: 600;
  border-radius: 999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.shell {
  width: min(1280px, 100% - 2rem);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (max-width: 480px) {
  .shell {
    padding-inline: 1rem;
  }
}

/* Header — refined glass nav */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  overflow: visible;
  background: rgba(12, 12, 12, 0.55);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--glass-border-gold);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.65);
  border-bottom-color: rgba(208, 173, 135, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5rem;
  overflow: visible;
}

.header-trailing {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
  overflow: visible;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: var(--on-surface);
  transition: opacity 0.2s ease;
}

.logo:hover {
  color: var(--on-surface);
  opacity: 0.85;
}

.logo-line1 {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin-top: 2px;
  margin-bottom: 0;
  line-height: 1;
  max-width: 100%;
}

.logo-initials {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-fixed));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--primary-container);
}

.logo-keratin {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.logo-line1 .logo-attribution {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-left: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.88);
  flex-shrink: 1;
  min-width: 0;
}

.logo-line1 .logo-attribution-by {
  letter-spacing: normal;
  text-transform: lowercase;
}

.logo-line1 .logo-attribution-name {
  letter-spacing: 0.5rem;
  text-transform: uppercase;
}

.logo .logo-tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-container);
  margin: 0 0 5px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav a {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav a:hover {
  color: var(--primary-container);
  background: rgba(208, 173, 135, 0.12);
}

.lang-switcher {
  flex-shrink: 0;
}

/* Custom menu: native <select> breaks on mobile Chrome/Safari inside fixed + backdrop-filter headers */
.lang-dropdown {
  position: relative;
  z-index: 120;
}

.lang-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: none;
  padding: 0.4rem 0.55rem 0.4rem 0.75rem;
  color: var(--on-surface);
  background: rgba(26, 26, 26, 0.92);
  border: 1px solid var(--glass-border-gold);
  border-radius: 999px;
  cursor: pointer;
  min-width: 4rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.lang-dropdown__trigger:hover,
.lang-dropdown__trigger:focus-visible {
  border-color: var(--primary);
  background: rgba(26, 26, 26, 1);
  outline: none;
}

.lang-dropdown.is-open .lang-dropdown__trigger {
  border-color: var(--primary-container);
}

.lang-dropdown__chevron {
  display: block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255, 255, 255, 0.75);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.lang-dropdown.is-open .lang-dropdown__chevron {
  transform: rotate(180deg);
}

.lang-dropdown__list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  margin: 0;
  padding: 0.4rem;
  list-style: none;
  min-width: 11rem;
  background: #141414;
  border: 1px solid var(--glass-border-gold);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
}

.lang-dropdown__list[hidden] {
  display: none !important;
}

.lang-dropdown__item {
  margin: 0;
  padding: 0;
}

.lang-dropdown__option {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-align: left;
  text-transform: none;
  color: #fff;
  background: transparent;
  border: none;
  border-radius: calc(var(--radius) - 2px);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.lang-dropdown__option:hover,
.lang-dropdown__option:focus-visible {
  background: rgba(208, 173, 135, 0.18);
  outline: none;
}

.lang-dropdown__option[aria-selected="true"] {
  background: rgba(208, 173, 135, 0.3);
  color: var(--primary-fixed);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle-bar {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--on-surface);
  position: relative;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--on-surface);
}

.nav-toggle-bar::before {
  top: -6px;
}

.nav-toggle-bar::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .header-trailing {
    gap: 0.65rem;
    flex: 0 0 auto;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem;
    /* Solid panel: backdrop-filter here also glitches native pickers if focus moves oddly */
    background: rgba(12, 12, 12, 0.96);
    gap: 0;
    display: none;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
  }

  .lang-switcher {
    flex-shrink: 0;
  }

  .lang-dropdown__trigger {
    min-width: 4.25rem;
    padding-inline: 0.5rem 0.65rem;
  }
}

/* Hero */

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
}

@media (max-width: 768px) {
  .hero {
    min-height: 75vh;
    padding: 6rem 0 3rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 70vh;
    padding: 5.5rem 0 2.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --bg-scrim-vertical: linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.82) 0%,
      rgba(10, 10, 10, 0.55) 30%,
      rgba(10, 10, 10, 0.56) 45%,
      rgba(10, 10, 10, 0.62) 58%,
      rgba(10, 10, 10, 0.7) 72%,
      rgba(10, 10, 10, 0.76) 88%,
      rgba(10, 10, 10, 0.78) 100%
    );
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .hero-inner {
    flex-direction: row;
    align-items: flex-end;
    gap: 3rem;
  }

  .hero-left {
    flex: 1;
    min-width: 0;
  }

  .hero-right {
    flex: 1;
    min-width: 0;
    padding-bottom: 0.5rem;
  }
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-container);
  margin: 0 0 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}

.hero-title-accent {
  background: linear-gradient(90deg, var(--primary-container), var(--primary-fixed));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-sub {
  margin: 0.65rem 0 0;
  max-width: 30rem;
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.15vw, 1.02rem);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.45);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: var(--step-1);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.hero-subtitle-stat {
  display: block;
  margin: 0.75rem 0 0;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-container);
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.btn--chip {
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn--chip:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
}

.btn--primary {
  color: var(--on-primary);
  background: linear-gradient(135deg, rgba(117, 89, 57, 0.9), rgba(208, 173, 135, 0.85));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.15) inset;
  color: var(--on-primary);
}

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

.btn--glass {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 20rem;
  background: rgba(117, 89, 57, 0.5);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--on-primary);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.btn--glass:hover {
  background: rgba(208, 173, 135, 0.6);
  color: var(--on-primary);
  transform: translateX(-50%) translateY(-1px);
}


.link-tertiary {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-container);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.link-tertiary:hover {
  color: var(--primary-fixed);
}

/* Glass card */

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid var(--glass-border-gold);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

/* Sections */

.section {
  padding: clamp(3rem, 6vw, 6rem) 0;
}

@media (max-width: 480px) {
  .section {
    padding: 2.5rem 0;
  }
}

.section--alt {
  background: rgba(15, 15, 15, 0.4);
  backdrop-filter: blur(0);
}

.section-block {
  padding: 2rem 2.5rem;
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

@media (max-width: 600px) {
  .section-block {
    padding: 1.5rem 1.25rem;
  }
}

.section-block .section-head {
  max-width: 52ch;
  margin-bottom: 2rem;
  padding: 0;
}

@media (max-width: 600px) {
  .section-block .section-head {
    margin-bottom: 1.5rem;
  }
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-weight: 800;
  margin: 0 0 0.75rem;
  letter-spacing: 8px;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--primary-container), var(--primary-fixed));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 600px) {
  .section-head h2 {
    font-size: var(--step-2);
  }
}

.section-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--step-1);
  line-height: 1.6;
}

.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 52ch;
}

.gallery-section__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin-top: 1.25rem;
}

/* About card */

.about-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 420px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

@media (max-width: 767px) {
  .about-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }
}

.about-photo {
  position: relative;
  min-height: 280px;
  background: var(--surface-container-low);
}

.about-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 40%, rgba(10, 10, 10, 0.3) 70%);
  pointer-events: none;
}

@media (max-width: 767px) {
  .about-overlay {
    background: linear-gradient(to top, transparent 50%, rgba(10, 10, 10, 0.4));
  }
}

.about-blade {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 600px) {
  .about-blade {
    padding: 1.5rem 1.25rem;
  }
}

.about-intro {
  font-size: var(--step-1);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 1.5rem;
}

.about-stats {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.about-stats li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.6rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--step-0);
}

.about-stats li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-container);
  font-weight: 600;
}

.about-close {
  margin: 0 0 1.5rem;
  font-size: var(--step-0);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
}

.about-blade .btn--ig {
  align-self: flex-start;
}

@media (max-width: 600px) {
  .about-blade .btn--ig {
    width: 100%;
  }
}

.about-values {
  margin-top: 2.5rem;
  padding: 2rem 2rem 2.25rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(208, 173, 135, 0.28);
  background: rgba(208, 173, 135, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

@media (max-width: 600px) {
  .about-values {
    margin-top: 2rem;
    padding: 1.5rem 1.25rem 1.75rem;
  }
}

.about-values__eyebrow {
  margin: 0 0 1.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-fixed);
}

.about-values__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 2rem;
}

@media (max-width: 700px) {
  .about-values__list {
    grid-template-columns: 1fr;
  }
}

.about-values__item {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.about-values__item-title {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-0);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

.about-values__item-text {
  display: block;
  font-size: var(--step--1);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

/* Info cards (services) */

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.cards-3--services .info-card--service {
  height: 100%;
}

.service-consult {
  margin-top: 2.5rem;
  padding: 2rem 2rem 2.25rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(208, 173, 135, 0.28);
  background: rgba(208, 173, 135, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

@media (max-width: 600px) {
  .service-consult {
    margin-top: 2rem;
    padding: 1.5rem 1.25rem 1.75rem;
  }
}

.service-consult__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-fixed);
}

.service-consult__title {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 1rem;
  text-transform: none;
  letter-spacing: 0.02em;
}

.service-consult__intro {
  margin: 0 0 1.5rem;
  font-size: var(--step--1);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.service-consult__youget-label {
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(208, 173, 135, 0.95);
}

.service-consult__list {
  margin: 0;
  padding: 0 0 0 1.25rem;
  font-size: var(--step--1);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.service-consult__list li {
  margin-bottom: 0.35rem;
}

.service-consult__list li:last-child {
  margin-bottom: 0;
}

.service-consult__btn {
  margin-top: 1.35rem;
}

@media (max-width: 800px) {
  .cards-3 {
    grid-template-columns: 1fr;
  }
}

.info-card {
  padding: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  overflow: hidden;
}

.info-card--img {
  display: flex;
  flex-direction: column;
}

.info-card-img {
  height: 180px;
  background: var(--card-img, var(--surface-container-low)) center/cover no-repeat;
}

.info-card-content {
  padding: 1.5rem 2rem;
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--on-surface);
  margin: 0 0 0.5rem;
}

.info-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--step--1);
  line-height: 1.6;
}

.info-card--service .info-card-img {
  height: 200px;
  background-image: var(--card-img, var(--surface-container-low));
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 28%;
}

.info-card--service .info-card-content {
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card__tagline {
  font-size: var(--step--1);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1rem;
  line-height: 1.5;
}

.service-rule {
  border: none;
  border-top: 1px solid rgba(208, 173, 135, 0.22);
  margin: 0 0 1rem;
}

.service-checks {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.service-checks li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.45rem;
  font-size: var(--step--1);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.45;
}

.service-checks li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary-container);
  font-size: 0.85em;
}

.service-perfect-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 0.5rem;
}

.service-perfect-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--step--1);
  line-height: 1.5;
}

.service-perfect-list li {
  position: relative;
  margin-bottom: 0.4rem;
  padding-left: 1rem;
}

.service-perfect-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 1px rgba(208, 173, 135, 0.25);
}

.service-book {
  margin-top: auto;
}

/* Course bento grid */

.course-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}

.course-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  min-height: 280px;
  background: transparent;
  border: 1px solid transparent;
}

.course-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.course-card--tall .course-img {
  object-position: center 30%;
}

.course-card--large {
  grid-column: span 12;
  min-height: 500px;
}

@media (max-width: 767px) {
  .course-bento {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* Without explicit placement, cards sat in a single 1/12 column — force full width */
  .course-card--large,
  .course-card--tall,
  .course-card--small,
  .course-card--cta {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
  }

  /* Stack image + copy so long descriptions are not clipped by overflow:hidden */
  .course-card--large {
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: visible;
  }

  .course-card--large .course-img {
    position: relative;
    inset: auto;
    width: 100%;
    height: min(52vw, 15.5rem);
    flex-shrink: 0;
  }

  .course-card--large .course-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: min(52vw, 15.5rem);
    pointer-events: none;
  }

  .course-card--large .course-blade {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    bottom: auto;
    top: auto;
    margin: 0;
    flex: 1 1 auto;
    border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
  }

  .course-card--tall {
    min-height: 22rem;
  }

  .course-card--cta {
    min-height: 0;
    padding: 1.5rem 1.25rem;
  }
}

@media (min-width: 768px) {
  .course-card--large {
    grid-column: span 8;
  }

  .course-card--tall {
    grid-column: span 4;
  }

  .course-card--small {
    grid-column: span 4;
  }

  .course-card--cta {
    grid-column: span 4;
  }
}

.course-card--tall {
  min-height: 500px;
}

.course-card--small {
  aspect-ratio: 1;
  min-height: 0;
}

.course-card:hover .course-img {
  transform: scale(1.05);
}

.course-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 50%);
}

.course-overlay--top {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent 50%);
}

.course-overlay--feedback {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.52), transparent 55%), var(--feedback-img);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.course-card--feedback:hover .course-overlay--feedback {
  transform: scale(1.05);
}

.course-blade {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  padding: 2rem;
  border-radius: var(--radius-xl);
}

@media (max-width: 600px) {
  .course-blade {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1.25rem;
  }
  .course-blade--top {
    top: 1rem;
  }
  .course-blade--bottom {
    bottom: 1rem;
    padding: 1.25rem;
  }
  .course-blade h3 {
    font-size: 1.15rem;
  }
}

.course-blade--top {
  bottom: auto;
  top: 2rem;
}

.course-blade--bottom {
  bottom: 2rem;
  padding: 1.5rem;
}

.course-card--tall .course-blade--bottom {
  bottom: 6rem;
}

@media (max-width: 600px) {
  .course-card--tall .course-blade--bottom {
    bottom: 5rem;
  }
}

@media (max-width: 479px) {
  .course-card--tall .course-blade--bottom {
    bottom: 4.75rem;
    padding: 1.1rem 1.15rem;
  }

  .course-card--tall .btn--glass {
    bottom: 1rem;
    width: calc(100% - 1.5rem);
    max-width: none;
    font-size: 0.72rem;
    padding: 0.65rem 1rem;
  }
}

.course-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(208, 173, 135, 0.25);
  color: var(--primary-fixed);
  border-radius: 999px;
}

.course-tag--secondary {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.course-blade h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.5rem;
}

.course-blade p {
  font-size: var(--step--1);
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 1rem;
  line-height: 1.5;
}

/* Match .cta-content p (courses.ctaDesc) */
.course-blade--feedback p {
  font-size: var(--step--1);
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
}

.course-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  gap: 0.5rem;
  row-gap: 0.35rem;
}

@media (max-width: 479px) {
  .course-meta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .course-meta-row .course-price {
    order: -1;
  }
}

.course-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-fixed);
}

.course-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
}

.course-card--cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid var(--glass-border-gold);
  min-height: 400px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.cta-blob {
  position: absolute;
  right: -3rem;
  top: -3rem;
  width: 12rem;
  height: 12rem;
  background: var(--primary);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h3 {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 600;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.cta-content p {
  font-size: var(--step--1);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

.gallery-item {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border-gold);
  transition: transform 0.25s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Reviews — DM screenshot showcase */

.reviews-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 1100px) {
  .reviews-showcase {
    grid-template-columns: repeat(4, 1fr);
  }
}

.review-shot {
  margin: 0;
  padding: 0;
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border-gold);
  background: rgba(8, 8, 8, 0.65);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.review-shot:hover {
  transform: translateY(-3px);
  border-color: rgba(208, 173, 135, 0.45);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(208, 173, 135, 0.12);
}

.review-shot__link {
  display: block;
  line-height: 0;
  text-decoration: none;
  color: inherit;
  cursor: zoom-in;
}

.review-shot__link:focus-visible {
  outline: 2px solid var(--primary-fixed);
  outline-offset: 3px;
}

.review-shot__link img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  display: block;
}

/* Pricing table */

.pricing-table-wrap {
  margin: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border-gold);
  background: rgba(10, 10, 10, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.pricing-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  font-size: var(--step--1);
  color: rgba(255, 255, 255, 0.92);
}

@media (min-width: 768px) {
  .pricing-table {
    min-width: 36rem;
  }
}

.pricing-table thead th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-container);
  background: rgba(208, 173, 135, 0.12);
  border-bottom: 1px solid var(--glass-border-gold);
  white-space: nowrap;
}

.pricing-table tbody th,
.pricing-table tbody td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: middle;
}

.pricing-table tbody tr:last-child th,
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody th[scope="row"] {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-align: left;
  font-family: var(--font-body);
  white-space: nowrap;
}

.pricing-table tbody td {
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.88);
}

.pricing-table tbody tr:hover th,
.pricing-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.04);
}

/* Stacked labels only used on narrow screens; thead supplies column context on desktop */
.pricing-table .pricing-cell__label {
  display: none;
}

.pricing-table .pricing-cell__value {
  font-variant-numeric: tabular-nums;
}

@media (max-width: 767px) {
  .pricing-table-wrap {
    overflow-x: visible;
  }

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

  .pricing-table tbody tr {
    display: block;
    margin-bottom: 0.85rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border-gold);
    overflow: hidden;
    background: rgba(10, 10, 10, 0.45);
  }

  .pricing-table tbody tr:last-child {
    margin-bottom: 0;
  }

  .pricing-table tbody tr:hover th,
  .pricing-table tbody tr:hover td {
    background: transparent;
  }

  .pricing-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
  }

  .pricing-table tbody th[scope="row"] {
    display: block;
    width: 100%;
    text-align: center;
    white-space: normal;
    padding: 0.7rem 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(208, 173, 135, 0.14);
    font-size: 0.8rem;
  }

  .pricing-table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.65rem;
    padding: 0.55rem 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.78rem;
  }

  .pricing-table tbody tr td:last-child {
    border-bottom: none;
  }

  /* Restore separators in the last stacked card (desktop rule zeroed all last-row cells) */
  .pricing-table tbody tr:last-child td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .pricing-table tbody tr:last-child td:last-child {
    border-bottom: none;
  }

  .pricing-table .pricing-cell__label {
    display: block;
    flex: 1;
    min-width: 0;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.35;
    color: var(--primary-container);
  }

  .pricing-table .pricing-cell__value {
    flex-shrink: 0;
    font-weight: 600;
    text-align: right;
    color: rgba(255, 255, 255, 0.92);
  }
}

@media (max-width: 600px) {
  .pricing-table tbody th[scope="row"] {
    font-size: 0.75rem;
    padding: 0.6rem 0.75rem;
  }

  .pricing-table tbody td {
    font-size: 0.72rem;
    padding: 0.5rem 0.75rem;
  }

  .pricing-table .pricing-cell__label {
    font-size: 0.58rem;
  }
}

.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 0.25rem;
}

/* Contact */

.contact--cta {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.contact-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.95rem;
  margin-bottom: 2rem;
}

.contact-photo {
  aspect-ratio: 1.05;
  border-radius: var(--radius);
  background: var(--photo) center/cover;
  border: 1px solid var(--glass-border-gold);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

@media (max-width: 500px) {
  .contact-photos {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
    margin-bottom: 1.25rem;
  }

  .contact-photo {
    aspect-ratio: 1;
    border-radius: calc(var(--radius) - 0.15rem);
  }
}

@media (max-width: 480px) {
  .contact-body {
    padding: 1.5rem 1.25rem;
  }
  .contact-offer {
    padding: 1rem 1.25rem;
    font-size: 0.7rem;
  }
  .btn--ig {
    min-width: auto;
    width: 100%;
  }
}

.contact-body {
  padding: 2.5rem 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid var(--glass-border-gold);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.contact-body h2 {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 800;
  margin: 0 0 0.75rem;
  letter-spacing: 8px;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--primary-container), var(--primary-fixed));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-offer {
  margin: 0 0 2rem;
  padding: 1.5rem 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.7;
  color: var(--primary-container);
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid var(--glass-border-gold);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.btn--ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 2rem;
  font-size: 0.8rem;
  min-width: 16rem;
}

.btn--ig svg {
  flex-shrink: 0;
}

/* Footer */

.site-footer {
  padding: 3rem 0;
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border-top: 1px solid var(--glass-border-gold);
  margin-top: 4rem;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--on-surface);
  margin: 0 0 0.75rem;
}

.footer-disclaimer {
  margin: 0 auto 1rem;
  max-width: 52ch;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.footer-copy {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

