/*
Theme Name: Sema Ceramics
Theme URI: https://www.semacareamics.com/
Author: Sema Ceramics Limited
Description: A responsive catalogue and company website for Sema Ceramics Limited, designed for Elementor-compatible editing.
Version: 1.5.0
Text Domain: sema-ceramics
*/

:root {
  --sema-navy: #17245f;
  --sema-navy-dark: #0d1647;
  --sema-blue: #26378f;
  --sema-orange: #f59a23;
  --sema-orange-dark: #dc7910;
  --sema-cream: #fff8ed;
  --sema-ink: #20243a;
  --sema-muted: #687086;
  --sema-border: #e5e7ef;
  --sema-surface: #f6f7fb;
  --sema-white: #ffffff;
  --sema-shadow: 0 20px 55px rgba(21, 30, 75, 0.12);
  --sema-radius: 22px;
  --sema-shell: 1180px;
  --sema-font: "Aptos", "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--sema-ink);
  background: var(--sema-white);
  font-family: var(--sema-font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-is-open {
  overflow: hidden;
}

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

a {
  color: var(--sema-blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover,
a:focus {
  color: var(--sema-orange-dark);
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.65em;
  color: var(--sema-navy-dark);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

p {
  margin: 0 0 1rem;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  position: fixed !important;
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  color: var(--sema-white);
  background: var(--sema-navy);
}

.sema-shell {
  width: min(calc(100% - 40px), var(--sema-shell));
  margin-inline: auto;
}

.sema-section {
  padding: clamp(72px, 9vw, 120px) 0;
}

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

.sema-section--cream {
  background: var(--sema-cream);
}

.sema-section--navy {
  color: rgba(255, 255, 255, 0.82);
  background: var(--sema-navy-dark);
}

.sema-section--navy h2,
.sema-section--navy h3 {
  color: var(--sema-white);
}

.sema-section--compact {
  padding-block: clamp(48px, 6vw, 76px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
}

.section-heading > div:first-child {
  max-width: 760px;
}

.section-heading p:last-child {
  max-width: 610px;
  color: var(--sema-muted);
  font-size: 1.08rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--sema-orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 3px;
  content: "";
  background: currentColor;
  border-radius: 999px;
}

.sema-lead {
  color: var(--sema-muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.sema-button {
  display: inline-flex;
  min-height: 52px;
  padding: 13px 24px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--sema-white);
  background: var(--sema-orange);
  border: 2px solid var(--sema-orange);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(245, 154, 35, 0.24);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.sema-button:hover,
.sema-button:focus {
  color: var(--sema-white);
  background: var(--sema-orange-dark);
  border-color: var(--sema-orange-dark);
  box-shadow: 0 14px 30px rgba(220, 121, 16, 0.28);
  transform: translateY(-2px);
}

.sema-button--outline {
  color: var(--sema-navy);
  background: transparent;
  border-color: rgba(23, 36, 95, 0.24);
  box-shadow: none;
}

.sema-button--outline:hover,
.sema-button--outline:focus {
  color: var(--sema-white);
  background: var(--sema-navy);
  border-color: var(--sema-navy);
}

.sema-button--light {
  color: var(--sema-navy);
  background: var(--sema-white);
  border-color: var(--sema-white);
  box-shadow: none;
}

.sema-button--light:hover,
.sema-button--light:focus {
  color: var(--sema-navy);
  background: var(--sema-cream);
  border-color: var(--sema-cream);
}

.sema-button--whatsapp,
.site-footer .sema-button--whatsapp {
  color: #ffffff;
  background: #1fa855;
  border-color: #1fa855;
  box-shadow: 0 10px 24px rgba(31, 168, 85, 0.2);
}

.sema-button--whatsapp span {
  color: #ffffff;
  font-size: 0.74rem;
}

.sema-button--whatsapp:hover,
.sema-button--whatsapp:focus,
.site-footer .sema-button--whatsapp:hover,
.site-footer .sema-button--whatsapp:focus {
  color: #ffffff;
  background: #168746;
  border-color: #168746;
}

.sema-button--small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.9rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.site-topbar {
  position: relative;
  z-index: 40;
  color: rgba(255, 255, 255, 0.82);
  background: var(--sema-navy-dark);
  font-size: 0.84rem;
}

.site-topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.site-topbar__contacts {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(14px, 2vw, 24px);
}

.site-topbar a {
  color: var(--sema-white);
  text-decoration: none;
}

.site-topbar__item {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  transition: color 180ms ease;
}

.site-topbar__item:hover,
.site-topbar__item:focus {
  color: #ffc05e;
}

.site-topbar__item--location {
  margin-right: auto;
}

.site-topbar__icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: sticky;
  z-index: 35;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(23, 36, 95, 0.08);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(12, 22, 67, 0.09);
}

.site-header__inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-brand {
  flex: 0 0 238px;
}

.site-brand__link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--sema-navy);
  text-decoration: none;
}

.site-brand__link:hover,
.site-brand__link:focus {
  color: var(--sema-navy);
}

.site-brand__mark {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  background-color: var(--sema-white);
  background-position: center -2px;
  background-repeat: no-repeat;
  background-size: 150px auto;
  border-radius: 13px;
}

.site-brand__copy {
  display: grid;
  line-height: 1.05;
}

.site-brand__copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.site-brand__copy small {
  margin-top: 4px;
  color: var(--sema-orange-dark);
  font-size: 0.7rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.primary-navigation {
  margin-left: auto;
}

.primary-menu,
.primary-navigation .menu {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.primary-menu a,
.primary-navigation .menu a {
  display: block;
  padding: 13px 12px;
  color: var(--sema-ink);
  border-radius: 9px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-menu a:hover,
.primary-menu a:focus,
.primary-menu .current-menu-item > a,
.primary-navigation .menu a:hover,
.primary-navigation .menu a:focus,
.primary-navigation .current_page_item > a {
  color: var(--sema-navy);
  background: var(--sema-cream);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  background: var(--sema-surface);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle > span:not(.screen-reader-text) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--sema-navy);
  border-radius: 999px;
}

.home-hero {
  position: relative;
  min-height: min(740px, calc(100vh - 124px));
  display: grid;
  overflow: hidden;
  color: var(--sema-white);
  background: var(--sema-navy-dark);
  isolation: isolate;
}

.home-hero::before {
  position: absolute;
  z-index: -2;
  inset: -5%;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.68) 46%, rgba(0, 0, 0, 0.24) 100%), var(--hero-image) center / cover no-repeat;
  animation: sema-ken-burns 18s ease-in-out infinite alternate;
  will-change: transform;
}

.home-hero::after {
  position: absolute;
  z-index: -1;
  right: -10vw;
  bottom: -32vw;
  width: 56vw;
  height: 56vw;
  content: "";
  background: radial-gradient(circle, rgba(245, 154, 35, 0.42), transparent 66%);
}

.home-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  padding-block: clamp(88px, 11vw, 145px);
  align-items: center;
}

.home-hero__copy {
  max-width: 750px;
}

.home-hero h1 {
  color: var(--sema-white);
  text-wrap: balance;
}

.home-hero h1 span {
  color: #ffb23f;
}

.home-hero .sema-lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.8);
}

.home-hero .sema-button--outline {
  color: var(--sema-white);
  border-color: rgba(255, 255, 255, 0.38);
}

.home-hero .sema-button--outline:hover {
  color: var(--sema-navy);
  background: var(--sema-white);
  border-color: var(--sema-white);
}

.hero-proof {
  display: flex;
  margin: 42px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 10px 26px;
  list-style: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-proof li::before {
  margin-right: 8px;
  color: #ffb23f;
  content: "✓";
}

@keyframes sema-ken-burns {
  0% {
    transform: scale(1.02) translate3d(-0.6%, -0.4%, 0);
  }

  100% {
    transform: scale(1.11) translate3d(1.4%, 0.8%, 0);
  }
}

.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -34px;
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--sema-white);
  border: 1px solid rgba(23, 36, 95, 0.06);
  border-radius: var(--sema-radius);
  box-shadow: var(--sema-shadow);
}

.trust-item {
  padding: 28px 30px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--sema-border);
}

