:root {
  --red: #ee0000;
  --red-dark: #b90000;
  --ink: #202020;
  --muted: #666;
  --line: #e8e8e8;
  --soft: #f6f6f6;
  --white: #fff;
  --shadow: 0 22px 60px rgba(20, 20, 20, 0.12);
  font-family: Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(180px, 340px) 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(232, 232, 232, 0.86);
  backdrop-filter: blur(18px);
}

.brand img {
  display: block;
  width: min(100%, 330px);
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 26px);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  white-space: nowrap;
}

.nav-links a,
.footer-links a {
  text-decoration: none;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--red);
}

.nav-links a.active {
  color: var(--red);
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.header-call {
  color: var(--white);
  background: var(--red);
}

.button:hover,
.header-call:hover,
.branch-actions a:hover {
  transform: translateY(-2px);
}

.hero {
  min-height: min(760px, calc(100vh - 84px));
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  padding: clamp(44px, 7vw, 96px) clamp(20px, 5vw, 72px) 44px;
}

.hero-copy {
  min-width: 0;
  max-width: 650px;
}

.established-mark {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero p {
  margin: 26px 0 0;
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button-primary {
  color: var(--white);
  background: var(--red);
}

.button-secondary {
  color: var(--red);
  background: var(--white);
  border: 1px solid var(--red);
}

.button-light {
  color: var(--red);
  background: var(--white);
}

.button-primary:hover,
.header-call:hover {
  background: var(--red-dark);
}

.hero-media {
  position: relative;
  min-width: 0;
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-strip div {
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--white);
}

.intro-strip strong {
  display: block;
  color: var(--red);
  font-size: 1.35rem;
  line-height: 1.2;
}

.intro-strip span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading h2,
.visit-band h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p,
.visit-band p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  overflow-wrap: break-word;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
}

.product-card div {
  padding: 24px;
}

.product-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.product-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--red);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  color: var(--red-dark);
}

.section-action {
  margin-top: 28px;
}

.page-hero {
  padding: clamp(60px, 9vw, 120px) clamp(20px, 5vw, 72px);
  background: var(--white);
}

.page-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.5rem, 5.8vw, 6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.24rem);
  line-height: 1.65;
}

.split-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.split-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-list {
  display: grid;
  gap: 26px;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-row.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
}

.service-row.reverse img {
  order: 2;
}

.service-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.service-row h3,
.quote-form h2,
.quote-panel h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  line-height: 1.08;
}

.service-row p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}

.row-action {
  margin-top: 20px;
}

.range-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.range-card,
.support-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.range-card h3,
.support-grid h3 {
  margin: 0;
  color: var(--red);
  font-size: 1.25rem;
  line-height: 1.15;
}

.range-card p,
.support-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  color: var(--white);
  background: var(--red);
}

.feature-band h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}

.feature-band p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  line-height: 1.65;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.feature-list span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trade-section {
  background: var(--soft);
}

.trade-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trade-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.trade-grid h3 {
  margin: 0;
  color: var(--red);
  font-size: 1.25rem;
  line-height: 1.15;
}

.trade-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.supplier-gallery {
  background: var(--soft);
}

.image-range-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.image-range-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.image-range-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  background: var(--soft);
}

.image-range-grid h3 {
  margin: 18px 18px 0;
  color: var(--red);
  font-size: 1.08rem;
  line-height: 1.2;
}

.image-range-grid p {
  margin: 8px 18px 20px;
  color: var(--muted);
  line-height: 1.5;
}

