/* =========================
   CSS Reset & Normalization
   ========================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  background: #fff;
}
body {
  min-height: 100vh;
  background: #F5F5F3;
  color: #1E2227;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  transition: color 0.25s, background 0.25s;
}
ol, ul {
  list-style: none;
}
img {
  border-style: none;
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  border: none;
  cursor: pointer;
  background: none;
  font-family: inherit;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}
:focus {
  outline: 2px dashed #C9241C;
  outline-offset: 2px;
}

/* ================
   Custom Variables
   ================ */
:root {
  --primary: #1E2227;
  --secondary: #C9241C;
  --accent: #F5F5F3;
  --brand-gradient: linear-gradient(90deg, #C9241C 0%, #1E2227 100%);
  --card-shadow: 0 4px 24px rgba(30,34,39,0.11), 0 1.5px 5px rgba(201,36,28,0.09);
  --radius: 18px;
  --radius-small: 9px;
  --container-max: 1180px;
  --font-display: 'Montserrat', 'Arial Black', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ===========
   Typography
   =========== */
body {
  font-size: 16px;
  line-height: 1.6;
  font-family: var(--font-body);
  background: var(--accent);
  color: var(--primary);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 1.2px;
}
h1 {
  font-size: 2.75rem;  /* 44px */
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem; /* 22px */
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 9px;
}
p, ul, ol, .text-section {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 15px;
}
b {
  font-weight: 700;
}
.text-section {
  max-width: 650px;
}

/* Artistic font for hero/display headings */
.hero h1 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-size: 3rem;
  line-height: 1.14;
  color: var(--secondary);
  letter-spacing: 2px;
  text-shadow: 2px 4px 18px rgba(201,36,28,0.07);
}

/* ================
   Container/Layout
   ================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 22px;
  padding-right: 22px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
}

@media (max-width: 768px) {
  .section {
    padding: 28px 6px;
    margin-bottom: 40px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* ===============
   Header/Layout
   =============== */
header {
  background: #fff;
  box-shadow: 0 2px 14px rgba(30,34,39,0.07);
  position: sticky;
  top: 0;
  z-index: 25;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}

/* Main Navigation */
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.23s, color 0.2s;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--secondary);
  border-bottom: 2.5px solid var(--secondary);
}
/* CTA in header */
.cta.primary {
  background: var(--brand-gradient);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.07rem;
  padding: 11px 30px;
  border-radius: var(--radius-small);
  box-shadow: 0 3px 16px rgba(201,36,28,0.08);
  letter-spacing: 1.1px;
  display: inline-block;
  margin-left: 30px;
  transition: box-shadow 0.23s, background 0.23s, color 0.21s;
  position: relative;
}
.cta.primary:hover,
.cta.primary:focus {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 6px 26px rgba(30,34,39,0.17);
  transform: translateY(-2px) scale(1.04);
}

/* ================
   MOBILE NAVIGATION
   ================ */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: #fff;
  font-size: 2.1rem;
  padding: 0 16px;
  border-radius: 9px;
  margin-left: 16px;
  min-width: 44px;
  min-height: 44px;
  z-index: 31;
  box-shadow: 0 2px 8px rgba(201,36,28,0.13);
  transition: background 0.2s, color 0.2s, box-shadow 0.22s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 14px rgba(30,34,39,0.14);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(.71,-0.01,.27,1.02);
  box-shadow: -3px 0 24px rgba(30,34,39,0.11);
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: var(--secondary);
  color: #fff;
  font-size: 2.4rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(30,34,39,0.12);
  z-index: 1001;
  transition: background 0.19s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 90px;
  align-items: flex-start;
  padding-left: 38px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--secondary);
  padding: 10px 0;
  margin-bottom: 8px;
  border-bottom: 2px solid transparent;
  width: 100%;
  transition: color 0.2s, border-color 0.2s;
}
.mobile-nav a:hover {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 14px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .cta.primary {
    padding: 9px 16px;
    margin-left: 11px;
    font-size: 1rem;
  }
}

/* ===============
   HERO SECTION
   =============== */