.trust-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--sema-navy);
  font-size: 1.05rem;
}

.trust-item span {
  color: var(--sema-muted);
  font-size: 0.92rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.category-card {
  position: relative;
  min-height: 330px;
  display: flex;
  padding: 28px;
  overflow: hidden;
  align-items: flex-end;
  color: var(--sema-white);
  background: var(--sema-navy) var(--card-image) center / cover no-repeat;
  border-radius: var(--sema-radius);
  box-shadow: 0 14px 36px rgba(18, 28, 72, 0.11);
  text-decoration: none;
  isolation: isolate;
}

.category-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(10, 18, 55, 0.02) 28%, rgba(10, 18, 55, 0.9) 100%);
}

.category-card::after {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  display: grid;
  content: "↗";
  place-items: center;
  color: var(--sema-navy);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  transition: transform 180ms ease;
}

.category-card:hover,
.category-card:focus {
  color: var(--sema-white);
  transform: translateY(-4px);
}

.category-card:hover::after,
.category-card:focus::after {
  transform: rotate(45deg);
}

.category-card h3 {
  margin: 0 0 6px;
  color: var(--sema-white);
}

.category-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(44px, 8vw, 94px);
}

.split-layout--reverse > :first-child {
  order: 2;
}

.image-stack {
  position: relative;
  padding: 0 56px 56px 0;
}