.brand-section {
  background: var(--white);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.brand-grid article {
  min-height: 136px;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.brand-grid img {
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
  filter: saturate(0.94);
}

.text-brand span {
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 800;
  text-align: center;
}

.premium-brands {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.brand-wordmark {
  min-height: 142px;
  gap: 8px;
  text-align: center;
  overflow: hidden;
}

.brand-wordmark strong {
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.brand-wordmark span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-wordmark::before {
  content: "";
  width: 34px;
  height: 4px;
  border-radius: 99px;
  background: var(--red);
}

.brand-wordmark.pierre strong {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.brand-wordmark.tela {
  background: #111;
}

.brand-wordmark.tela strong {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-wordmark.tela::before {
  width: 72px;
  height: 6px;
  background: linear-gradient(90deg, #009a44 0 33%, #fff 33% 66%, #e00000 66%);
}

.brand-wordmark.casa strong,
.brand-wordmark.horrockses strong {
  font-family: Georgia, "Times New Roman", serif;
}

.brand-wordmark.luminos strong {
  color: #0a3471;
}

.brand-wordmark.blindquip::before {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #fff 0 40%, #b82b2d 41% 100%);
}

.brand-wordmark.loomcraft strong,
.brand-wordmark.aranda strong {
  color: #1b3f5d;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-wordmark.sesli strong {
  color: #063c73;
}

.brand-wordmark.sesli::before {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #073b70 0 52%, #f4a028 53%);
}

.single-brand {
  grid-template-columns: 1fr;
}

.blanket-gallery img {
  object-position: center;
}

.visit-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: clamp(48px, 7vw, 84px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--red);
}

.visit-band p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
}

.facebook-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(36px, 5vw, 58px) clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.facebook-band h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1.04;
}

.facebook-band p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.corporate-signature {
  padding: clamp(34px, 5vw, 54px) clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.corporate-signature div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 34px);
  max-width: 980px;
  margin: 0 auto;
}

.corporate-signature span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.corporate-signature img {
  width: min(360px, 52vw);
  height: auto;
  display: block;
}

.branches-section {
  background: var(--soft);
}

.no-top-padding {
  padding-top: 0;
}

.branch-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 28px;
  align-items: end;
}

.search-field span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.search-field input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.branch-card {
  display: grid;
  gap: 18px;
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.branch-card h3 {
  margin: 0;
  color: var(--red);
  font-size: 1.18rem;
}

.branch-card address {
  color: var(--muted);
  font-style: normal;
  line-height: 1.5;
}

.branch-phone {
  font-weight: 800;
}

.branch-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-self: end;
}

.branch-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease;
}

.branch-actions a:first-child {
  color: var(--white);
  background: var(--red);
}

.branch-actions a:last-child {
  color: var(--ink);
  background: var(--soft);
}

.empty-state {
  margin: 28px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.quote-hero {
  padding-bottom: clamp(34px, 5vw, 62px);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
  background: var(--soft);
}

.quote-form,
.quote-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.quote-form {
  display: grid;
  gap: 26px;
  padding: clamp(22px, 4vw, 38px);
}

.form-section {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 500;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus,
.search-field input:focus {
  outline: 3px solid rgba(238, 0, 0, 0.14);
  border-color: var(--red);
}

.full-field {
  margin-top: 4px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.form-submit {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.quote-panel {
  position: sticky;
  top: 110px;
  padding: 28px;
}

.quote-card {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding: 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
}

.quote-card span {
  font-weight: 800;
}

.head-office-section {
  padding-top: 0;
  padding-bottom: clamp(36px, 5vw, 64px);
}

.head-office-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(20, 20, 20, 0.08);
}

.head-office-card h2 {
  margin: 0;
  color: var(--red);
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.head-office-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.head-office-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.status-page {
  min-height: 62vh;
  display: grid;
  place-items: center;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 72px);
  text-align: center;
}

.status-card {
  max-width: 720px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.status-card h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
}

.status-card p {
  color: var(--muted);
  line-height: 1.65;
}

.footer {
  display: grid;
  grid-template-columns: minmax(180px, 360px) 1fr;
  gap: 28px;
  align-items: center;
  padding: 34px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer img {
  max-width: 300px;
  width: 100%;
  display: block;
}

.footer p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .hero-media img {
    min-height: 420px;
  }

  .product-grid,
  .range-grid,
  .branch-grid,
  .split-hero,
  .quote-layout,
  .feature-band,
  .support-grid,
  .image-range-grid,
  .brand-grid,
  .trade-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-hero,
  .quote-layout,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .quote-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .header-call {
    width: 100%;
    max-width: 342px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    width: 100vw;
    padding-top: 34px;
    padding-right: 24px;
    padding-left: 24px;
    overflow: hidden;
  }

  .hero-copy {
    width: 100%;
    max-width: 342px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 9vw, 2.35rem);
    line-height: 1.02;
  }

  .hero p {
    width: 100%;
    max-width: 342px;
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    max-width: 342px;
  }

  .hero-actions,
  .branch-actions,
  .visit-band,
  .facebook-band,
  .branch-heading,
  .head-office-card,
  .footer {
    grid-template-columns: 1fr;
  }

  .head-office-actions {
    display: grid;
  }

  .hero-actions .button,
  .button-light {
    width: 100%;
  }

  .intro-strip,
  .product-grid,
  .range-grid,
  .branch-grid,
  .feature-list,
  .support-grid,
  .image-range-grid,
  .brand-grid,
  .trade-grid,
  .form-grid,
  .service-row,
  .service-row.reverse {
    grid-template-columns: 1fr;
  }

  .service-row.reverse img {
    order: 0;
  }

  .page-hero h1 {
    max-width: 342px;
    font-size: clamp(2.25rem, 10vw, 3.4rem);
    line-height: 1.04;
  }

  .page-hero p {
    max-width: 342px;
    overflow-wrap: break-word;
  }

  .hero-media,
  .hero-media img {
    width: 100%;
    max-width: 342px;
    min-height: 320px;
  }

  .product-card div,
  .branch-card {
    padding: 20px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .corporate-signature div {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .corporate-signature span {
    text-align: center;
  }
}