.hero {
  background: var(--brand-gradient);
  color: #fff;
  padding: 70px 0 60px 0;
  border-radius: 0 0 45px 45px;
  box-shadow: 0 8px 32px rgba(30,34,39,0.06);
  margin-bottom: 60px;
}
.hero .container {
  align-items: stretch;
}
.hero .content-wrapper {
  align-items: flex-start;
  color: #fff;
  gap: 18px;
}
.hero h1 {
  color: #fff;
  text-shadow: 0 4px 16px rgba(30,34,39,0.15);
  font-size: 2.8rem;
}
.hero p {
  color: #fff;
  font-size: 1.17rem;
  margin-bottom: 18px;
}
.hero .cta.primary {
  background: #fff;
  color: var(--secondary);
  border-radius: 17px;
  font-size: 1.08rem;
  box-shadow: 0 2px 10px rgba(30,34,39,0.17);
}
.hero .cta.primary:hover,
.hero .cta.primary:focus {
  background: var(--secondary);
  color: #fff;
}
@media (max-width: 768px) {
  .hero {
    padding: 40px 0 35px 0;
    margin-bottom: 36px;
    border-radius: 0 0 24px 24px;
  }
  .hero h1 {
    font-size: 2.1rem;
  }
}

/* =============
   CARD LAYOUTS
   ============= */
.features-grid, .season-grid, .outfit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.feature, .season, .outfit {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 34px 30px 28px 30px;
  flex: 1 1 240px;
  min-width: 240px;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  transition: box-shadow 0.24s, transform 0.24s;
}
.feature:hover, .season:hover, .outfit:hover {
  box-shadow: 0 8px 32px rgba(201,36,28,0.2);
  transform: translateY(-6px) scale(1.03);
}
.feature img, .season img, .outfit img {
  width: 46px;
  height: 46px;
  margin-bottom: 10px;
  filter: drop-shadow(0 4px 10px rgba(201,36,28,0.07));
}
.feature h3, .season h3, .outfit h3 {
  font-family: var(--font-display);
  font-size: 1.17rem;
  margin-bottom: 7px;
  color: var(--secondary);
  letter-spacing: 1.1px;
}
@media (max-width: 768px) {
  .features-grid, .season-grid, .outfit-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature, .season, .outfit {
    max-width: 100%;
    min-width: unset;
    padding: 24px 14px 18px 14px;
  }
}

/* -------------
   .card, .card-container
   ------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 26px 22px 26px;
  flex: 1 1 270px;
  min-width: 250px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 7px 30px rgba(201,36,28,0.13);
  transform: translateY(-4px) scale(1.02);
}
@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
    gap: 15px;
  }
  .card {
    min-width: unset;
    padding: 16px 9px 14px 13px;
  }
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}
/* ================
   TEXT-IMAGE SECTION
   ================ */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ================
   TESTIMONIAL / REVIEW STYLES
   ================ */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 3px 16px rgba(30,34,39,0.14);
  margin-bottom: 20px;
  color: #1E2227;
}
.testimonial-card .testimonial-text {
  font-size: 1.05rem;
  line-height: 1.5;
  color: #1E2227;
}
.testimonial-card .testimonial-author {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: 7px;
}
@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 15px 8px;
    margin-bottom: 16px;
  }
}

/* ================
   FEATURE ITEM
   ================ */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ================
   LISTS & STEPS
   ================ */
.icon-list img,
.contact-list img {
  width: 30px;
  height: 30px;
  margin-right: 13px;
  vertical-align: middle;
}
.icon-list li,
.contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--primary);
}
.service-list li,
.price-list li,
.benefits-list li,
.advice-list li,
.tip-list li {
  margin-bottom: 15px;
  font-size: 1rem;
}
ol.step-list {
  margin-left: 18px;
}
ol.step-list li {
  margin-bottom: 14px;
  font-size: 1rem;
}

/* ================
   BUTTONS & LINKS
   ================ */