.image-stack > img:first-child {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--sema-radius);
  box-shadow: var(--sema-shadow);
}

.image-stack__accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 43%;
  aspect-ratio: 0.82;
  object-fit: cover;
  background: var(--sema-white);
  border: 8px solid var(--sema-white);
  border-radius: 18px;
  box-shadow: var(--sema-shadow);
}

.feature-list {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  gap: 16px;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 34px;
}

.feature-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 23px;
  height: 23px;
  display: grid;
  content: "✓";
  place-items: center;
  color: var(--sema-white);
  background: var(--sema-orange);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.metric-card {
  padding: 24px;
  background: var(--sema-white);
  border: 1px solid var(--sema-border);
  border-radius: 16px;
}

.metric-card strong {
  display: block;
  color: var(--sema-navy);
  font-size: 1.7rem;
  line-height: 1;
}

.metric-card span {
  color: var(--sema-muted);
  font-size: 0.9rem;
}

.product-filter {
  display: flex;
  margin: 0 0 34px;
  padding: 5px;
  flex-wrap: wrap;
  gap: 4px;
  background: var(--sema-surface);
  border: 1px solid var(--sema-border);
  border-radius: 16px;
}

.product-filter button {
  padding: 10px 16px;
  color: var(--sema-muted);
  background: transparent;
  border: 0;
  border-radius: 11px;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
}

.product-filter button:hover,
.product-filter button:focus,
.product-filter button.is-active {
  color: var(--sema-white);
  background: var(--sema-navy);
}

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

.product-card {
  overflow: hidden;
  background: var(--sema-white);
  border: 1px solid var(--sema-border);
  border-radius: 18px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  box-shadow: var(--sema-shadow);
  transform: translateY(-5px);
}

.product-card[hidden] {
  display: none;
}

.product-card__image {
  position: relative;
  display: block;
  aspect-ratio: 1.18;
  overflow: hidden;
  background: var(--sema-surface);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.035);
}

.product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  color: var(--sema-navy);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(16, 25, 69, 0.1);
  font-size: 0.72rem;
  font-weight: 800;
}

.product-card__body {
  padding: 23px;
}

.product-card__body h3 {
  margin-bottom: 8px;
}

.product-card__body h3 a {
  color: var(--sema-navy-dark);
  text-decoration: none;
}

.product-card__body p {
  color: var(--sema-muted);
  font-size: 0.94rem;
}

.product-card__link {
  color: var(--sema-orange-dark);
  font-weight: 800;
  text-decoration: none;
}

.simple-hero {
  position: relative;
  padding: clamp(80px, 10vw, 132px) 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.8);
  background: linear-gradient(115deg, rgba(10, 18, 59, 0.98), rgba(23, 36, 95, 0.88)), var(--hero-image) center / cover no-repeat;
}

.simple-hero::after {
  position: absolute;
  top: -160px;
  right: -90px;
  width: 390px;
  height: 390px;
  content: "";
  border: 70px solid rgba(245, 154, 35, 0.16);
  border-radius: 50%;
}

