/* ============================================================
   TerraCasa — shared polish layer
   Loaded across all customer-facing pages for a consistent,
   refined feel. Purely additive: no layout/markup assumptions.
   ============================================================ */

:root {
  --tc-gold: #8a7a5a;
  --tc-gold-bright: #a08840;
  --tc-gold-light: #b39a6f;
  --tc-cream: #f0ece4;
  --tc-ink: #0f0f0f;
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
}

/* Warmer, on-brand text selection */
::selection {
  background: rgba(160, 136, 64, 0.30);
  color: #fff;
}

/* Refined, unobtrusive scrollbars */
* {
  scrollbar-width: thin;
  scrollbar-color: #2c2c2c transparent;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #262626;
  border-radius: 8px;
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: background 0.2s;
}
::-webkit-scrollbar-thumb:hover {
  background: #3a3a3a;
  background-clip: padding-box;
}

/* Accessible keyboard focus — gold ring, only for keyboard users
   (mouse clicks on buttons/links won't show it) */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid rgba(160, 136, 64, 0.65);
  outline-offset: 3px;
  border-radius: 8px;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid rgba(160, 136, 64, 0.45);
  outline-offset: 1px;
}

/* Smooth, consistent interaction feel for primary controls */
button,
a {
  -webkit-tap-highlight-color: transparent;
}

/* Respect users who prefer less motion */
@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;
  }
}