a.cta.primary,
button.cta.primary {
  background: var(--brand-gradient);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.05rem;
  padding: 13px 38px;
  border-radius: var(--radius-small);
  box-shadow: 0 3px 18px rgba(201,36,28,0.10);
  letter-spacing: 1.1px;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 10px;
  position: relative;
  transition: box-shadow 0.23s, background 0.23s, color 0.21s, transform 0.18s;
}
a.cta.primary:hover,
button.cta.primary:hover,
a.cta.primary:focus,
button.cta.primary:focus {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-3px) scale(1.045);
  box-shadow: 0 7px 19px rgba(30,34,39,0.15);
}

a.cta.secondary,
button.cta.secondary {
  background: #fff;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  border-radius: var(--radius-small);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 12px 30px;
  box-shadow: 0 2px 11px rgba(201,36,28,0.04);
  letter-spacing: 1.02px;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 10px;
  transition: background 0.22s, color 0.22s, border 0.22s, box-shadow 0.22s;
}
a.cta.secondary:hover,
a.cta.secondary:focus,
button.cta.secondary:hover,
button.cta.secondary:focus {
  background: var(--secondary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 6px 14px rgba(30,34,39,0.13);
}

/* Footer */
footer {
  background: #1E2227;
  color: #f5f5f3;
  padding: 38px 0 22px 0;
}
footer .container {
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.footer-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  align-items: center;
  justify-content: center;
}
.footer-nav a {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  opacity: 0.9;
  letter-spacing: 0.7px;
  transition: opacity 0.2s, text-decoration-color 0.15s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  opacity: 1;
  color: var(--secondary);
  text-decoration: underline dotted var(--secondary) 2px;
}
.footer-contact {
  color: #f5f5f3;
  font-size: 0.98rem;
  opacity: 0.85;
  margin-bottom: 3px;
}
@media (max-width: 768px) {
  footer {
    padding: 18px 0 12px 0;
  }
  .footer-nav {
    gap: 13px;
    font-size: 0.95rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-contact {
    margin-bottom: 2px;
    font-size: 0.97rem;
  }
}

/* ================
   COOKIE BANNER & MODAL
   ================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 2.5px solid var(--secondary);
  box-shadow: 0 -4px 28px rgba(30,34,39,0.13);
  z-index: 10000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 38px;
  gap: 24px;
  font-size: 1rem;
  animation: cookieSlideIn 0.8s cubic-bezier(.77, 0, .175, 1);
}
@keyframes cookieSlideIn {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin-right: 18px;
  color: var(--primary);
  max-width: 560px;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  min-width: 115px;
  padding: 10px 0;
  border-radius: var(--radius-small);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  margin-left: 4px;
  margin-right: 4px;
  box-shadow: 0 2px 7px rgba(30,34,39,0.07);
  transition: box-shadow 0.15s, background 0.18s, color 0.18s;
}
.cookie-banner .accept {
  background: var(--secondary);
  color: #fff;
  border: 2px solid var(--secondary);
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: var(--primary);
  border-color: var(--primary);
}
.cookie-banner .reject {
  background: #fff;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: var(--secondary);
  color: #fff;
  border-color: var(--primary);
}
.cookie-banner .settings {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: var(--primary);
  color: #fff;
  border-color: var(--secondary);
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    padding: 16px 6px;
    align-items: flex-start;
  }
  .cookie-banner .cookie-btns {
    gap: 8px;
    margin-top: 8px;
  }
  .cookie-banner p {
    margin-right: 0;
    font-size: .92rem;
  }
}

.cookie-modal {
  position: fixed;
  left: 0; right: 0;
  top: 0; bottom: 0;
  background: rgba(30,34,39,0.34);
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalFadeIn 0.45s cubic-bezier(.7,0,.23,1);
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: var(--radius);
  padding: 38px 36px 26px 36px;
  max-width: 420px;
  min-width: 290px;
  box-shadow: 0 8px 58px rgba(201,36,28,0.18);
  z-index: 12010;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal-content h3 {
  color: var(--secondary);
  font-size: 1.24rem;
  margin-bottom: 10px;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.03rem;
  margin-bottom: 13px;
  cursor: pointer;
}
.cookie-modal-content input[type='checkbox'] {
  appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid var(--secondary);
  border-radius: 7px;
  background: #fff;
  transition: border 0.18s, background 0.18s;
  position: relative;
}
.cookie-modal-content input[type='checkbox']:checked {
  background: var(--secondary);
  border-color: var(--secondary);
}
.cookie-modal-content input[type='checkbox']:checked::after {
  content: '';
  display: block;
  position: absolute;
  top: 3px; left: 7px;
  width: 4px; height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(38deg);
}
.cookie-modal-content .modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal-content .close {
  position: absolute;
  top: 12px;
  right: 20px;
  background: var(--primary);
  color: #fff;
  font-size: 1.5rem;
  width: 35px;  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  z-index: 2;
}
.cookie-modal-content .close:hover,
.cookie-modal-content .close:focus {
  background: var(--secondary);
}
.cookie-modal-content .category-always {
  color: #939393;
  font-size: .93rem;
  margin-left: 33px;
  margin-bottom: 9px;
}
@media (max-width: 780px) {
  .cookie-modal-content {
    padding: 22px 7px 20px 22px;
    max-width: 92vw;
    min-width: 0;
  }
}

/* =============
   RESPONSIVE UTILS
   ============= */
@media (max-width: 650px) {
  br {
    display: none;
  }
}
/* Responsive typography for headings */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  h3 {
    font-size: 1.11rem;
  }
}

/* =====================
   ARTISTIC / CREATIVE DETAILS
   ===================== */
.section {
  border-left: 10px solid var(--secondary);
  border-image: linear-gradient(180deg,#C9241C,#1E2227) 1 100%;
  background: #fff url('../assets/bg-artistic.svg') bottom right no-repeat;
  background-size: 160px;
  position: relative;
  /* Add an artistic accent effect */
  box-shadow: 0 4px 24px rgba(30,34,39,0.11), 0 1.5px 5px rgba(201,36,28,0.09), 0 0px 0px #0000;
}
@media (max-width: 768px) {
  .section {
    border-left: 5px solid var(--secondary);
    background-size: 80px;
  }
}

.feature:before, .season:before, .outfit:before {
  content: '';
  display: block;
  position: absolute;
  left: -15px; top: -9px;
  width: 28px; height: 28px;
  background: var(--secondary);
  border-radius: 50% 39% 69% 47% / 41% 51% 49% 59%;
  opacity: 0.10;
  z-index: 0;
  filter: blur(5px);
}

.feature:hover:before, .season:hover:before, .outfit:hover:before {
  opacity: 0.19;
}
/* Artistic accent dots */
.section:after {
  content: '';
  display: block;
  position: absolute;
  right: 32px; bottom: 19px;
  width: 19px; height: 19px;
  background: var(--secondary);
  opacity: 0.15;
  border-radius: 59% 35% 75% 61% / 38% 62% 38% 62%;
  z-index: 0;
}
/* Hide section accents if asset not present on some pages */
@media (max-width: 650px) {
  .section:after {
    right: 7px;
    bottom: 7px;
    width: 11px; height: 11px;
  }
}

/* Misc: Spacing between all card/section elements */
.section, .card, .feature, .season, .outfit, .testimonial-card {
  margin-bottom: 24px;
}
/* Avoid content overlap */
section + section, .section + .section, .card + .card, .feature + .feature, .outfit + .outfit {
  margin-top: 20px;
}

/* =============
   Misc: Forms (Contact, etc)
   ============= */
input[type="text"], input[type="email"], textarea {
  border: 2px solid var(--primary);
  border-radius: 9px;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: var(--font-body);
  background: #fff;
  margin-bottom: 18px;
  width: 100%;
  transition: border 0.21s, box-shadow 0.21s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 2px 12px rgba(201,36,28,0.11);
}
::placeholder {
  color: #cccccc;
  opacity: 1;
  font-style: italic;
}

table { border-collapse: collapse; width: 100%; }
th, td {
  text-align: left; padding: 10px 6px; border-bottom: 1px solid #ececec;
}

/* =============
   Scrollbar Styling
   ============= */
body::-webkit-scrollbar {
  width: 13px;
  background: #ececec;
}
body::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 7px;
}

/* =============
   Accessibility
   ============= */
@media (prefers-contrast: more) {
  .cta.primary,
  .cta.secondary {
    box-shadow: none;
    text-shadow: none;
  }
}

/* === END === */
