html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  background: #F7F5F0;
  color: #101012;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-feature-settings: 'ss01', 'cv11';
}

::selection { background: #FF5B2E; color: #fff; }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  border-radius: 9999px; background: #101012; color: #fff;
  padding: .75rem 1.5rem; font-size: .875rem; font-weight: 500;
  transition: background .2s ease;
}
.btn-primary:hover { background: #3A3A3F; }

.btn-accent {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  border-radius: 9999px; background: #FF5B2E; color: #fff;
  padding: .75rem 1.5rem; font-size: .875rem; font-weight: 500;
  transition: background .2s ease;
}
.btn-accent:hover { background: #E14418; }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  border-radius: 9999px; border: 1px solid #E6E2D8; background: transparent; color: #101012;
  padding: .75rem 1.5rem; font-size: .875rem; font-weight: 500;
  transition: background .2s ease;
}
.btn-ghost:hover { background: #fff; }

.btn-white {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  border-radius: 9999px; background: #fff; color: #101012;
  padding: .75rem 1.5rem; font-size: .875rem; font-weight: 500;
  transition: background .2s ease;
}
.btn-white:hover { background: #F7F5F0; }

/* Layout helpers */
.container-x {
  margin-left: auto; margin-right: auto;
  width: 100%; max-width: 1320px;
  padding-left: 1.25rem; padding-right: 1.25rem;
}
@media (min-width: 768px) {
  .container-x { padding-left: 2rem; padding-right: 2rem; }
}
@media (min-width: 1024px) {
  .container-x { padding-left: 2.5rem; padding-right: 2.5rem; }
}

/* Pills */
.pill {
  display: inline-flex; align-items: center; gap: .5rem;
  border-radius: 9999px; border: 1px solid #E6E2D8; background: #fff;
  padding: .25rem .75rem; font-size: .75rem;
  text-transform: uppercase; letter-spacing: .14em; color: #3A3A3F;
}

/* Cards */
.card {
  border-radius: 1.75rem; border: 1px solid #E6E2D8; background: #fff;
  box-shadow: 0 1px 0 rgba(16,16,18,.04), 0 1px 3px rgba(16,16,18,.05);
}
.hover-card { transition: transform .3s ease, box-shadow .3s ease; }
.hover-card:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(16,16,18,.10); }

/* Film grain overlay */
.grain { position: relative; }
.grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Marquee mask */
.ticker-mask {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

/* Animations */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee {
  display: flex; width: max-content; white-space: nowrap;
  animation: marquee 40s linear infinite;
}

/* Forms */
.field {
  margin-top: .5rem; width: 100%;
  border-radius: 1rem; border: 1px solid #E6E2D8; background: #fff;
  padding: .75rem 1rem; font-size: .875rem; outline: none;
  transition: border-color .15s ease;
}
.field:focus { border-color: #101012; }

.field-label {
  display: block; font-size: .75rem;
  text-transform: uppercase; letter-spacing: .2em; color: #6B6B72;
}

/* Details (FAQ accordions) */
details summary { list-style: none; cursor: pointer; }
details summary::-webkit-details-marker { display: none; }
details[open] .acc-icon { transform: rotate(45deg); }
.acc-icon { transition: transform .2s ease; }

/* Hide mobile menu by default */
.mobile-menu { display: none; }
.mobile-menu.open { display: block; }

/* Material Symbols */
.material-symbols-rounded {
  font-family: 'Material Symbols Rounded';
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}
.ms-fill { font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 20; }
.ms-18 { font-size: 18px; }
.ms-24 { font-size: 24px; }
.ms-28 { font-size: 28px; }
.ms-32 { font-size: 32px; }
.ms-40 { font-size: 40px; }
.ms-48 { font-size: 48px; font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 48; }

/* Brand logo bubble (real service logos) */
.logo-bubble {
  display: inline-grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.5rem;
  background: #FFFFFF;
  border: 1px solid #E6E2D8;
  flex-shrink: 0;
  overflow: hidden;
}
.logo-bubble img { width: 1.05rem; height: 1.05rem; object-fit: contain; }
.logo-bubble.lg { width: 2.5rem; height: 2.5rem; border-radius: 0.75rem; }
.logo-bubble.lg img { width: 1.5rem; height: 1.5rem; }
.logo-bubble.xs { width: 1.4rem; height: 1.4rem; border-radius: 0.4rem; }
.logo-bubble.xs img { width: 0.85rem; height: 0.85rem; }

/* Photo cover */
.cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cover-fade::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,16,18,0) 0%, rgba(16,16,18,0) 45%, rgba(16,16,18,0.55) 100%);
  z-index: 1;
  pointer-events: none;
}
.cover-fade > * { position: relative; z-index: 2; }
