/* ================================================================
   Vitico Blind — Custom Styles
   Companion stylesheet to Tailwind utility classes used in index.html
   ================================================================ */

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1a1814;
  background: #faf7f1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  letter-spacing: -0.01em;
}

/* ---------- Logo lockup in header / footer ---------- */
.logo-mark {
  width: 55px;
  height: 55px;
  border-radius: 9999px;
/*  background: #0a0a0a;*/
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /*border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 4px 18px -8px rgba(0, 0, 0, 0.4);*/
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.logo-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
}

.logo-text .accent { color: #c9a24a; }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Hover lift ---------- */
.lift {
  transition: transform .4s ease, box-shadow .4s ease;
}
.lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -16px rgba(26, 24, 20, 0.25);
}

/* ---------- Nav underline ---------- */
.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: #1a1814;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.nav-link:hover::after { transform: scaleX(1); }

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #1a1814;
  color: #faf7f1;
  padding: .95rem 1.6rem;
  border-radius: 9999px;
  font-weight: 500;
  letter-spacing: .02em;
  transition: all .35s ease;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: #c9a24a;
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(201, 162, 74, 0.55);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: #1a1814;
  padding: .95rem 1.6rem;
  border-radius: 9999px;
  border: 1px solid #1a1814;
  font-weight: 500;
  letter-spacing: .02em;
  transition: all .35s ease;
  cursor: pointer;
}
.btn-secondary:hover {
  background: #1a1814;
  color: #faf7f1;
}

/* ---------- Image overlays for category cards ---------- */
.img-mask::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.6) 100%);
  border-radius: inherit;
}

/* ---------- Partner wordmarks ---------- */
.partner {
  filter: grayscale(100%);
  opacity: .55;
  transition: all .35s ease;
}
.partner:hover {
  filter: none;
  opacity: 1;
}

/* ---------- Form fields ---------- */
.field {
  width: 100%;
  background: transparent;
  border: 1px solid #e7e1d4;
  border-radius: 14px;
  padding: .95rem 1.1rem;
  color: #1a1814;
  transition: border-color .25s ease, box-shadow .25s ease;
  font-size: 0.95rem;
  font-family: inherit;
}
.field:focus {
  outline: none;
  border-color: #c9a24a;
  box-shadow: 0 0 0 4px rgba(201, 162, 74, 0.14);
}
.field::placeholder { color: #9a9389; }

label.lbl {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #5b5750;
  margin-bottom: .5rem;
  display: block;
  font-weight: 500;
}

/* ---------- Misc ---------- */
.dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: #c9a24a;
  display: inline-block;
}

/* ---------- Header transitions ---------- */
#site-header {
  transition: box-shadow .4s ease, background-color .4s ease, border-color .4s ease;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .lift { transition: none; }
}


/* ---------- A2P consent and form utilities ---------- */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.sms-consent-card {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  border: 1px solid #e7e1d4;
  border-radius: 16px;
  padding: 1rem;
  background: rgba(250, 247, 241, 0.72);
  color: #5b5750;
  font-size: .82rem;
  line-height: 1.55;
}

.consent-checkbox {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: .15rem;
  accent-color: #c9a24a;
  flex: 0 0 auto;
}

.a2p-links {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-wrap: wrap;
  color: #5b5750;
  font-size: .82rem;
  font-weight: 600;
}

.a2p-links a,
.policy-link {
  color: #8a6e2f;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content h1,
.legal-content h2 {
  color: #1a1814;
}

.legal-content p,
.legal-content li {
  color: #5b5750;
  line-height: 1.8;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.25rem;
}
