/* ==========================================================================
   BRIIX Digital Product Catalogue — Core stylesheet
   ========================================================================== */

:root {
  --ink: #111111;
  --bg: #f7f7f5;
  --white: #ffffff;
  --muted: #737373;
  --line: #e5e5e5;
  --accent: #f2a03d; /* BRIIX accent — used sparingly */

  --font: "Inter", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif;

  --max: 1440px;
  --gutter: 40px;
  --header-h: 88px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 12px 20px;
  z-index: 200;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* Typography ------------------------------------------------------------- */

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.display {
  font-size: clamp(44px, 7.4vw, 108px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.94;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(30px, 4.4vw, 62px);
  text-transform: uppercase;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.lede {
  color: var(--muted);
  font-size: 17px;
  max-width: 52ch;
  line-height: 1.65;
}

.eyebrow,
.label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.mono {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

/* Buttons ---------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
.btn:hover {
  background: transparent;
  color: var(--ink);
}
.btn .arrow {
  transition: transform 0.3s var(--ease);
}
.btn:hover .arrow {
  transform: translateX(5px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.btn--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}
.btn--accent:hover {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.link-arrow .arrow {
  transition: transform 0.3s var(--ease);
}
.link-arrow:hover .arrow {
  transform: translateX(5px);
}

/* Header ----------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(247, 247, 245, 0.92);
  backdrop-filter: saturate(1.1) blur(6px);
  border-bottom-color: var(--line);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: height 0.3s var(--ease);
}
.site-header.is-scrolled .header-inner {
  height: 68px;
}

.brand img {
  height: 34px;
  width: auto;
  transition: height 0.3s var(--ease);
}
.site-header.is-scrolled .brand img {
  height: 28px;
}

.nav {
  display: flex;
  gap: 38px;
}
.nav a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
  color: var(--ink);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--ink);
  transition: width 0.3s var(--ease);
}
.nav a:hover::after,
.nav a[aria-current="page"]::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.icon-btn:hover {
  border-color: var(--line);
  background: var(--white);
}
.menu-btn {
  display: none;
}

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 120;
  padding: 24px var(--gutter) 40px;
  display: none;
  flex-direction: column;
}
.mobile-menu[data-open="true"] {
  display: flex;
  animation: fade-in 0.25s var(--ease);
}
.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.mobile-menu nav {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu nav a {
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

/* Hero ------------------------------------------------------------------- */

.hero {
  padding: clamp(48px, 7vw, 96px) 0 clamp(64px, 8vw, 120px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
.hero-copy .display {
  margin-bottom: 28px;
}
.hero-copy .lede {
  margin-bottom: 40px;
}
.hero-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--white);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-meta {
  display: flex;
  gap: 40px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero-meta div strong {
  display: block;
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 600;
}

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

.section {
  padding: clamp(56px, 7vw, 110px) 0;
  border-top: 1px solid var(--line);
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(32px, 4vw, 56px);
}

/* Category cards */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.6vw, 24px);
}
.category-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 40px 32px 32px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.3s var(--ease);
}
.category-card:hover {
  background: var(--bg);
}
.category-card h3 {
  font-size: clamp(22px, 2vw, 30px);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.category-card .count {
  color: var(--muted);
  font-size: 13px;
}
.category-card .link-arrow {
  margin-top: 28px;
  color: var(--ink);
}
.category-card .index {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.18em;
}

/* Product grid ----------------------------------------------------------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
}
.product-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  display: flex;
  flex-direction: column;
  background: transparent;
}
.product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-card__media img {
  transform: scale(1.03);
}
.product-card__body {
  padding: 18px 2px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.product-card__name {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.product-card__meta {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.product-card__info {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}
.product-card__arrow {
  transition: transform 0.3s var(--ease);
  color: var(--muted);
  flex: none;
  margin-top: 4px;
}
.product-card:hover .product-card__arrow {
  transform: translateX(5px);
  color: var(--ink);
}

/* Page header (catalogue / search / about / contact) ---------------------- */

.page-head {
  padding: clamp(40px, 6vw, 88px) 0 clamp(28px, 3vw, 48px);
}
.page-head .display {
  margin-bottom: 20px;
}

/* Search field */
.search-field {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--ink);
  padding: 14px 0;
  max-width: 760px;
}
.search-field input {
  flex: 1;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: clamp(16px, 2vw, 22px);
  letter-spacing: -0.01em;
  padding: 0;
  color: var(--ink);
}
.search-field input::placeholder {
  color: var(--muted);
}
.search-field input:focus {
  outline: none;
}
.search-field--lg {
  max-width: 100%;
}

/* Catalogue layout ------------------------------------------------------- */

.catalogue-layout {
  display: grid;
  grid-template-columns: 232px 1fr;
  gap: clamp(28px, 4vw, 64px);
  padding-bottom: 100px;
  align-items: start;
}

.filters {
  position: sticky;
  top: 108px;
}
.filters__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 8px;
}
.filter-group {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.filter-group h3 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 14px;
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  font-size: 14px;
  cursor: pointer;
}
.filter-option input {
  appearance: none;
  width: 14px;
  height: 14px;
  border: 1px solid var(--muted);
  border-radius: 1px;
  flex: none;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.filter-option input:checked {
  background: var(--ink);
  border-color: var(--ink);
}
.filter-option:hover {
  color: var(--ink);
}
.clear-btn {
  background: none;
  border: 0;
  padding: 0;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.clear-btn:hover {
  color: var(--ink);
}

.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.filter-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--ink);
  background: transparent;
  padding: 11px 18px;
  border-radius: 2px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Filter drawer (mobile) */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.35);
  z-index: 130;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.drawer-backdrop[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
}
.drawer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 86vh;
  background: var(--bg);
  z-index: 140;
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}
.drawer[data-open="true"] {
  transform: translateY(0);
}
.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--gutter);
  border-bottom: 1px solid var(--line);
}
.drawer__body {
  overflow-y: auto;
  padding: 4px var(--gutter) 20px;
  -webkit-overflow-scrolling: touch;
}
.drawer__foot {
  padding: 16px var(--gutter) calc(16px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  display: flex;
  gap: 12px;
}
.drawer__foot .btn {
  flex: 1;
  justify-content: center;
}

/* States ----------------------------------------------------------------- */

.state {
  padding: 90px 0;
  text-align: center;
  border: 1px solid var(--line);
  background: var(--white);
}
.state h3 {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.state p {
  color: var(--muted);
  margin: 0 0 24px;
}
.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.skeleton {
  background: linear-gradient(90deg, #eeeeec, #f4f4f2, #eeeeec);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite linear;
  aspect-ratio: 1;
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Product detail --------------------------------------------------------- */

.breadcrumb {
  padding: 26px 0;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.breadcrumb a:hover {
  color: var(--ink);
}

.product-hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  padding-bottom: clamp(48px, 6vw, 96px);
  align-items: start;
}

.gallery__main {
  aspect-ratio: 1 / 1;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}
.gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__thumbs {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}
.gallery__thumbs::-webkit-scrollbar {
  display: none;
}
.gallery__thumbs button {
  width: 84px;
  height: 84px;
  flex: none;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0;
  overflow: hidden;
  transition: border-color 0.25s var(--ease);
}
.gallery__thumbs button[aria-selected="true"] {
  border-color: var(--ink);
}
.gallery__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info h1 {
  font-size: clamp(34px, 4.4vw, 60px);
  text-transform: uppercase;
  margin: 12px 0 18px;
}
.product-info .taxonomy {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.product-info .short {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  max-width: 52ch;
}
.availability-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.availability-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.spec-list {
  margin: 34px 0 0;
  border-top: 1px solid var(--line);
}
.spec-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.spec-row dt {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 2px 0 0;
}
.spec-row dd {
  margin: 0;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.prose p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 74ch;
}
.prose p.intro {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(247, 247, 245, 0.96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.sticky-cta .btn {
  width: 100%;
  justify-content: center;
}

/* Toast ------------------------------------------------------------------ */

.toast {
  position: fixed;
  left: 50%;
  bottom: 36px;
  transform: translate(-50%, 20px);
  background: var(--ink);
  color: var(--white);
  padding: 14px 22px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  z-index: 200;
}
.toast[data-show="true"] {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Editorial / about / contact -------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.figure {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--white);
}
.figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.6vw, 24px);
}
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px 30px;
}
.info-card h3 {
  font-size: 20px;
  text-transform: uppercase;
  margin: 14px 0 10px;
}
.info-card p {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 22px;
}

/* Footer ----------------------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: clamp(48px, 6vw, 88px) 0 40px;
  background: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-grid h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 16px;
}
.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 14px;
}
.footer-grid a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-bottom {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 12px;
}
.footer-brand img {
  height: 34px;
  margin-bottom: 18px;
}
.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  max-width: 34ch;
  margin: 0;
}

/* Motion ----------------------------------------------------------------- */

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   New arrivals — hero cards
   ========================================================================== */
.arrivals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(16px, 2vw, 28px);
}
.arrival-card {
  display: flex;
  flex-direction: column;
  background: var(--white, #fff);
  border: 1px solid var(--border, #e5e5e5);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}
.arrival-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f2f2f0;
}
.arrival-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.arrival-card:hover .arrival-card__media img { transform: scale(1.04); }
.arrival-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #111;
  color: #fff;
}
.arrival-card__body {
  display: flex;
  gap: 16px;
  padding: clamp(20px, 2vw, 28px);
  border-top: 1px solid var(--border, #e5e5e5);
}
.arrival-card__body .index { font-size: 12px; color: #737373; }
.arrival-card__body h3 { margin: 0 0 6px; font-size: clamp(20px, 2vw, 26px); letter-spacing: -0.02em; }
.arrival-card__meta { font-size: 13px; color: #737373; text-transform: uppercase; letter-spacing: 0.06em; }
.arrival-card__body p { margin: 12px 0 16px; color: #737373; font-size: 15px; line-height: 1.6; }

/* ==========================================================================
   Contact modal
   ========================================================================== */
.contact-modal { position: fixed; inset: 0; z-index: 120; display: none; }
.contact-modal[data-open="true"] { display: block; }
.contact-modal__backdrop { position: absolute; inset: 0; background: rgba(17,17,17,0.5); }
.contact-modal__panel {
  position: relative;
  margin: min(12vh, 120px) auto 0;
  width: min(460px, calc(100% - 32px));
  background: #fff;
  border: 1px solid var(--border, #e5e5e5);
  padding: clamp(26px, 3vw, 40px);
}
.contact-modal__close { position: absolute; top: 12px; right: 12px; }
.contact-modal__panel h3 { margin: 10px 0 22px; font-size: clamp(24px, 3vw, 32px); letter-spacing: -0.02em; }
.contact-modal__list { list-style: none; margin: 0 0 28px; padding: 0; }
.contact-modal__list li { border-top: 1px solid var(--border, #e5e5e5); }
.contact-modal__list li:last-child { border-bottom: 1px solid var(--border, #e5e5e5); }
.contact-modal__list a { display: block; padding: 14px 0; text-decoration: none; color: #111; font-size: 17px; }
.contact-modal__list a:hover { color: #737373; }
