/*
Theme Name: T1 Auto
Theme URI: https://t1-auto.ru/
Author: T1
Author URI: https://t1-auto.ru/
Description: Редактируемая блочная тема для марки автомобильных жидкостей Т1.
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 7.4
Version: 1.5.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: t1-auto
Tags: full-site-editing, block-patterns, custom-colors, custom-logo, featured-images
*/

:root {
  --t1-red: #c62828;
  --t1-red-dark: #a61f1f;
  --t1-graphite: #1c2128;
  --t1-graphite-soft: #2a3038;
  --t1-ink: #171a1f;
  --t1-muted: #687079;
  --t1-line: #e1e5e8;
  --t1-surface: #f4f6f8;
  --t1-white: #ffffff;
  --t1-radius-lg: 30px;
  --t1-radius-md: 20px;
  --t1-shadow: 0 24px 70px rgba(29, 37, 46, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--t1-ink);
  background: var(--t1-white);
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

a {
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

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

.wp-site-blocks {
  padding: 0;
}

.wp-site-blocks > * {
  margin-block-start: 0;
}

.t1-main-content,
.t1-main-content > * {
  margin-block-start: 0;
}

.t1-container {
  width: min(1180px, calc(100% - 48px));
  max-width: none !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

/* Header */

.t1-site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  margin: 0;
  isolation: isolate;
}

.admin-bar .t1-site-header {
  top: 32px;
}

.t1-header-shell {
  position: relative;
  z-index: 1;
  margin: 0;
  border-bottom: 1px solid rgba(28, 33, 40, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 35px rgba(29, 37, 46, 0.06);
  backdrop-filter: blur(20px);
}

.t1-header-topbar {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--t1-graphite);
}

.t1-header-topbar-inner {
  min-height: 34px;
  gap: 20px;
}

.t1-header-topbar-inner p {
  margin: 0;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.t1-header-topbar-brand {
  display: flex;
  align-items: center;
  gap: 9px;
}

.t1-header-topbar-brand span {
  width: 6px;
  height: 6px;
  display: inline-block;
  border-radius: 50%;
  background: #ef5350;
  box-shadow: 0 0 0 4px rgba(239, 83, 80, 0.12);
}

.t1-header-topbar-note {
  color: rgba(255, 255, 255, 0.5);
}

.t1-header-inner {
  min-height: 86px;
  gap: 32px;
}

.t1-header-inner .wp-block-site-logo {
  flex: 0 0 auto;
  margin: 0;
}

.t1-header-inner .wp-block-site-logo img {
  width: 116px;
  height: 56px;
  object-fit: contain;
}

.t1-header-nav {
  margin-left: auto;
}

.t1-header-nav .wp-block-navigation__container {
  column-gap: 30px !important;
  row-gap: 10px !important;
}

.t1-header-nav .wp-block-navigation-item {
  margin: 0;
}

.t1-header-nav .wp-block-navigation-item__content {
  position: relative;
  padding: 11px 0;
  color: #3d444c;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.t1-header-nav .wp-block-navigation-item__content::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--t1-red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.22s ease;
}

.t1-header-nav .wp-block-navigation-item__content:hover {
  color: var(--t1-red);
}

.t1-header-nav .wp-block-navigation-item__content:hover::after,
.t1-header-nav .current-menu-item > .wp-block-navigation-item__content::after {
  transform: scaleX(1);
  transform-origin: left;
}

.t1-header-cta {
  flex: 0 0 auto;
}

.t1-header-cta .wp-block-button__link {
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  color: var(--t1-white);
  background: var(--t1-red);
  box-shadow: 0 10px 24px rgba(198, 40, 40, 0.2);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.t1-header-cta .wp-block-button__link span {
  font-size: 17px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.t1-header-cta .wp-block-button__link:hover {
  background: var(--t1-red-dark);
  transform: translateY(-2px);
}

.t1-header-cta .wp-block-button__link:hover span {
  transform: translateX(3px);
}

.wp-block-navigation__responsive-container.is-menu-open {
  min-height: 100vh;
  padding: 28px 24px 40px;
  color: var(--t1-ink);
  background:
    radial-gradient(circle at 100% 0%, rgba(198, 40, 40, 0.1), transparent 34%),
    var(--t1-white);
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
  padding-top: 76px;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
  width: 100%;
  align-items: stretch !important;
  gap: 0 !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item {
  width: 100%;
  border-bottom: 1px solid var(--t1-line);
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
  width: 100%;
  padding: 18px 0;
  color: var(--t1-ink);
  font-size: clamp(24px, 7vw, 34px);
  font-weight: 750;
  letter-spacing: -0.03em;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content::after {
  display: none;
}

.wp-block-navigation__responsive-container-close {
  top: 26px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--t1-surface);
}

/* General blocks */

.t1-kicker,
.t1-eyebrow {
  color: var(--t1-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.t1-kicker {
  margin: 0;
}

.t1-eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.t1-eyebrow::before {
  width: 28px;
  height: 2px;
  display: block;
  background: var(--t1-red);
  content: "";
}

.t1-section {
  padding: 112px 0;
}

.t1-section-heading {
  margin: 0 0 46px;
  display: grid !important;
  grid-template-columns: 1.15fr 0.65fr;
  align-items: end !important;
  gap: 70px;
}

.t1-section-title {
  margin: 12px 0 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.t1-section-intro {
  margin: 0;
  color: var(--t1-muted);
  font-size: 16px;
  line-height: 1.7;
}

.t1-button-red .wp-block-button__link,
.wp-block-button.is-style-t1-red .wp-block-button__link {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: var(--t1-white);
  background: var(--t1-red);
  box-shadow: 0 14px 30px rgba(198, 40, 40, 0.2);
  font-size: 15px;
  font-weight: 800;
}

.t1-button-red .wp-block-button__link:hover,
.wp-block-button.is-style-t1-red .wp-block-button__link:hover {
  background: var(--t1-red-dark);
  transform: translateY(-2px);
}

.t1-button-outline .wp-block-button__link,
.wp-block-button.is-style-t1-outline .wp-block-button__link {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9dde1;
  border-radius: 999px;
  color: var(--t1-ink);
  background: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  font-weight: 800;
}

.t1-button-outline .wp-block-button__link:hover,
.wp-block-button.is-style-t1-outline .wp-block-button__link:hover {
  border-color: var(--t1-graphite);
  transform: translateY(-2px);
}

.wp-block-button.is-style-t1-dark .wp-block-button__link {
  color: var(--t1-white);
  background: var(--t1-graphite);
}

.wp-block-button.is-style-t1-dark .wp-block-button__link:hover {
  background: var(--t1-red);
}

/* Hero */

.t1-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 18%, rgba(198, 40, 40, 0.08), transparent 29%),
    linear-gradient(180deg, #ffffff 0%, #f6f7f8 100%);
}

.t1-hero-columns {
  min-height: 710px;
  margin: 0;
  padding: 88px 0 72px;
  align-items: center !important;
  gap: 54px;
}

.t1-hero-copy {
  min-width: 0;
}

.t1-hero-title {
  max-width: 680px;
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.t1-hero-title em {
  color: var(--t1-red);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.t1-hero-lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--t1-muted);
  font-size: 18px;
  line-height: 1.65;
}

.t1-hero-actions {
  margin-top: 34px;
  gap: 12px;
}

.t1-hero-points {
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  color: #4c535b;
  font-size: 14px;
  font-weight: 650;
}

.t1-hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.t1-hero-points strong {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--t1-white);
  background: var(--t1-red);
  font-size: 11px;
}

.t1-hero-visual {
  position: relative;
  min-height: 510px;
  display: grid !important;
  place-items: center;
}

.t1-hero-visual::before {
  position: absolute;
  inset: 34px 12px 44px 40px;
  border-radius: 46% 54% 45% 55% / 53% 45% 55% 47%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(233, 236, 239, 0.8));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7), var(--t1-shadow);
  content: "";
}

.t1-hero-products {
  position: relative;
  z-index: 2;
  width: 108%;
  max-width: none;
  margin: 0 0 0 -4%;
}

.t1-hero-products img {
  width: 100%;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 25px 30px rgba(40, 47, 55, 0.15));
}

.t1-hero-note {
  position: absolute;
  z-index: 3;
  right: -8px;
  bottom: 42px;
  width: 235px;
  margin: 0;
  padding: 16px 18px;
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: center !important;
  gap: 12px;
  border: 1px solid rgba(225, 229, 232, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(31, 38, 47, 0.14);
  backdrop-filter: blur(16px);
}

.t1-hero-note-mark {
  width: 50px;
  height: 50px;
  margin: 0;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--t1-white);
  background: var(--t1-red);
  font-size: 22px;
  font-style: italic;
  font-weight: 850;
}

.t1-hero-note-copy {
  margin: 0;
  color: #525961;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

/* Feature strip */

.t1-feature-strip {
  color: var(--t1-white);
  background: var(--t1-graphite);
}

.t1-feature-grid {
  margin: 0;
  gap: 0;
}

.t1-feature-item {
  min-height: 142px;
  padding: 34px 34px 32px;
  display: grid !important;
  grid-template-columns: 38px 1fr;
  align-items: start !important;
  gap: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.t1-feature-grid > .wp-block-column:last-child .t1-feature-item {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.t1-feature-number {
  margin: 0;
  color: #ef6a6a;
  font-size: 12px;
  font-weight: 800;
}

.t1-feature-copy {
  margin: 0;
  color: #e5e8eb;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

/* Product categories */

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

.t1-category-grid {
  margin: 0;
  align-items: stretch !important;
  gap: 22px;
}

.t1-category-grid > .wp-block-column {
  display: flex;
}

.t1-category-card {
  position: relative;
  width: 100%;
  min-width: 0;
  margin: 0;
  display: flex !important;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--t1-line);
  border-radius: var(--t1-radius-md);
  background: var(--t1-white);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.t1-category-card:hover {
  border-color: #ccd2d8;
  box-shadow: 0 22px 55px rgba(29, 37, 46, 0.1);
  transform: translateY(-6px);
}

.t1-category-media {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #f7f8f9;
}

.t1-category-image {
  aspect-ratio: 4 / 3;
  margin: 0;
}

.t1-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.t1-category-card:hover .t1-category-image img {
  transform: scale(1.025);
}

.t1-card-index {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 15px;
  min-width: 38px;
  height: 38px;
  margin: 0;
  padding: 0 10px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--t1-white);
  background: rgba(28, 33, 40, 0.86);
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.t1-category-body {
  flex: 1;
  width: 100%;
  margin: 0;
  padding: 28px;
  display: flex !important;
  flex-direction: column;
  align-items: stretch !important;
}

.t1-category-title {
  margin: 0;
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.t1-category-copy {
  margin: 14px 0 24px;
  color: var(--t1-muted);
  font-size: 14px;
  line-height: 1.65;
}

.t1-card-button {
  margin-top: auto !important;
}

.t1-card-button .wp-block-button__link,
.t1-text-button .wp-block-button__link {
  padding: 0;
  color: var(--t1-red);
  background: transparent;
  font-size: 14px;
  font-weight: 800;
}

.t1-card-button .wp-block-button__link:hover,
.t1-text-button .wp-block-button__link:hover {
  color: var(--t1-red-dark);
  transform: translateX(3px);
}

/* Product lines */

.t1-lines-section {
  overflow: hidden;
  background: var(--t1-surface);
}

.t1-line-grid {
  margin: 0;
  align-items: stretch !important;
  gap: 20px;
}

.t1-line-card {
  position: relative;
  min-height: 0;
  margin: 0;
  padding: 30px 30px 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--t1-radius-md);
  background: var(--t1-white);
  box-shadow: inset 0 0 0 1px rgba(28, 33, 40, 0.06);
}

.t1-line-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  content: "";
}

.t1-line-red::before {
  background: #c62828;
}

.t1-line-green::before {
  background: #16824c;
}

.t1-line-blue::before {
  background: #1767a9;
}

.t1-line-code {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--t1-muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.t1-line-title {
  position: relative;
  z-index: 2;
  margin: 8px 0 0;
  font-size: 26px;
  letter-spacing: -0.035em;
}

.t1-line-image {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  width: calc(100% + 48px);
  height: 230px;
  margin: 24px -24px -8px;
  flex: 0 0 auto;
  transition: transform 0.45s ease;
}

.t1-line-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.t1-line-card:hover .t1-line-image {
  transform: scale(1.035);
}

/* About */

.t1-about-section {
  position: relative;
  overflow: hidden;
  color: var(--t1-white);
  background:
    radial-gradient(circle at 15% 20%, rgba(198, 40, 40, 0.2), transparent 25%),
    var(--t1-graphite);
}

.t1-about-columns {
  margin: 0;
  align-items: center !important;
  gap: 90px;
}

.t1-about-mark {
  position: relative;
  min-height: 385px;
  margin: 0;
  display: grid !important;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 40px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
}

.t1-about-logo {
  margin: 0;
  color: var(--t1-white);
  font-size: clamp(150px, 18vw, 250px);
  font-style: italic;
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.13em;
}

.t1-about-logo strong {
  color: var(--t1-red);
}

.t1-kicker-light {
  color: #ef7777;
}

.t1-about-title {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--t1-white);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.t1-about-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: #bfc5cc;
  font-size: 16px;
  line-height: 1.7;
}

.t1-about-list {
  margin: 36px 0 0;
  gap: 16px;
}

.t1-about-item {
  height: 100%;
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.t1-about-item-title {
  margin: 0;
  color: var(--t1-white);
  font-size: 15px;
  font-weight: 750;
}

.t1-about-item-copy {
  margin: 9px 0 0;
  color: #aeb5bd;
  font-size: 13px;
  line-height: 1.55;
}

/* Wholesale and documents */

.t1-info-grid {
  margin: 0;
  align-items: stretch !important;
  gap: 22px;
}

.t1-info-card {
  position: relative;
  height: 100%;
  min-height: 430px;
  margin: 0;
  padding: 52px;
  overflow: hidden;
  border-radius: var(--t1-radius-lg);
}

.t1-wholesale-card {
  color: var(--t1-white);
  background:
    radial-gradient(circle at 90% 10%, rgba(198, 40, 40, 0.75), transparent 35%),
    linear-gradient(135deg, #242a32, #14181d);
}

.t1-wholesale-card::after {
  position: absolute;
  right: -12px;
  bottom: -34px;
  color: rgba(255, 255, 255, 0.035);
  font-size: 180px;
  font-weight: 950;
  letter-spacing: -0.08em;
  content: "ОПТ";
}

.t1-info-title {
  position: relative;
  z-index: 2;
  max-width: 690px;
  margin: 12px 0 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.t1-info-copy {
  position: relative;
  z-index: 2;
  max-width: 590px;
  margin: 20px 0 0;
  color: #bdc4ca;
  font-size: 16px;
  line-height: 1.7;
}

.t1-wholesale-button {
  position: relative;
  z-index: 2;
  margin-top: 30px;
}

.t1-wholesale-button .wp-block-button__link {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--t1-graphite);
  background: var(--t1-white);
  font-size: 15px;
  font-weight: 800;
}

.t1-wholesale-button .wp-block-button__link:hover {
  color: var(--t1-white);
  background: var(--t1-red);
  transform: translateY(-2px);
}

.t1-documents-card {
  border: 1px solid var(--t1-line);
  background: var(--t1-surface);
}

.t1-document-icon {
  position: absolute;
  top: 38px;
  right: 38px;
  width: 70px;
  height: 82px;
  margin: 0;
  display: grid;
  place-items: center;
  border: 2px solid #d5dade;
  border-radius: 8px 8px 18px 8px;
  color: #aeb6bd;
  font-size: 30px;
  transform: rotate(5deg);
}

.t1-documents-card .t1-info-title {
  max-width: 360px;
  margin-top: 72px;
  color: var(--t1-ink);
  font-size: clamp(30px, 3vw, 42px);
}

.t1-documents-card .t1-info-copy {
  color: var(--t1-muted);
}

.t1-text-button {
  margin-top: 28px;
}

/* Standard pages */

.t1-page-main {
  min-height: 55vh;
  padding: 80px 0 110px;
}

.t1-page-title {
  margin: 0 0 36px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.t1-entry-content {
  color: var(--t1-ink);
  font-size: 17px;
  line-height: 1.75;
}

.t1-entry-content > * + * {
  margin-block-start: 1.25em;
}

/* Footer */

.t1-site-footer,
.t1-footer-shell {
  margin: 0;
  color: var(--t1-white);
  background: #101318;
}

.t1-footer-shell {
  padding-top: 62px;
}

.t1-footer-callout {
  min-height: 176px;
  margin-bottom: 64px !important;
  padding: 34px 38px;
  gap: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  color: var(--t1-white);
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.14), transparent 24%),
    linear-gradient(120deg, #252b33 0%, #252b33 45%, #b72222 100%);
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.22);
}

.t1-footer-callout-copy {
  max-width: 720px;
  margin: 0;
}

.t1-footer-callout-kicker {
  margin: 0 0 9px;
  color: #ff9696;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.t1-footer-callout-title {
  margin: 0;
  color: var(--t1-white);
  font-size: clamp(25px, 3.2vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.t1-footer-callout-button {
  flex: 0 0 auto;
}

.t1-footer-callout-button .wp-block-button__link {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  color: var(--t1-graphite);
  background: var(--t1-white);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.t1-footer-callout-button .wp-block-button__link span {
  font-size: 17px;
  transition: transform 0.2s ease;
}

.t1-footer-callout-button .wp-block-button__link:hover {
  color: var(--t1-white);
  background: var(--t1-graphite);
  transform: translateY(-2px);
}

.t1-footer-callout-button .wp-block-button__link:hover span {
  transform: translateX(3px);
}

.t1-footer-top {
  padding: 0 0 56px;
  display: grid !important;
  grid-template-columns: 1.35fr 0.72fr 0.72fr 1.05fr;
  align-items: start !important;
  gap: clamp(34px, 5vw, 72px);
}

.t1-footer-brand .wp-block-site-logo {
  margin: 0;
}

.t1-footer-brand .wp-block-site-logo img {
  width: 116px;
  height: 62px;
  padding: 7px 9px;
  border-radius: 11px;
  background: var(--t1-white);
  object-fit: contain;
}

.t1-footer-description {
  max-width: 310px;
  margin: 20px 0 0;
  color: #9da5ae;
  font-size: 14px;
  line-height: 1.7;
}

.t1-footer-brand-tag {
  margin: 24px 0 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #d3d7db;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.t1-footer-brand-tag span {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: var(--t1-red);
}

.t1-footer-column {
  margin: 0;
  display: grid !important;
  align-content: start;
  gap: 13px;
  color: #aab2ba;
  font-size: 14px;
}

.t1-footer-title {
  position: relative;
  margin: 0 0 12px;
  padding-bottom: 13px;
  color: var(--t1-white);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.t1-footer-title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: var(--t1-red);
  content: "";
}

.t1-footer-column p {
  margin: 0;
}

.t1-footer-column a {
  display: inline-block;
  color: #aab2ba;
  text-decoration: none;
}

.t1-footer-column a:hover {
  color: var(--t1-white);
  transform: translateX(3px);
}

.t1-footer-company-name {
  color: #e6e8ea;
  font-size: 14px;
  font-weight: 750;
}

.t1-footer-address {
  color: #8e979f;
  font-size: 13px;
  line-height: 1.75;
}

.t1-footer-bottom {
  min-height: 78px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #747d86;
  font-size: 12px;
}

.t1-footer-bottom p {
  margin: 0;
}

/* Editor helpers */

.editor-styles-wrapper .t1-hero-visual,
.editor-styles-wrapper .t1-line-card,
.editor-styles-wrapper .t1-category-card,
.editor-styles-wrapper .t1-info-card {
  outline: 1px dashed rgba(198, 40, 40, 0.12);
  outline-offset: -1px;
}

/* Responsive */

@media (max-width: 1020px) {
  .t1-header-nav {
    margin-left: auto;
  }

  .t1-header-cta {
    display: none;
  }

  .t1-header-nav .wp-block-navigation__responsive-container:not(.is-menu-open) {
    display: none !important;
  }

  .t1-header-nav .wp-block-navigation__responsive-container-open {
    width: 46px;
    height: 46px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--t1-line);
    border-radius: 50%;
    color: var(--t1-graphite);
    background: var(--t1-surface);
  }

  .t1-footer-callout {
    align-items: flex-start !important;
  }

  .t1-footer-top {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 48px 70px;
  }

  .t1-hero-columns {
    min-height: auto;
    padding-top: 70px;
    flex-wrap: wrap !important;
    gap: 42px;
  }

  .t1-hero-columns > .wp-block-column {
    flex-basis: 100% !important;
  }

  .t1-hero-copy {
    max-width: 760px;
  }

  .t1-hero-visual {
    min-height: 510px;
  }

  .t1-hero-products {
    width: min(800px, 100%);
    margin: 0;
  }

  .t1-feature-item {
    padding: 28px 20px;
  }

  .t1-section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .t1-category-grid {
    flex-wrap: wrap !important;
  }

  .t1-category-grid > .wp-block-column {
    flex-basis: calc(50% - 11px) !important;
    flex-grow: 1;
  }

  .t1-line-grid {
    flex-wrap: wrap !important;
  }

  .t1-line-grid > .wp-block-column {
    flex-basis: 100% !important;
  }

  .t1-line-card {
    min-height: 0;
  }

  .t1-line-image {
    right: auto;
    left: auto;
    width: min(100%, 680px);
    height: 240px;
    margin: 20px auto -8px;
  }

  .t1-about-columns {
    gap: 44px;
  }

  .t1-about-list {
    flex-wrap: wrap !important;
  }

  .t1-about-list > .wp-block-column {
    flex-basis: 100% !important;
  }

  .t1-info-grid {
    flex-wrap: wrap !important;
  }

  .t1-info-grid > .wp-block-column {
    flex-basis: 100% !important;
  }

  .t1-info-card {
    min-height: 380px;
  }
}

@media (max-width: 782px) {
  .admin-bar .t1-site-header {
    top: 46px;
  }

  .t1-container {
    width: min(100% - 30px, 1180px);
  }

  .t1-header-inner {
    min-height: 72px;
    gap: 18px;
  }

  .t1-header-inner .wp-block-site-logo img {
    width: 98px;
    height: 46px;
  }

  .t1-header-topbar-inner {
    min-height: 30px;
  }

  .t1-header-topbar-inner p {
    font-size: 9px;
    letter-spacing: 0.09em;
  }

  .t1-header-topbar-note {
    display: none;
  }

  .t1-header-nav .wp-block-navigation__responsive-container-open {
    display: flex;
  }

  .t1-hero-columns {
    padding: 56px 0 44px;
    gap: 24px;
  }

  .t1-hero-title {
    font-size: clamp(40px, 12.5vw, 58px);
  }

  .t1-hero-lead {
    font-size: 16px;
  }

  .t1-hero-actions {
    display: grid;
  }

  .t1-hero-actions .wp-block-button,
  .t1-hero-actions .wp-block-button__link {
    width: 100%;
  }

  .t1-hero-points {
    display: grid;
    gap: 12px;
  }

  .t1-hero-visual {
    min-height: 330px;
  }

  .t1-hero-visual::before {
    inset: 8px 0 32px;
  }

  .t1-hero-products {
    width: 112%;
    margin-left: -6%;
  }

  .t1-hero-note {
    right: 8px;
    bottom: 8px;
    width: 210px;
  }

  .t1-feature-grid {
    flex-wrap: wrap !important;
  }

  .t1-feature-grid > .wp-block-column {
    flex-basis: 100% !important;
  }

  .t1-feature-item {
    min-height: auto;
    padding: 24px 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .t1-section {
    padding: 78px 0;
  }

  .t1-section-heading {
    margin-bottom: 32px;
  }

  .t1-section-title,
  .t1-about-title,
  .t1-info-title {
    font-size: 34px;
  }

  .t1-category-grid > .wp-block-column {
    flex-basis: 100% !important;
  }

  .t1-category-body {
    padding: 24px;
  }

  .t1-line-card {
    min-height: 0;
  }

  .t1-line-image {
    right: auto;
    left: auto;
    width: calc(100% + 32px);
    height: 205px;
    margin: 20px -16px -8px;
  }

  .t1-about-columns {
    flex-wrap: wrap !important;
  }

  .t1-about-columns > .wp-block-column {
    flex-basis: 100% !important;
  }

  .t1-about-mark {
    min-height: 260px;
  }

  .t1-about-logo {
    font-size: 150px;
  }

  .t1-info-card {
    min-height: 400px;
    padding: 34px 26px;
    border-radius: 22px;
  }

  .t1-documents-card .t1-info-title {
    margin-top: 90px;
  }

  .t1-footer-top {
    padding: 0 0 42px;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .t1-footer-shell {
    padding-top: 34px;
  }

  .t1-footer-callout {
    min-height: 0;
    margin-bottom: 46px !important;
    padding: 27px 24px;
    align-items: stretch !important;
    border-radius: 20px;
  }

  .t1-footer-callout-button,
  .t1-footer-callout-button .wp-block-button,
  .t1-footer-callout-button .wp-block-button__link {
    width: 100%;
  }

  .t1-footer-callout-button .wp-block-button__link {
    justify-content: center;
  }

  .t1-footer-bottom {
    align-items: flex-start !important;
    flex-direction: column;
  }
}

/* Editable inner pages: Documents, Contacts and About */

.t1-inner-page-main,
.t1-inner-page-main > .wp-block-post-content,
.t1-subpage {
  margin-block-start: 0;
}

.t1-inner-page-main {
  overflow: hidden;
}

.t1-subpage {
  overflow: clip;
  background: var(--t1-white);
}

.t1-subpage > * {
  margin-block-start: 0;
}

.t1-subpage-hero {
  position: relative;
  min-height: 510px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--t1-white);
  background:
    radial-gradient(circle at 88% 42%, rgba(198, 40, 40, 0.3), transparent 23%),
    linear-gradient(132deg, #252b33 0%, #171b20 72%);
}

.t1-subpage-hero::before,
.t1-subpage-hero::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.t1-subpage-hero::before {
  top: -280px;
  right: -190px;
  width: 610px;
  height: 610px;
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.t1-subpage-hero::after {
  right: 10%;
  bottom: -190px;
  width: 360px;
  height: 360px;
  border: 70px solid rgba(255, 255, 255, 0.025);
}

.t1-subpage-hero-grid {
  position: relative;
  z-index: 1;
  min-height: 510px;
  margin-bottom: 0;
  align-items: center !important;
  gap: clamp(32px, 6vw, 90px);
}

.t1-subpage-hero-copy {
  padding: 74px 0;
}

.t1-page-kicker {
  margin: 0 0 22px;
  color: var(--t1-red);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.t1-subpage-hero .t1-page-kicker {
  color: #ff6b68;
}

.t1-subpage-title {
  max-width: 850px;
  margin: 0;
  font-size: clamp(56px, 8vw, 108px);
  font-weight: 820;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.t1-subpage-hero .t1-subpage-title {
  color: var(--t1-white);
}

.t1-page-lead {
  max-width: 690px;
  margin: 32px 0 0;
  color: #66707a;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.t1-subpage-hero .t1-page-lead {
  color: rgba(255, 255, 255, 0.65);
}

.t1-subpage-hero-aside {
  display: grid;
  place-items: center;
}

.t1-hero-symbol {
  position: relative;
  margin: 0;
  padding: 35px 0 0 35px;
  color: rgba(255, 255, 255, 0.26);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.22em;
  line-height: 1.2;
}

.t1-hero-symbol::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 4px;
  border-radius: 4px;
  background: var(--t1-red);
  content: "";
}

.t1-hero-symbol strong {
  display: block;
  color: var(--t1-white);
  font-size: clamp(80px, 11vw, 150px);
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 0.82;
}

.t1-page-section {
  padding: clamp(82px, 9vw, 132px) 0;
}

.t1-page-intro-row {
  margin-bottom: 48px;
  align-items: flex-end !important;
  gap: 40px;
}

.t1-page-section-title {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.t1-page-section-copy {
  margin: 0;
  color: var(--t1-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Documents */

.t1-documents-section {
  background: #f3f5f7;
}

.t1-document-grid {
  margin-bottom: 0;
  align-items: stretch !important;
  gap: 18px;
}

.t1-document-grid > .wp-block-column {
  display: flex;
}

.t1-document-card {
  position: relative;
  width: 100%;
  min-height: 430px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e1e5e8;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(29, 37, 46, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.t1-document-card::after {
  position: absolute;
  right: -62px;
  bottom: -72px;
  width: 190px;
  height: 190px;
  border: 34px solid rgba(198, 40, 40, 0.045);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.t1-document-card:hover {
  border-color: rgba(198, 40, 40, 0.28);
  box-shadow: 0 24px 60px rgba(29, 37, 46, 0.09);
  transform: translateY(-5px);
}

.t1-document-card-accent {
  color: var(--t1-white);
  border-color: var(--t1-graphite);
  background: var(--t1-graphite);
}

.t1-document-card-accent::after {
  border-color: rgba(255, 255, 255, 0.05);
}

.t1-document-card-head {
  position: relative;
  z-index: 1;
  margin-bottom: 74px;
}

.t1-document-card-number {
  margin: 0;
  color: #a1a7ae;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.t1-document-card-icon {
  width: 46px;
  height: 46px;
  margin: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--t1-red);
  background: #f8e9e9;
  font-size: 18px;
  font-weight: 850;
}

.t1-document-card-accent .t1-document-card-icon {
  color: var(--t1-white);
  background: var(--t1-red);
}

.t1-document-card-title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 27px;
  letter-spacing: -0.035em;
}

.t1-document-card-accent .t1-document-card-title {
  color: var(--t1-white);
}

.t1-document-card-copy {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  color: var(--t1-muted);
  font-size: 14px;
  line-height: 1.65;
}

.t1-document-card-accent .t1-document-card-copy {
  color: rgba(255, 255, 255, 0.6);
}

.t1-document-links {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 28px;
}

.t1-document-links .wp-block-button,
.t1-document-links .wp-block-button__link {
  width: 100%;
}

.t1-document-links .wp-block-button__link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dce1e5;
  color: #343b43;
  background: transparent;
  font-size: 12px;
}

.t1-document-card-accent .t1-document-links .wp-block-button__link {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--t1-white);
}

.t1-document-links .wp-block-button__link:hover {
  border-color: var(--t1-red);
  color: var(--t1-white);
  background: var(--t1-red);
}

.t1-page-note {
  min-height: 140px;
  margin-top: 28px;
  padding: 28px 32px;
  border: 1px solid #e0e4e7;
  border-radius: 20px;
  background: var(--t1-white);
  gap: 24px;
}

.t1-page-note-label,
.t1-page-note-copy {
  margin: 0;
}

.t1-page-note-label {
  font-size: 18px;
  font-weight: 800;
}

.t1-page-note-copy {
  margin-top: 3px;
  color: var(--t1-muted);
  font-size: 13px;
}

.t1-page-note .is-style-t1-red .wp-block-button__link {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  color: var(--t1-white);
  background: var(--t1-red);
  font-size: 12px;
}

/* Contacts */

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

.t1-contact-grid {
  margin-bottom: 26px;
  align-items: stretch !important;
  gap: 18px;
}

.t1-contact-grid > .wp-block-column {
  display: flex;
}

.t1-contact-card {
  width: 100%;
  min-height: 295px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid #e3e6e9;
  border-radius: 24px;
  background: #f7f8f9;
}

.t1-contact-card-dark {
  color: var(--t1-white);
  border-color: var(--t1-graphite);
  background:
    radial-gradient(circle at 90% 10%, rgba(198, 40, 40, 0.3), transparent 26%),
    var(--t1-graphite);
}

.t1-contact-card-icon {
  width: 42px;
  height: 42px;
  margin: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--t1-red);
  background: var(--t1-white);
  box-shadow: 0 8px 20px rgba(29, 37, 46, 0.08);
  font-size: 10px;
  font-weight: 850;
}

.t1-contact-card-dark .t1-contact-card-icon {
  color: var(--t1-white);
  background: var(--t1-red);
}

.t1-contact-card-label {
  margin: 50px 0 8px;
  color: #959ca3;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.t1-contact-card-value {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: clamp(22px, 2.1vw, 29px);
  letter-spacing: -0.035em;
}

.t1-contact-card-value a {
  color: inherit;
  font-size: clamp(20px, 1.75vw, 25px);
  white-space: nowrap;
}

.t1-contact-card-value a:hover {
  color: var(--t1-red);
}

.t1-contact-card-dark .t1-contact-card-value {
  color: var(--t1-white);
}

.t1-contact-card-note {
  margin: 14px 0 0;
  color: #8a9198;
  font-size: 12px;
  line-height: 1.5;
}

.t1-contact-card-dark .t1-contact-card-note {
  color: rgba(255, 255, 255, 0.52);
}

.t1-regional-contacts {
  width: 100%;
  max-width: 1180px;
  margin: clamp(64px, 8vw, 104px) auto 0;
}

.t1-regional-contacts-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.t1-regional-contacts-heading .t1-page-kicker {
  margin-bottom: 12px;
}

.t1-regional-contacts-heading h2 {
  margin: 0;
  color: var(--t1-ink);
  font-size: clamp(36px, 5vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.t1-regional-contacts-heading > p:last-child {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--t1-muted);
  font-size: 16px;
  line-height: 1.7;
}

.t1-regional-contacts-grid {
  gap: 18px;
}

.t1-regional-contacts-grid:not(.wp-block-group) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
}

.t1-editable-regional-contacts .t1-regional-contact-card h3 {
	min-height: 0;
}

.t1-regional-contact-card {
  position: relative;
  min-width: 0;
  padding: 28px;
  overflow: hidden;
  border: 1px solid #e1e5e8;
  border-radius: 24px;
  color: var(--t1-ink);
  background: #f7f8f9;
  box-shadow: 0 20px 50px rgba(31, 39, 48, 0.05);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.t1-regional-contact-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--t1-red);
  content: "";
}

.t1-regional-contact-card:hover {
  border-color: rgba(198, 40, 40, 0.3);
  box-shadow: 0 26px 60px rgba(31, 39, 48, 0.1);
  transform: translateY(-4px);
}

.t1-regional-contact-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.t1-regional-contact-head p {
  margin: 0;
}

.t1-regional-contact-index {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--t1-white);
  background: var(--t1-red);
  font-size: 11px;
  font-weight: 850;
}

.t1-regional-contact-type {
  color: #90979f;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.t1-regional-contact-card h3 {
  min-height: 2.2em;
  margin: 28px 0 8px;
  font-size: clamp(23px, 2.2vw, 31px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.t1-regional-contact-organization {
  min-height: 2.8em;
  margin: 0;
  color: var(--t1-red);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.t1-regional-contact-details {
  margin: 24px 0 0;
  border-top: 1px solid #dde2e6;
}

.t1-regional-contact-details > div {
  padding: 13px 0;
  display: grid;
  grid-template-columns: minmax(105px, 0.42fr) minmax(0, 0.58fr);
  gap: 18px;
  border-bottom: 1px solid #dde2e6;
}

.t1-regional-contact-row {
  padding: 13px 0;
  gap: 18px;
  border-bottom: 1px solid #dde2e6;
}

.t1-regional-contact-row:not(.wp-block-columns) {
  display: grid;
  grid-template-columns: minmax(105px, 0.42fr) minmax(0, 0.58fr);
}

.t1-regional-contact-row.wp-block-columns {
  margin: 0;
  align-items: flex-start !important;
}

.t1-regional-contact-row > .wp-block-column {
  min-width: 0;
}

.t1-regional-contact-details dt,
.t1-regional-contact-details dd,
.t1-regional-contact-label,
.t1-regional-contact-value {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 12px;
  line-height: 1.5;
}

.t1-regional-contact-details dt,
.t1-regional-contact-label {
  color: #8d959d;
}

.t1-regional-contact-details dd,
.t1-regional-contact-value {
  color: var(--t1-ink);
  font-weight: 700;
}

.t1-regional-contact-value a {
  color: inherit;
  text-decoration: none;
}

.t1-regional-contact-value a:hover {
  color: var(--t1-red);
}

.t1-regional-contact-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.t1-regional-contact-links li + li {
  margin-top: 4px;
}

.t1-regional-contact-links a {
  color: inherit;
  text-decoration: none;
}

.t1-regional-contact-links a:hover {
  color: var(--t1-red);
}

.t1-regional-contact-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 12px;
  color: #6f7780;
  background: var(--t1-white);
  font-size: 11px;
  line-height: 1.5;
}

.t1-regional-contacts-editor {
  padding: 28px;
  border: 1px dashed rgba(198, 40, 40, 0.35);
  border-radius: 24px;
}

.t1-regional-contact-editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.t1-contact-details {
  margin-top: 80px;
  margin-bottom: 0;
  align-items: stretch !important;
  gap: clamp(32px, 6vw, 80px);
}

.t1-company-details {
  padding: 40px 0;
}

.t1-detail-list {
  margin-top: 44px;
  border-top: 1px solid var(--t1-line);
}

.t1-detail-row {
  min-height: 70px;
  padding: 14px 0;
  border-bottom: 1px solid var(--t1-line);
  gap: 24px;
}

.t1-detail-row p {
  margin: 0;
  color: #92989e;
  font-size: 13px;
}

.t1-detail-row p:last-child {
  color: var(--t1-ink);
  text-align: right;
}

.t1-page-photo-placeholder {
  position: relative;
  overflow: hidden;
  border: 1px solid #e0e4e7;
  border-radius: 28px;
  background:
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(28, 33, 40, 0.035) 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(28, 33, 40, 0.035) 40px),
    #eef1f3;
}

.t1-page-photo-placeholder::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  border: 28px solid rgba(198, 40, 40, 0.08);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.t1-page-photo-placeholder .wp-block-cover__inner-container {
  position: relative;
  z-index: 2;
}

.t1-photo-placeholder-label {
  max-width: 280px;
  margin: 0 auto;
  color: #69717a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.6;
  text-transform: uppercase;
}

/* About */

.t1-about-hero {
  padding: clamp(52px, 7vw, 96px) 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(198, 40, 40, 0.08), transparent 25%),
    var(--t1-white);
}

.t1-about-hero-grid {
  margin-bottom: 0;
  align-items: center !important;
  gap: clamp(40px, 7vw, 100px);
}

.t1-about-hero .t1-subpage-title {
  max-width: 720px;
  font-size: clamp(50px, 5vw, 68px);
}

.t1-about-main-photo {
  min-height: 520px;
}

.t1-about-story-section {
  border-top: 1px solid var(--t1-line);
  background: var(--t1-white);
}

.t1-about-story {
  margin-bottom: 0;
  gap: clamp(42px, 8vw, 120px);
}

.t1-story-index {
  margin: 0 0 28px;
  color: var(--t1-red);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.t1-about-story-copy {
  padding-top: 42px;
}

.t1-about-story-copy p {
  margin: 0;
  color: #59616a;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.7;
}

.t1-about-story-copy p + p {
  margin-top: 28px;
}

.t1-values-section {
  color: var(--t1-white);
  background: var(--t1-graphite);
}

.t1-values-section .t1-page-section-title {
  color: var(--t1-white);
}

.t1-values-grid {
  margin-top: 50px;
  margin-bottom: 0;
  align-items: stretch !important;
  gap: 16px;
}

.t1-values-grid > .wp-block-column {
  display: flex;
}

.t1-value-card {
  width: 100%;
  min-height: 315px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
}

.t1-value-card-accent {
  border-color: var(--t1-red);
  background: var(--t1-red);
}

.t1-value-number {
  margin: 0 0 auto;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.t1-value-card h3 {
  margin: 80px 0 0;
  color: var(--t1-white);
  font-size: 25px;
  letter-spacing: -0.03em;
}

.t1-value-card p:last-child {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.6;
}

.t1-value-card-accent p:last-child {
  color: rgba(255, 255, 255, 0.75);
}

.t1-about-gallery-section {
  background: #f3f5f7;
}

.t1-about-gallery-heading {
  margin-bottom: 44px;
  align-items: flex-end !important;
  gap: 44px;
}

.t1-about-gallery {
  margin-bottom: 0;
  gap: 18px;
}

.t1-about-gallery .t1-page-photo-placeholder {
  min-height: 460px;
}

.t1-photo-placeholder-dark {
  border-color: var(--t1-graphite);
  background: var(--t1-graphite);
}

.t1-photo-placeholder-dark .t1-photo-placeholder-label {
  color: rgba(255, 255, 255, 0.7);
}

.t1-photo-placeholder-dark::after {
  border-color: rgba(255, 255, 255, 0.07);
}

@media (max-width: 1020px) {
  .t1-subpage-hero-grid,
  .t1-about-hero-grid,
  .t1-about-story,
  .t1-contact-details {
    flex-wrap: wrap !important;
  }

  .t1-subpage-hero-grid > .wp-block-column,
  .t1-about-hero-grid > .wp-block-column,
  .t1-about-story > .wp-block-column,
  .t1-contact-details > .wp-block-column {
    flex-basis: 100% !important;
  }

  .t1-subpage-hero-aside {
    display: none;
  }

  .t1-document-grid,
  .t1-contact-grid,
  .t1-values-grid {
    flex-wrap: wrap !important;
  }

  .t1-document-grid > .wp-block-column,
  .t1-contact-grid > .wp-block-column,
  .t1-values-grid > .wp-block-column {
    flex-basis: calc(50% - 12px) !important;
  }

  .t1-about-hero-copy {
    padding: 30px 0 10px;
  }

  .t1-about-story-copy {
    padding-top: 0;
  }

  .t1-contact-details {
    margin-top: 56px;
  }
}

@media (max-width: 680px) {
  .t1-subpage-hero,
  .t1-subpage-hero-grid {
    min-height: 420px;
  }

  .t1-subpage-hero-copy {
    padding: 58px 0;
  }

  .t1-subpage-title {
    font-size: 52px;
  }

  .t1-page-lead {
    margin-top: 24px;
    font-size: 16px;
  }

  .t1-page-section {
    padding: 76px 0;
  }

  .t1-page-intro-row,
  .t1-about-gallery-heading,
  .t1-about-gallery {
    flex-wrap: wrap !important;
  }

  .t1-page-intro-row > .wp-block-column,
  .t1-about-gallery-heading > .wp-block-column,
  .t1-about-gallery > .wp-block-column {
    flex-basis: 100% !important;
  }

  .t1-page-section-title {
    font-size: 38px;
  }

  .t1-document-grid > .wp-block-column,
  .t1-contact-grid > .wp-block-column,
  .t1-values-grid > .wp-block-column {
    flex-basis: 100% !important;
  }

  .t1-document-card {
    min-height: 390px;
    padding: 25px;
  }

  .t1-page-note {
    padding: 24px;
    align-items: stretch !important;
    flex-direction: column;
  }

  .t1-page-note .wp-block-buttons,
  .t1-page-note .wp-block-button,
  .t1-page-note .wp-block-button__link {
    width: 100%;
  }

  .t1-page-note .wp-block-button__link {
    justify-content: center;
  }

  .t1-contact-card {
    min-height: 260px;
    padding: 25px;
  }

  .t1-regional-contacts {
    margin-top: 54px;
  }

  .t1-regional-contacts-heading {
    margin-bottom: 24px;
  }

  .t1-regional-contact-card {
    padding: 24px 20px;
  }

  .t1-regional-contact-details > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .t1-detail-row {
    align-items: flex-start !important;
    flex-direction: column;
    gap: 4px;
  }

  .t1-detail-row p:last-child {
    text-align: left;
  }

  .t1-page-photo-placeholder,
  .t1-about-main-photo,
  .t1-about-gallery .t1-page-photo-placeholder {
    min-height: 360px !important;
  }

  .t1-about-hero {
    padding: 48px 0 70px;
  }

  .t1-about-hero .t1-subpage-title {
    font-size: 46px;
  }

  .t1-about-story-copy p {
    font-size: 17px;
  }

  .t1-value-card {
    min-height: 280px;
  }
}

/* Interactive product page */

.t1-product-page-main {
  overflow: hidden;
  padding: clamp(42px, 6vw, 86px) 0 clamp(72px, 9vw, 130px);
  background:
    radial-gradient(circle at 12% 12%, rgba(198, 40, 40, 0.08), transparent 28%),
    linear-gradient(180deg, #f5f7f9 0%, #eef1f4 100%);
}

.t1-product-showcase {
  width: min(1280px, calc(100% - 48px));
  max-width: none !important;
  margin: 0 auto !important;
}

.t1-product-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  align-items: stretch;
  gap: clamp(28px, 4vw, 64px);
}

.t1-editable-product-shell.wp-block-columns {
  display: flex;
  align-items: stretch !important;
  gap: clamp(28px, 4vw, 64px);
}

.t1-product-visual {
  min-width: 0;
}

.t1-product-image-stage {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(28, 33, 40, 0.08);
  border-radius: 34px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
    repeating-linear-gradient(0deg, transparent 0 47px, rgba(28, 33, 40, 0.035) 48px),
    repeating-linear-gradient(90deg, transparent 0 47px, rgba(28, 33, 40, 0.035) 48px);
  box-shadow: 0 30px 80px rgba(34, 42, 52, 0.1);
  isolation: isolate;
}

.t1-product-image-stage::after {
  position: absolute;
  right: 34px;
  bottom: 30px;
  left: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(28, 33, 40, 0.15), transparent);
  content: "";
}

.t1-product-image-index {
  position: absolute;
  z-index: 3;
  top: 26px;
  left: 28px;
  color: #8b929a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.t1-product-image-glow {
  position: absolute;
  z-index: -1;
  width: 68%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(198, 40, 40, 0.12);
  filter: blur(8px);
}

.t1-product-main-image {
  z-index: 1;
  width: var(--t1-product-image-width, 94%);
  height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 26px 22px rgba(39, 44, 51, 0.18));
  opacity: 1;
  transform: translateY(var(--t1-product-image-offset-y, 0));
  transition: width 0.25s ease, opacity 0.18s ease, transform 0.25s ease;
}

.t1-product-main-image.is-changing {
  opacity: 0;
  transform: translateY(calc(var(--t1-product-image-offset-y, 0px) + 8px));
}

.t1-product-image-empty {
  max-width: 260px;
  color: var(--t1-muted);
  text-align: center;
}

.t1-editable-product-stage .t1-editable-product-media {
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  grid-area: 1 / 1;
  opacity: 1;
  transition: opacity 0.18s ease, transform 0.25s ease;
}

.t1-editable-product-stage .t1-editable-product-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.t1-editable-product-stage .t1-editable-product-image img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 520px;
  margin: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 22px rgba(39, 44, 51, 0.18));
}

.t1-editable-product-stage .t1-editable-product-placeholder {
  max-width: 320px;
  min-height: 180px;
  padding: 28px;
  display: grid;
  place-items: center;
  border: 1px dashed #c9cfd5;
  border-radius: 20px;
  color: var(--t1-muted);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.t1-editable-product-stage .t1-editable-product-placeholder p {
  margin: 0;
}

.t1-editable-product-stage.is-ready .t1-editable-product-media {
  display: none;
}

.t1-editable-product-stage.is-ready .t1-editable-product-media.is-active {
  display: flex;
}

.t1-editable-product-stage.is-ready .t1-editable-product-placeholder.is-active {
  display: grid;
}

.t1-editable-product-stage .t1-editable-product-media.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.t1-product-variant-list {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.t1-product-variant-list:has(> .t1-product-variant:only-child) {
  grid-template-columns: minmax(0, 180px);
}

.t1-product-variant-list:has(> .t1-product-variant:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 180px));
}

@media (min-width: 681px) {
  .t1-product-variant-list:has(> .t1-product-variant:nth-child(6)) {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .t1-product-variant-list > .t1-product-variant:nth-child(6) {
    grid-column: 3;
  }
}

.t1-product-variant {
  min-height: 62px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid #dce1e5;
  border-radius: 16px;
  color: #414850;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.t1-product-variant:hover {
  border-color: rgba(198, 40, 40, 0.45);
  color: var(--t1-red);
  transform: translateY(-2px);
}

.t1-product-variant.is-active {
  border-color: var(--t1-red);
  color: var(--t1-white);
  background: var(--t1-red);
  box-shadow: 0 12px 28px rgba(198, 40, 40, 0.22);
}

.t1-product-variant-dot {
  width: 7px;
  height: 7px;
  border: 2px solid currentColor;
  border-radius: 50%;
  opacity: 0.65;
}

.t1-product-variant.is-active .t1-product-variant-dot {
  background: currentColor;
  opacity: 1;
}

.t1-editable-product-variants > .t1-product-variant {
  flex: 1 1 120px;
  max-width: 180px;
  padding: 0;
  overflow: hidden;
}

.t1-editable-product-variants {
  margin-top: 18px;
  gap: 10px;
}

.t1-editable-product-variants > .t1-product-variant .wp-block-button__link {
  width: 100%;
  min-height: 60px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: inherit;
  color: inherit !important;
  background: transparent !important;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.25;
  box-shadow: none;
}

.t1-editable-product-variants > .t1-product-variant .wp-block-button__link::before {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border: 2px solid currentColor;
  border-radius: 50%;
  opacity: 0.65;
  content: "";
}

.t1-editable-product-variants > .t1-product-variant.is-active .wp-block-button__link::before {
  background: currentColor;
  opacity: 1;
}

.t1-product-panel {
  padding: clamp(38px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 34px;
  color: var(--t1-ink);
  background: var(--t1-white);
  box-shadow: 0 30px 80px rgba(34, 42, 52, 0.1);
}

.t1-product-eyebrow {
  margin: 0 0 18px;
  color: var(--t1-red);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.t1-product-title {
  max-width: 680px;
  margin: 0;
  font-size: clamp(38px, 4.2vw, 66px);
  font-weight: 820;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.t1-product-description {
  max-width: 680px;
  margin: 28px 0 0;
  color: #606871;
  font-size: 16px;
  line-height: 1.75;
}

.t1-product-facts {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--t1-line);
  border-bottom: 1px solid var(--t1-line);
}

.t1-product-fact {
  padding: 20px 18px;
  border-right: 1px solid var(--t1-line);
}

.t1-product-fact:first-child {
  padding-left: 0;
}

.t1-product-fact:last-child {
  border-right: 0;
}

.t1-product-fact span,
.t1-product-fact strong {
  display: block;
}

.t1-product-fact span {
  margin-bottom: 3px;
  color: #959ba2;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.t1-product-fact strong {
  font-size: 16px;
  font-weight: 800;
}

.t1-product-fact-label,
.t1-product-fact-value {
  margin: 0;
}

.t1-product-fact-label {
  margin-bottom: 3px;
  color: #959ba2;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.t1-product-fact-value {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.t1-editable-product .t1-product-facts.wp-block-columns,
.t1-editable-product .t1-product-features.wp-block-columns {
  display: flex;
}

.t1-product-features {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.t1-product-features > div {
  min-height: 86px;
  padding: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-radius: 14px;
  background: var(--t1-surface);
}

.t1-product-features span {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--t1-white);
  background: var(--t1-red);
  font-size: 11px;
  font-weight: 900;
}

.t1-product-features p {
  margin: 1px 0 0;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.t1-product-features .t1-product-feature-mark {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--t1-white);
  background: var(--t1-red);
  font-size: 11px;
  font-weight: 900;
}

.t1-product-features .t1-product-feature-text {
  margin: 1px 0 0;
}

.t1-product-documents {
  margin-top: 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.t1-product-documents > p {
  width: 100%;
  margin: 0 0 2px;
  color: #949aa1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.t1-product-documents > a {
  padding-bottom: 3px;
  border-bottom: 1px solid #cfd4d8;
  color: #373e46;
  font-size: 13px;
  font-weight: 750;
}

.t1-product-documents > a[href="#"],
.t1-product-documents > a:not([href]),
.t1-product-documents > a[href=""] {
  display: none;
}

.t1-product-documents > a span {
  margin-left: 5px;
  color: var(--t1-red);
}

.t1-product-documents > a:hover {
  border-color: var(--t1-red);
  color: var(--t1-red);
}

.t1-product-document-buttons {
  width: 100%;
  gap: 10px;
}

.t1-product-document-buttons .wp-block-button__link {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 12px;
}

.editor-styles-wrapper .t1-editable-product-stage {
  min-height: 0;
  padding: 66px 18px 18px;
  display: block;
  overflow: visible;
}

.editor-styles-wrapper .t1-editable-product-stage > .block-editor-inner-blocks > .block-editor-block-list__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.editor-styles-wrapper .t1-editable-product-stage .t1-product-image-index {
  position: absolute;
}

.editor-styles-wrapper .t1-editable-product-stage .t1-editable-product-media {
  width: auto;
  min-height: 220px;
  padding: 14px;
  display: flex !important;
  grid-area: auto;
  border: 1px solid #e1e5e8;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  opacity: 1 !important;
  transform: none !important;
}

.editor-styles-wrapper .t1-editable-product-stage .t1-editable-product-image img {
  max-height: 210px;
}

.t1-product-editor-variant {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ddd;
}

@media (max-width: 1100px) {
  .t1-product-shell {
    grid-template-columns: 1fr;
  }

  .t1-editable-product-shell.wp-block-columns {
    flex-wrap: wrap !important;
  }

  .t1-editable-product-shell.wp-block-columns > .wp-block-column {
    flex-basis: 100% !important;
  }

  .t1-product-image-stage {
    min-height: 520px;
  }

  .t1-product-panel {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .t1-product-page-main {
    padding: 24px 0 74px;
  }

  .t1-product-showcase {
    width: min(100% - 28px, 1280px);
  }

  .t1-product-shell {
    gap: 18px;
  }

  .t1-product-image-stage {
    min-height: 390px;
    border-radius: 22px;
  }

  .t1-product-main-image {
    width: 100%;
    height: 350px;
  }

  .t1-product-variant-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .t1-editable-product-variants > .t1-product-variant {
    max-width: none;
  }

  .t1-product-variant {
    min-height: 52px;
    border-radius: 13px;
    font-size: 12px;
  }

  .t1-product-panel {
    padding: 32px 22px;
    border-radius: 22px;
  }

  .t1-product-title {
    font-size: 38px;
  }

  .t1-product-description {
    margin-top: 20px;
    font-size: 15px;
  }

  .t1-product-facts,
  .t1-product-features {
    grid-template-columns: 1fr;
  }

  .t1-product-fact {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--t1-line);
  }

  .t1-product-fact:last-child {
    border-bottom: 0;
  }

  .t1-product-features > div {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