.simple-hero--compact {
  padding-block: 90px;
}

.simple-hero .sema-shell {
  position: relative;
  z-index: 1;
}

.simple-hero h1 {
  max-width: 900px;
  color: var(--sema-white);
}

.simple-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.77);
  font-size: 1.16rem;
}

.simple-hero .eyebrow {
  color: #ffc05e;
}

.service-grid,
.value-grid,
.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.sema-card,
.service-card,
.value-card,
.contact-card {
  padding: 30px;
  background: var(--sema-white);
  border: 1px solid var(--sema-border);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(17, 27, 72, 0.055);
}

.service-card__number,
.value-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  margin-bottom: 26px;
  place-items: center;
  color: var(--sema-white);
  background: var(--sema-navy);
  border-radius: 14px;
  font-weight: 900;
}

.service-card p,
.value-card p,
.contact-card p {
  color: var(--sema-muted);
}

.availability-note {
  margin-top: 24px;
  padding: 17px 19px;
  color: #5d480c;
  background: #fff5d8;
  border: 1px solid #f0d58a;
  border-radius: 12px;
  font-size: 0.94rem;
}

.showroom-gallery {
  display: grid;
  grid-template-columns: 1.65fr 0.85fr;
  grid-template-rows: repeat(2, 230px);
  gap: 16px;
}

.showroom-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.showroom-gallery img:first-child {
  grid-row: 1 / 3;
}

.quote-panel {
  position: relative;
  padding: clamp(36px, 6vw, 72px);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.8);
  background: var(--sema-navy);
  border-radius: var(--sema-radius);
  box-shadow: var(--sema-shadow);
}

.quote-panel::after {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 410px;
  height: 410px;
  content: "";
  border: 78px solid rgba(245, 154, 35, 0.2);
  border-radius: 50%;
}

.quote-panel > * {
  position: relative;
  z-index: 1;
}

.quote-panel h2 {
  max-width: 780px;
  color: var(--sema-white);
}

.quote-panel p {
  max-width: 650px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(38px, 7vw, 88px);
}

.contact-details {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.contact-detail {
  padding: 20px;
  background: var(--sema-surface);
  border-radius: 14px;
}

.contact-detail strong {
  display: block;
  margin-bottom: 3px;
  color: var(--sema-navy);
}

.contact-detail a {
  text-decoration: none;
}

.sema-contact-form {
  padding: clamp(26px, 5vw, 44px);
  background: var(--sema-white);
  border: 1px solid var(--sema-border);
  border-radius: var(--sema-radius);
  box-shadow: var(--sema-shadow);
}

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

.form-field {
  display: grid;
  gap: 7px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--sema-navy-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--sema-ink);
  background: var(--sema-surface);
  border: 1px solid #d9dce8;
  border-radius: 10px;
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: var(--sema-white);
  border-color: var(--sema-orange);
  box-shadow: 0 0 0 3px rgba(245, 154, 35, 0.16);
}

.form-field textarea {
  min-height: 145px;
  resize: vertical;
}

.sema-contact-form > .sema-button {
  margin-top: 24px;
}

.form-help {
  margin-top: 13px;
  color: var(--sema-muted);
  font-size: 0.82rem;
}

.form-status {
  margin-bottom: 20px;
  padding: 13px 15px;
  border-radius: 10px;
}

.form-status--success {
  color: #14532d;
  background: #dcfce7;
  border: 1px solid #86efac;
}

.form-status--error {
  color: #7f1d1d;
  background: #fee2e2;
  border: 1px solid #fca5a5;
}

.product-single__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(42px, 8vw, 90px);
}

.product-single__media img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  background: var(--sema-surface);
  border-radius: var(--sema-radius);
  box-shadow: var(--sema-shadow);
}

.product-single__content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.sema-prose > *:last-child {
  margin-bottom: 0;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #0c143f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.9fr 1fr;
  gap: 54px;
  padding-block: 78px 66px;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: var(--sema-white);
  font-size: 1rem;
  letter-spacing: 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
  color: #ffb23f;
}

