﻿/*! =========================================
    Custom Reset CSS
    Brand Site Optimized / 2026 Modern
========================================= */

/* ----------------------------------------
   Box Model
---------------------------------------- */

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

/* ----------------------------------------
   Document
---------------------------------------- */

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* ----------------------------------------
   Sections
---------------------------------------- */

main {
  display: block;
}

/* ----------------------------------------
   Headings & Text
---------------------------------------- */

h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

address {
  font-style: normal;
}

/* ----------------------------------------
   Media
---------------------------------------- */

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

img {
  height: auto;
}

/* ----------------------------------------
   Links
---------------------------------------- */

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

/* ----------------------------------------
   Tables
---------------------------------------- */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  padding: 0;
  text-align: left;
  vertical-align: top;
}

/* ----------------------------------------
   Forms (Full Control)
---------------------------------------- */

button,
input,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;

  border: none;
  background: none;

  padding: 0;
  margin: 0;

  font: inherit;
  color: inherit;
  letter-spacing: inherit;

  border-radius: 0;
  box-shadow: none;
}

/* Button */
button {
  cursor: pointer;
}

button:disabled {
  cursor: default;
}

/* Textarea */
textarea {
  resize: none;
}

/* Safari Search Fix */
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* Number Input Fix */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

/* Fieldset */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/* Label */
label {
  cursor: pointer;
}

/* ----------------------------------------
   Interactive
---------------------------------------- */

details {
  display: block;
}

summary {
  display: list-item;
}

/* ----------------------------------------
   Accessibility
---------------------------------------- */

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* ----------------------------------------
   Misc
---------------------------------------- */

hr {
  border: 0;
  border-top: 1px solid currentColor;
  margin: 0;
}