.footer-brand img {
  width: 190px;
  margin-bottom: 18px;
  background: var(--sema-white);
  border-radius: 10px;
}

.footer-brand p {
  max-width: 320px;
}

.footer-tagline {
  color: #ffb23f;
  font-weight: 800;
}

.footer-menu,
.footer-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu li,
.footer-contact-list li {
  margin-bottom: 9px;
}

.site-footer address {
  margin-bottom: 14px;
  font-style: normal;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .sema-shell {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.84rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px 18px;
  font-size: 0.8rem;
}

.footer-legal button {
  padding: 0;
  color: rgba(255, 255, 255, 0.84);
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.footer-legal button:hover,
.footer-legal button:focus {
  color: #ffb23f;
}

.cookie-banner {
  position: fixed;
  z-index: 9999;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(calc(100% - 48px), 1040px);
  margin-inline: auto;
  padding: 24px 26px;
  color: var(--sema-white);
  background: #0c143f;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(6, 12, 40, 0.34);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2 {
  margin-bottom: 6px;
  color: var(--sema-white);
  font-size: 1.1rem;
}

.cookie-banner p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.cookie-banner a {
  color: #ffb23f;
}

.cookie-banner__actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-banner .sema-button--outline {
  color: var(--sema-white);
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1080px) {
  .site-header__inner {
    gap: 18px;
  }

  .site-brand {
    flex-basis: 210px;
  }

  .primary-menu a,
  .primary-navigation .menu a {
    padding-inline: 8px;
    font-size: 0.86rem;
  }

  .header-quote {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 860px) {
  .site-topbar__item--email {
    display: none;
  }

  .site-topbar__contacts {
    justify-content: center;
    gap: 18px;
    font-size: 0.72rem;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .primary-navigation {
    position: fixed;
    z-index: 50;
    top: 124px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    margin: 0;
    padding: 24px 20px;
    overflow-y: auto;
    background: var(--sema-white);
  }

  .primary-navigation.is-open {
    display: block;
  }

  .primary-menu,
  .primary-navigation .menu {
    display: grid;
    gap: 6px;
  }

  .primary-menu a,
  .primary-navigation .menu a {
    padding: 15px 16px;
    font-size: 1.05rem;
  }

  .category-grid,
  .product-grid,
  .service-grid,
  .value-grid,
  .contact-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-layout,
  .contact-layout,
  .product-single__grid {
    grid-template-columns: 1fr;
  }

  .split-layout--reverse > :first-child {
    order: initial;
  }

  .image-stack > img:first-child {
    min-height: 430px;
  }

  .trust-strip {
    margin-top: 0;
    background: var(--sema-white);
  }

  .trust-strip__inner {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
  }

  .section-heading {
    display: block;
  }
}

@media (max-width: 620px) {
  .sema-shell {
    width: min(calc(100% - 28px), var(--sema-shell));
  }

  .site-header__inner {
    min-height: 76px;
  }

  .site-brand,
  .site-brand__link {
    max-width: 210px;
  }

  .primary-navigation {
    top: 114px;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.5)), var(--hero-image) 64% center / cover no-repeat;
  }

  .home-hero__inner {
    grid-template-columns: 1fr;
    padding-block: 84px 105px;
  }

  .hero-proof {
    display: grid;
  }

  .trust-strip__inner,
  .category-grid,
  .product-grid,
  .service-grid,
  .value-grid,
  .contact-card-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--sema-border);
    border-left: 0;
  }

  .category-card {
    min-height: 300px;
  }

  .image-stack {
    padding: 0 28px 36px 0;
  }

  .image-stack > img:first-child {
    min-height: 380px;
  }

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

  .showroom-gallery {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 300px 190px 190px;
  }

  .showroom-gallery img:first-child {
    grid-row: auto;
  }

  .footer-grid {
    gap: 36px;
    padding-block: 60px;
  }

  .footer-bottom__inner,
  .cookie-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom__inner {
    padding-block: 18px;
  }

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

  .cookie-banner {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: calc(100% - 28px);
    padding: 20px;
  }

  .cookie-banner__actions,
  .cookie-banner__actions .sema-button {
    width: 100%;
  }
}

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

  .home-hero::before {
    animation: none !important;
    transform: none !important;
  }
}
