:root {
  --black: #050505;
  --ink: #101010;
  --muted: #6b6b6b;
  --gold: #dba642;
  --gold-bright: #f2c765;
  --paper: #f4f4f2;
  --line: #d5d2cc;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}

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

.board {
  display: grid;
  grid-template-columns: 1.62fr 1fr;
  gap: 22px;
  max-width: 1680px;
  margin: 0 auto;
  padding: 10px 12px 28px;
}

.page-shell {
  width: 100%;
  margin: 0;
  padding: 0;
}

.catalog-page,
.card-page,
.profile-page,
.branding-page {
  max-width: none;
}

.panel {
  min-width: 0;
}

.panel-title {
  margin: 0 0 8px;
  text-align: center;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  width: clamp(120px, 12vw, 180px);
  color: var(--white);
  white-space: nowrap;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

.site-window {
  overflow: hidden;
  border: 1px solid #222;
  background: var(--paper);
  box-shadow: 0 8px 22px rgb(0 0 0 / 10%);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 30px);
  min-height: 103px;
  padding: 20px clamp(22px, 2.5vw, 42px);
  background: #030303;
  color: var(--white);
}

.nav .logo {
  width: clamp(122px, 11vw, 178px);
  margin-right: clamp(4px, 1vw, 26px);
}

.nav nav {
  display: flex;
  align-items: center;
  gap: clamp(6px, .9vw, 14px);
  flex: 1;
  font-size: clamp(12px, .9vw, 15px);
  font-weight: 900;
  text-transform: uppercase;
}

.nav nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #f5f5f5;
  letter-spacing: .2px;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.nav nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-bright);
  transform: translateX(-50%);
  transition: width .2s ease;
}

.nav nav a:hover {
  border-color: rgb(219 166 66 / 34%);
  background: rgb(255 255 255 / 5%);
  color: var(--gold-bright);
}

.nav nav a:hover::after,
.nav nav a:first-child::after {
  width: 22px;
}

.nav nav a:first-child {
  border-color: rgb(219 166 66 / 40%);
  background: rgb(219 166 66 / 10%);
  color: var(--gold-bright);
}

.quote-btn,
.send-btn,
.grow-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 28px;
  border-radius: 5px;
  background: linear-gradient(180deg, #ffdc84, #d89b32);
  color: #0d0d0d;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 45%);
}

.whatsapp-mini,
.chat-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 2px solid #1fd760;
  border-radius: 50%;
  color: #1fd760;
  font-weight: 900;
}

.nav-toggle,
.hamburger {
  display: none;
}

.hamburger {
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgb(219 166 66 / 45%);
  border-radius: 6px;
  background: rgb(255 255 255 / 5%);
  color: var(--gold-bright);
  font-size: 18px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: clamp(520px, 52vw, 760px);
  overflow: hidden;
  background:
    linear-gradient(90deg, #070808 0%, #070808 48%, #171717 100%);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgb(0 0 0 / 92%) 0%, rgb(0 0 0 / 82%) 39%, rgb(0 0 0 / 38%) 64%, rgb(0 0 0 / 12%) 100%),
    linear-gradient(115deg, transparent 0 53%, rgb(255 255 255 / 5%) 53% 54%, transparent 54%),
    repeating-linear-gradient(-9deg, transparent 0 12px, rgb(255 255 255 / 3%) 13px 14px);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 100%;
  padding: 72px clamp(24px, 3vw, 42px) 42px;
}

.hero h1 {
  max-width: 590px;
  margin: 0;
  color: #f8f8f8;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(34px, 3.7vw, 54px);
  font-weight: 400;
  line-height: 1.16;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--gold-bright);
}

.hero p {
  margin: 22px 0 28px;
  color: #f1f1f1;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(820px, 100%);
  border: 1px solid rgb(219 166 66 / 55%);
  background: rgb(0 0 0 / 34%);
}

.benefits article {
  min-height: 126px;
  padding: 20px 16px;
  border-right: 1px solid rgb(255 255 255 / 13%);
}

.benefits article:last-child {
  border-right: 0;
}

.benefits i,
.why-icons i {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  margin-bottom: 13px;
  border: 1px solid var(--gold);
  border-radius: 5px;
  color: var(--gold-bright);
  font-style: normal;
  font-size: 15px;
}

.benefits strong,
.benefits span {
  display: block;
}

.benefits strong {
  margin-bottom: 7px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.benefits span {
  color: #e2e2e2;
  font-size: 11px;
  line-height: 1.45;
}

.hero-art { display: none; }

.inquiry-strip {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 12px clamp(24px, 3vw, 42px);
  background: #030303;
  color: #fff;
  gap: 14px;
}

.inquiry-strip span {
  font-size: 12px;
  font-weight: 800;
}

.inquiry-strip b {
  display: block;
  font-size: 22px;
}

.send-btn {
  margin-left: auto;
  min-width: 138px;
}

.categories {
  padding: 24px 32px 20px;
  background: #f5f5f3;
}

.categories h3,
.why h3 {
  margin: 0;
  text-align: center;
  font-size: 21px;
  font-weight: 900;
  text-transform: uppercase;
}

.gold-line {
  width: 46px;
  height: 3px;
  margin: 11px auto 20px;
  background: var(--gold);
}

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


.cat-card.outsole div {
  background-image: url("assets/category-outsole.jpg");
}

.cat-card.foam div {
  background-image: url("assets/category-midsole-foam.jpg");
}

.cat-card.mesh div {
  background-image: url("assets/category-upper-mesh.jpg");
}

.cat-card.leather div {
  background-image: url("assets/category-synthetic-leather.jpg");
}

.cat-card.laces div {
  background-image: url("assets/category-laces-accessories.jpg");
}

.cat-card.puff div {
  background-image: url("assets/category-heel-toe-puff.jpg");
}

.homepage-catalog {
  padding: clamp(28px, 3.5vw, 44px) clamp(24px, 4vw, 70px) 0;
  background: #050505;
  color: #fff;
}

.home-catalog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto 22px;
}

.home-catalog-header .logo {
  width: clamp(112px, 10vw, 150px);
}

.home-catalog-header h2 {
  margin: 0;
  color: var(--gold-bright);
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: .95;
  text-align: right;
  text-transform: uppercase;
}

.home-catalog-header p {
  margin: 8px 0 0;
  font-size: clamp(13px, 1.1vw, 17px);
  font-weight: 900;
  text-align: right;
}

.home-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #cfcfca;
  border-radius: 8px;
  background: #f6f6f4;
  color: #111;
}

.home-catalog-grid article {
  display: grid;
  grid-template-columns: minmax(170px, .95fr) minmax(190px, 1fr);
  gap: clamp(18px, 2vw, 34px);
  align-items: center;
  min-height: 210px;
  padding: clamp(20px, 2.2vw, 34px);
  border-right: 1px solid #cdcdc8;
  border-bottom: 1px solid #cdcdc8;
}

.home-catalog-grid article:nth-child(even) {
  border-right: 0;
}

.home-catalog-grid article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.home-catalog-photo {
  min-height: 132px;
  overflow: hidden;
  border-radius: 5px;
  background: #eee;
}

.home-catalog-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 132px;
  object-fit: cover;
}

.home-catalog-grid h3 {
  margin: 0 0 12px;
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: 1.12;
  text-transform: uppercase;
}

.home-catalog-grid ul {
  margin: 0;
  padding-left: 20px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.85;
}

.catalog-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 18px;
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.catalog-btn:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
}

.home-catalog-footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1280px;
  margin: 0 auto;
  padding: 26px 0 24px;
  background: #050505;
}

.home-catalog-footer span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 12px;
  border-right: 1px solid rgb(255 255 255 / 13%);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}

.home-catalog-footer span:last-child {
  border-right: 0;
}

.why {
  position: relative;
  display: grid;
  grid-template-columns: 2.1fr 1fr;
  margin-top: clamp(22px, 3vw, 38px);
  margin-bottom: clamp(22px, 3vw, 38px);
  min-height: 165px;
  background: #050505;
  color: #fff;
}

.why::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(clamp(22px, 3vw, 38px) * -0.62);
  width: min(280px, 42vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(219 166 66 / 80%), transparent);
  transform: translateX(-50%);
}

.why::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(clamp(22px, 3vw, 38px) * -0.62 - 4px);
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold);
  background: #f4f4f2;
  transform: translateX(-50%) rotate(45deg);
}

.homepage-profile {
  position: relative;
}

.homepage-profile::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(clamp(22px, 3vw, 38px) * -0.38);
  z-index: 2;
  width: min(280px, 42vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(219 166 66 / 80%), transparent);
  transform: translateX(-50%);
}

.homepage-profile::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(clamp(22px, 3vw, 38px) * -0.38 - 4px);
  z-index: 2;
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold);
  background: #f4f4f2;
  transform: translateX(-50%) rotate(45deg);
}

.why-list {
  padding: 24px 36px 26px;
}

.why-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-icons article {
  text-align: center;
}

.why-icons i {
  margin: 0 auto 11px;
}

.why-icons b,
.why-icons span {
  display: block;
}

.why-icons b {
  font-size: 11px;
  text-transform: uppercase;
}

.why-icons span {
  margin-top: 5px;
  color: #d8d8d8;
  font-size: 10px;
  line-height: 1.35;
}

.grow-card {
  position: relative;
  padding: 34px 40px;
  background: linear-gradient(135deg, #91641d, #d6a743);
  color: #fff;
}

.grow-card::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  border-top: 82px solid transparent;
  border-bottom: 82px solid transparent;
  border-left: 28px solid #050505;
}

.grow-card h3 {
  text-align: left;
}

.grow-card p {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.catalog-panel {
  grid-row: span 2;
}

.page-shell .catalog-panel {
  grid-row: auto;
}

.catalog-sheet {
  padding: 30px clamp(20px, 4vw, 70px) 0;
  background: #060606;
  color: #fff;
  border: 1px solid #111;
}

.catalog-sheet > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 26px;
}

.catalog-sheet .logo {
  width: clamp(130px, 18vw, 190px);
}

.catalog-sheet header h2 {
  margin: 0;
  color: var(--gold-bright);
  font-size: 37px;
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
}

.catalog-sheet header p {
  margin: 8px 0 0;
  text-align: right;
  font-size: 14px;
  font-weight: 800;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  border: 1px solid #cfcfcf;
  border-radius: 7px;
  background: #f3f3f1;
  color: #111;
}

.catalog-grid article {
  display: grid;
  grid-template-columns: 1.07fr 1fr;
  min-height: 150px;
  padding: 16px 15px 14px;
  border-right: 1px solid #c9c9c7;
  border-bottom: 1px solid #c9c9c7;
}

.catalog-grid article:nth-child(even) {
  border-right: 0;
}

.catalog-grid article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.catalog-grid h4 {
  grid-column: 1 / -1;
  margin: 0 0 8px;
  text-align: center;
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-visual {
  min-height: 82px;
  border-radius: 4px;
}

.catalog-grid ul {
  margin: 0;
  padding-left: 20px;
  align-self: center;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.9;
}

.bottle-icon {
  background:
    linear-gradient(90deg, transparent 0 15%, #e8f0f4 15% 27%, transparent 27% 38%, #f5fbff 38% 50%, transparent 50% 62%, #e8f0f4 62% 74%, transparent 74%),
    linear-gradient(#fff, #cfecff);
}

.box-icon {
  background:
    linear-gradient(160deg, transparent 0 50%, rgb(0 0 0 / 10%) 51%),
    linear-gradient(90deg, #b38a52 0 43%, #d0a56a 43% 69%, #9f7844 69%);
}

.catalog-sheet footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 26px 0 20px;
}

.catalog-sheet footer span {
  min-height: 72px;
  border-left: 1px solid rgb(255 255 255 / 15%);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.55;
  text-align: center;
  text-transform: uppercase;
}

.business-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.contact-page-section {
  padding: clamp(28px, 5vw, 64px) clamp(18px, 5vw, 72px);
  background: #f4f4f2;
}

.contact-hero {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  min-height: 720px;
  padding: clamp(38px, 6vw, 78px) clamp(26px, 7vw, 120px);
  background:
    linear-gradient(90deg, rgb(0 0 0 / 78%), rgb(0 0 0 / 38%)),
    url("assets/hero.png") center / cover no-repeat;
}

.contact-panel {
  min-width: 0;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  padding: clamp(44px, 5vw, 70px);
  background: linear-gradient(180deg, #171a1a, #0d1010);
  color: #fff;
}

.contact-kicker {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 7px;
  text-transform: uppercase;
}

.contact-info-panel h1,
.contact-form-panel h2 {
  margin: 18px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.1;
}

.contact-tagline {
  margin: 20px 0 42px;
  color: #d8d8d8;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
}

.contact-info-list {
  display: grid;
  gap: 30px;
}

.contact-info-list article {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 20px;
  align-items: start;
}

.contact-info-list i {
  color: var(--gold-bright);
  font-size: 22px;
  line-height: 1.4;
}

.contact-info-list b {
  display: block;
  margin-bottom: 5px;
  color: #858585;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.contact-info-list span {
  color: #f0f0f0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}

.contact-socials {
  display: flex;
  gap: 20px;
  margin-top: auto;
  padding-top: 44px;
}

.contact-socials a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #bdbdbd;
  font-size: 20px;
}

.contact-form-panel {
  padding: clamp(44px, 5vw, 70px);
  background: #f7f7f5;
  color: #161616;
}

.contact-form-panel h2 {
  color: #191919;
}

.contact-form-panel form {
  display: grid;
  gap: 28px;
  margin-top: 34px;
}

.form-status {
  display: none;
  margin-top: 22px;
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  background: #fff8e7;
  color: #191919;
  font-size: 14px;
  font-weight: 800;
}

.form-status.is-success,
.form-status.is-error {
  display: block;
}

.form-status.is-error {
  border-left-color: #9e2f2f;
  background: #fff0f0;
}

.contact-form-panel label {
  display: grid;
  gap: 12px;
}

.contact-form-panel label span {
  color: #3f3f3f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-form-panel input,
.contact-form-panel textarea {
  width: 100%;
  border: 0;
  border-bottom: 2px solid #e0e0dc;
  border-radius: 0;
  background: transparent;
  color: #111;
  font: inherit;
  font-size: 17px;
  outline: none;
  padding: 12px 0;
}

.contact-form-panel textarea {
  min-height: 98px;
  resize: vertical;
}

.contact-form-panel input::placeholder {
  color: #b6b6b6;
}

.contact-form-panel input:focus,
.contact-form-panel textarea:focus {
  border-bottom-color: var(--gold);
}

.contact-form-panel button {
  min-height: 58px;
  border: 0;
  background: linear-gradient(180deg, #c9a261, #ad8546);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 5px;
  text-transform: uppercase;
  cursor: pointer;
}

.business-card {
  position: relative;
  min-height: 305px;
  overflow: hidden;
  padding: 46px 42px;
  background: #090909;
  color: #fff;
  border: 1px solid #151515;
}

.business-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 260px;
  height: 260px;
  border: 28px solid rgb(219 166 66 / 74%);
  transform: rotate(45deg);
}

.front-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
}

.front-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  text-transform: uppercase;
}

.front-card h3 span,
.business-card h3,
.brand-sheet h2 span {
  color: var(--gold-bright);
}

.front-card p,
.front-card b {
  font-size: 12px;
  line-height: 1.6;
  text-transform: uppercase;
}

.front-card b {
  position: absolute;
  left: 95px;
  bottom: 48px;
  color: var(--gold-bright);
}

.back-card h3 {
  margin: 34px 0 4px;
  font-size: 27px;
  text-transform: uppercase;
}

.back-card p {
  margin: 0 0 28px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.back-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 2.2;
}

.qr {
  position: absolute;
  right: 38px;
  bottom: 38px;
  width: 95px;
  height: 95px;
  border: 8px solid #fff;
  background:
    repeating-linear-gradient(90deg, #111 0 5px, #fff 5px 10px),
    repeating-linear-gradient(0deg, #111 0 5px, #fff 5px 10px);
  background-blend-mode: difference;
}

.profile-sheet {
  background: #f5f5f3;
  border: 1px solid #d9d9d5;
}

.homepage-profile .profile-sheet {
  border-left: 0;
  border-right: 0;
}

.profile-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(420px, .78fr) 1fr;
  align-items: stretch;
  padding: 0;
  background:
    radial-gradient(circle at 13% 17%, rgb(219 166 66 / 12%), transparent 24%),
    linear-gradient(112deg, #050505 0 52%, #d8a33a 52% 53.3%, #050505 53.3% 100%);
  color: #fff;
}

.profile-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(0 0 0 / 4%) 0 46%, rgb(0 0 0 / 32%) 80%),
    repeating-linear-gradient(-9deg, transparent 0 13px, rgb(255 255 255 / 3%) 14px 15px);
  pointer-events: none;
}

.profile-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: clamp(48px, 5vw, 78px) clamp(38px, 5vw, 78px);
}

.profile-hero .logo {
  width: clamp(130px, 14vw, 200px);
}

.profile-kicker {
  display: inline-flex;
  margin-top: 42px;
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.profile-hero h2 {
  margin: clamp(36px, 4vw, 58px) 0 0;
  max-width: 520px;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(48px, 5.4vw, 82px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 14px 34px rgb(0 0 0 / 45%);
}

.profile-hero p {
  max-width: 490px;
  color: #c9a45d;
  font-size: clamp(21px, 2vw, 32px);
  font-weight: 800;
  line-height: 1.35;
}

.profile-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(112px, 1fr));
  gap: 0;
  margin-top: clamp(30px, 4vw, 54px);
  max-width: 680px;
}

.profile-actions span {
  min-height: 92px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border-right: 1px solid rgb(255 255 255 / 18%);
  color: #fff;
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}

.profile-actions span:last-child {
  border-right: 0;
}

.profile-actions i {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgb(219 166 66 / 78%);
  border-radius: 12px;
  color: #cda45a;
  font-size: 23px;
}

.ship-scene {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 520px;
  background: #090909;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 29% 56%, 0 45%);
}

.ship-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(112deg, #d8a33a 0 3.2%, transparent 3.4% 100%),
    linear-gradient(230deg, transparent 0 86%, #d8a33a 86.2% 89.6%, transparent 89.8%);
  pointer-events: none;
}

.ship-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(90deg, rgb(0 0 0 / 15%), transparent 45%, rgb(0 0 0 / 12%));
  pointer-events: none;
}

.ship-scene img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.95) contrast(1.08);
}

.route-card {
  position: absolute;
  right: clamp(34px, 6vw, 86px);
  top: clamp(46px, 5vw, 78px);
  z-index: 3;
  display: grid;
  grid-template-columns: auto minmax(90px, 160px) auto;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgb(219 166 66 / 45%);
  background: rgb(5 5 5 / 72%);
  box-shadow: 0 20px 38px rgb(0 0 0 / 35%);
  backdrop-filter: blur(10px);
}

.route-card span {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.route-card i {
  position: relative;
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent 72%);
}

.route-card i::before,
.route-card i::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: #080808;
  transform: translateY(-50%);
}

.route-card i::before {
  left: 0;
}

.route-card i::after {
  right: 0;
}

.cargo-ship {
  position: absolute;
  right: clamp(38px, 6vw, 92px);
  bottom: clamp(70px, 7vw, 102px);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, minmax(38px, 68px));
  gap: 6px;
  padding: 0 34px 42px;
  filter: drop-shadow(0 28px 26px rgb(0 0 0 / 42%));
}

.cargo-ship::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 54px;
  clip-path: polygon(0 0, 100% 0, 86% 100%, 15% 100%);
  background: linear-gradient(90deg, #d86124, #1f3d59 22%, #e8a63d 58%, #0f1c27);
}

.cargo-ship span {
  height: 42px;
  border: 1px solid rgb(255 255 255 / 18%);
  background:
    linear-gradient(90deg, rgb(255 255 255 / 11%) 0 1px, transparent 1px 100%),
    #c9531f;
}

.cargo-ship span:nth-child(2n) {
  background-color: #263f59;
}

.cargo-ship span:nth-child(3n) {
  background-color: #d99d34;
}

.scene-stats {
  position: absolute;
  left: clamp(34px, 4vw, 58px);
  right: clamp(34px, 4vw, 58px);
  bottom: 24px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 12%);
  background: rgb(0 0 0 / 42%);
  backdrop-filter: blur(8px);
}

.scene-stats span {
  min-height: 54px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgb(255 255 255 / 10%);
  color: #f6f6f6;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}

.scene-stats span:last-child {
  border-right: 0;
}

.profile-content {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(22px, 3vw, 42px);
  padding: clamp(42px, 5vw, 70px) clamp(32px, 6vw, 86px);
  background:
    linear-gradient(90deg, #f7f7f5, #eeeeeb);
}

.profile-card {
  position: relative;
  min-height: 270px;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid #dedbd2;
  background: #fff;
  box-shadow: 0 14px 34px rgb(0 0 0 / 8%);
}

.profile-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 74px;
  height: 4px;
  background: var(--gold);
}

.profile-content h3 {
  margin: 0 0 12px;
  font-size: clamp(22px, 2vw, 30px);
  text-transform: uppercase;
}

.profile-content p,
.profile-content li {
  color: #333;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.profile-content p {
  max-width: 760px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 12px 20px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: .28em;
  color: var(--gold);
  font-family: "Font Awesome 6 Free";
  font-size: 13px;
  font-weight: 900;
}

.product-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(170px, 1fr));
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.product-tags li {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 10px 13px;
  border: 1px solid #e4dfd2;
  background: #faf8f2;
}

.profile-sheet footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  background: #070707;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.profile-sheet footer span {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-right: 1px solid rgb(255 255 255 / 12%);
  font-size: 15px;
}

.profile-sheet footer span:last-child {
  border-right: 0;
}

.site-footer {
  background:
    radial-gradient(circle at 14% 20%, rgb(255 255 255 / 4%), transparent 25%),
    linear-gradient(120deg, #101315, #08090a);
  color: #c9c9c9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr 1.05fr;
  gap: clamp(26px, 5vw, 72px);
  padding: clamp(38px, 4.5vw, 54px) clamp(34px, 5vw, 74px) clamp(34px, 4vw, 46px);
}

.site-footer h2,
.site-footer h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 7px;
  text-transform: uppercase;
}

.site-footer h2 {
  color: var(--gold-bright);
  font-size: clamp(25px, 2.35vw, 35px);
  line-height: 1.2;
}

.footer-logo {
  display: inline-flex;
  width: clamp(150px, 15vw, 220px);
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer h3 {
  color: #e9e4dc;
  font-size: 15px;
  line-height: 1.2;
}

.footer-brand p,
.footer-contact p,
.footer-contact span,
.site-footer nav a,
.footer-contact a {
  color: #bebebe;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.footer-brand p {
  margin: 24px 0 22px;
  max-width: 420px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-socials a {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 5px;
  background: var(--gold);
  color: #090909;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-socials i {
  font-size: 13px;
}

.home-catalog-footer i,
.catalog-sheet footer i {
  display: block;
  margin: 0 auto 8px;
  color: var(--gold-bright);
  font-size: 22px;
}

.back-card li i {
  width: 20px;
  color: var(--gold-bright);
  text-align: center;
}

.site-footer nav,
.footer-contact {
  display: flex;
  flex-direction: column;
}

.site-footer nav {
  gap: 12px;
  margin-top: 24px;
}

.site-footer nav a,
.footer-contact a,
.footer-contact span {
  transition: color .2s ease;
}

.site-footer nav a:hover,
.footer-contact a:hover {
  color: var(--gold-bright);
}

.footer-contact {
  gap: 8px;
}

.footer-contact h3 {
  margin-bottom: 20px;
}

.footer-contact p {
  margin: 0 0 4px;
  color: #dedede;
}

.footer-contact a,
.footer-contact span {
  display: block;
}

.footer-contact i {
  width: 18px;
  color: var(--gold-bright);
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgb(219 166 66 / 28%);
  padding: 16px 20px 18px;
  color: #6f6f6f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
}

.branding-panel {
  grid-column: 2;
}

.page-shell .branding-panel {
  grid-column: auto;
}

.brand-sheet {
  overflow: hidden;
  min-height: 700px;
  padding: clamp(38px, 4vw, 58px) clamp(32px, 6vw, 88px) 0;
  background:
    radial-gradient(circle at 50% 45%, rgb(219 166 66 / 13%), transparent 28%),
    radial-gradient(circle at 18% 12%, rgb(255 255 255 / 5%), transparent 22%),
    #050505;
  color: #fff;
}

.brand-sheet header {
  display: grid;
  grid-template-columns: minmax(220px, .78fr) 1.15fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding-bottom: 30px;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
}

.brand-sheet .logo {
  width: clamp(150px, 14vw, 230px);
}

.brand-sheet header h2 {
  margin: 0;
  padding-left: clamp(22px, 3vw, 38px);
  border-left: 1px solid rgb(219 166 66 / 62%);
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.28;
  text-transform: uppercase;
}

.roles {
  margin: 28px 0 4px;
  color: #aaa;
  font-size: clamp(15px, 1.5vw, 22px);
  font-weight: 900;
  letter-spacing: clamp(3px, .55vw, 8px);
  text-align: center;
  text-transform: uppercase;
}

.map {
  position: relative;
  max-width: 1120px;
  height: clamp(220px, 23vw, 320px);
  margin: 0 auto;
  opacity: .95;
}

.map img {
  position: absolute;
  inset: 3% 0 0;
  width: 100%;
  height: 95%;
  object-fit: contain;
  opacity: .36;
  filter: grayscale(1) invert(1) contrast(1.15);
}

.map i {
  position: absolute;
  left: 56%;
  top: 43%;
  width: 18%;
  height: 18%;
  border-top: 3px solid rgb(242 199 101 / 82%);
  border-radius: 50%;
  transform: rotate(-10deg);
  filter: drop-shadow(0 0 10px rgb(219 166 66 / 22%));
}

.map span {
  position: absolute;
  z-index: 2;
  color: #fff;
  font-size: clamp(17px, 1.55vw, 25px);
  font-weight: 900;
  text-transform: uppercase;
}

.map span::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  margin: 0 auto 8px;
  border: 3px solid var(--gold-bright);
  border-radius: 50%;
}

.nepal {
  left: 55%;
  top: 54%;
}

.china {
  right: 23%;
  top: 36%;
}

.brand-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1160px;
  margin: 20px auto 42px;
  border-top: 0;
  border-bottom: 0;
}

.brand-icons span {
  min-height: 142px;
  padding: 24px 20px 18px;
  border-right: 1px solid rgb(219 166 66 / 36%);
  color: #e9e9e9;
  font-size: clamp(13px, 1.15vw, 17px);
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}

.brand-icons i {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border: 1px solid rgb(219 166 66 / 70%);
  border-radius: 18px;
  color: var(--gold-bright);
  font-size: 24px;
}

.brand-icons span:last-child {
  border-right: 0;
}

.cargo-strip {
  height: clamp(120px, 12vw, 170px);
  margin: 0 calc(clamp(32px, 6vw, 88px) * -1);
  background:
    linear-gradient(90deg, rgb(0 0 0 / 24%), rgb(0 0 0 / 4%) 45%, rgb(0 0 0 / 24%)),
    url("assets/aeroplane.png") center / cover no-repeat;
  box-shadow:
    inset 0 30px 40px rgb(0 0 0 / 25%),
    inset 0 -26px 36px rgb(0 0 0 / 28%);
}

.brand-sheet footer {
  margin: 0 calc(clamp(32px, 6vw, 88px) * -1);
  padding: 24px 18px 28px;
  background: #070707;
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 800;
  text-align: center;
}

@media (max-width: 1180px) {
  .board {
    grid-template-columns: 1fr;
  }

  .catalog-panel,
  .branding-panel {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 780px) {
  .board {
    gap: 16px;
    padding: 8px;
  }

  .nav,
  .hero,
  .profile-hero,
  .why,
  .profile-content,
  .footer-grid,
  .contact-hero,
  .brand-sheet header {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-wrap: wrap;
    gap: 14px;
    padding: 22px;
  }

  .hamburger {
    display: inline-flex;
    margin-left: auto;
  }

  .nav .quote-btn,
  .nav .whatsapp-mini {
    order: 2;
  }

  .nav nav {
    order: 3;
    flex-basis: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgb(219 166 66 / 22%);
    border-radius: 8px;
    background: rgb(255 255 255 / 5%);
  }

  .nav-toggle:checked ~ nav {
    display: flex;
  }

  .nav nav a {
    justify-content: center;
    min-height: 44px;
    border-radius: 6px;
  }

  .hero-copy {
    padding: 42px 24px;
  }

  .hero-art {
    min-height: 100%;
    background-position: center bottom;
    background-size: cover;
    opacity: .55;
  }

  .profile-hero-copy {
    padding: 36px 24px 42px;
  }

  .ship-scene {
    min-height: 270px;
    clip-path: none;
  }

  .ship-scene::before {
    background: linear-gradient(180deg, transparent, rgb(0 0 0 / 28%));
  }

  .profile-actions {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits,
  .category-grid,
  .why-icons,
  .catalog-grid,
  .brand-icons,
  .catalog-sheet footer,
  .profile-sheet footer,
  .home-catalog-footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-catalog-header,
  .home-catalog-grid article {
    grid-template-columns: 1fr;
  }

  .home-catalog-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-catalog-header h2,
  .home-catalog-header p {
    text-align: left;
  }

  .home-catalog-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 34px;
  }

  .contact-hero {
    padding: 24px 16px;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 34px 24px;
  }

  .benefits {
    width: 100%;
  }

  .catalog-grid article,
  .catalog-grid article:nth-child(even),
  .catalog-grid article:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid #c9c9c7;
  }

  .front-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 520px) {
  .panel-title {
    font-size: 14px;
  }

  .logo,
  .nav .logo,
  .catalog-sheet .logo,
  .profile-hero .logo {
    width: 120px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .benefits,
  .category-grid,
  .why-icons,
  .catalog-grid,
  .catalog-sheet footer,
  .brand-icons,
  .profile-sheet footer,
  .home-catalog-footer,
  .check-list,
  .product-tags {
    grid-template-columns: 1fr;
  }

  .catalog-grid article {
    grid-template-columns: 1fr;
  }

  .brand-sheet,
  .business-card,
  .profile-hero {
    padding-left: 22px;
    padding-right: 22px;
  }

  .profile-hero {
    padding-left: 0;
    padding-right: 0;
  }

  .profile-content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .profile-actions {
    grid-template-columns: 1fr;
  }

  .profile-actions span {
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 14%);
  }

  .profile-actions span:last-child {
    border-bottom: 0;
  }

  .roles {
    letter-spacing: 2px;
    font-size: 12px;
  }

  .site-footer h2,
  .site-footer h3,
  .footer-bottom {
    letter-spacing: 3px;
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .site-window {
    border-left: 0;
    border-right: 0;
  }

  .nav {
    position: sticky;
    top: 0;
    z-index: 20;
    min-height: 76px;
    padding: 12px 14px;
    gap: 10px;
  }

  .nav .logo {
    width: 112px;
    margin-right: 0;
  }

  .hamburger {
    order: 1;
    width: 40px;
    height: 40px;
  }

  .nav-toggle:checked + .hamburger i::before {
    content: "\f00d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
  }

  .nav .quote-btn {
    order: 4;
    flex: 1 1 100%;
    min-height: 42px;
  }

  .nav .whatsapp-mini {
    order: 2;
    width: 40px;
    height: 40px;
  }

  .nav nav {
    order: 3;
    margin-top: 4px;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgb(0 0 0 / 90%) 0%, rgb(0 0 0 / 76%) 54%, rgb(0 0 0 / 54%) 100%),
      repeating-linear-gradient(-9deg, transparent 0 12px, rgb(255 255 255 / 3%) 13px 14px);
  }

  .hero-copy {
    padding: 40px 18px 30px;
  }

  .hero h1 {
    max-width: 360px;
    font-size: clamp(34px, 11vw, 48px);
    line-height: 1.08;
  }

  .hero p {
    font-size: 17px;
    line-height: 1.35;
  }

  .hero-art {
    background-position: 67% bottom;
    background-size: auto 100%;
    opacity: .42;
  }

  .benefits {
    grid-template-columns: 1fr;
    border-color: rgb(219 166 66 / 45%);
  }

  .benefits article {
    min-height: auto;
    padding: 15px 14px;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 13%);
  }

  .benefits article:last-child {
    border-bottom: 0;
  }

  .inquiry-strip {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 16px 18px;
  }

  .inquiry-strip .send-btn {
    width: 100%;
    margin-left: 0;
  }

  .categories,
  .homepage-catalog {
    padding-left: 16px;
    padding-right: 16px;
  }

  .categories h3,
  .why h3 {
    font-size: 18px;
  }

  .category-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .cat-card {
    min-height: 164px;
  }

  .cat-card div {
    height: 92px;
  }

  .cat-card h4 {
    margin: 10px 12px 6px;
    font-size: 11px;
  }

  .cat-card a {
    margin: 0 12px 12px;
  }

  .home-catalog-header {
    gap: 10px;
    margin-bottom: 16px;
  }

  .home-catalog-header .logo {
    width: 116px;
  }

  .home-catalog-header h2 {
    font-size: 30px;
  }

  .home-catalog-grid article {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 12px;
    padding: 16px;
  }

  .home-catalog-photo,
  .home-catalog-photo img {
    min-height: 150px;
  }

  .home-catalog-grid h3 {
    font-size: 18px;
  }

  .home-catalog-grid ul {
    font-size: 12px;
  }

  .home-catalog-footer span {
    min-height: 64px;
    font-size: 11px;
  }

  .why {
    grid-template-columns: 1fr;
    margin-top: 26px;
    margin-bottom: 26px;
  }

  .why-list {
    padding: 24px 16px;
  }

  .why-icons {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .grow-card {
    padding: 26px 28px 28px;
  }

  .grow-card::before {
    display: none;
  }

  .profile-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    background: #050505;
  }

  .profile-hero-copy {
    padding: 32px 18px 26px;
  }

  .profile-hero .logo {
    width: 124px;
  }

  .profile-hero h2 {
    margin-top: 28px;
    font-size: clamp(40px, 13vw, 58px);
  }

  .profile-hero p {
    font-size: 20px;
  }

  .profile-actions {
    grid-template-columns: 1fr 1fr;
    margin-top: 24px;
  }

  .profile-actions span {
    min-height: 86px;
    font-size: 12px;
  }

  .ship-scene {
    min-height: 300px;
    clip-path: none;
  }

  .ship-scene::before {
    background: linear-gradient(180deg, rgb(216 163 58 / 90%) 0 5px, transparent 5px);
  }

  .profile-content {
    grid-template-columns: 1fr;
    padding: 24px 16px;
  }

  .profile-card {
    min-height: auto;
    padding: 24px 18px;
  }

  .check-list,
  .product-tags {
    grid-template-columns: 1fr;
  }

  .brand-sheet {
    min-height: auto;
    padding: 34px 16px 0;
  }

  .brand-sheet header {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 22px;
  }

  .brand-sheet .logo {
    width: 150px;
  }

  .brand-sheet header h2 {
    padding-left: 18px;
    font-size: 29px;
  }

  .roles {
    margin-top: 22px;
    font-size: 13px;
    line-height: 1.9;
    letter-spacing: 3px;
  }

  .map {
    height: 230px;
    margin-top: 4px;
  }

  .map span {
    font-size: 13px;
  }

  .map span::before {
    width: 10px;
    height: 10px;
    border-width: 2px;
  }

  .nepal {
    left: 48%;
    top: 58%;
  }

  .china {
    right: 13%;
    top: 38%;
  }

  .brand-icons {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 14px auto 28px;
  }

  .brand-icons span {
    min-height: 132px;
    padding: 20px 12px;
    font-size: 11px;
  }

  .brand-icons i {
    width: 48px;
    height: 48px;
    font-size: 19px;
  }

  .cargo-strip {
    height: 120px;
    margin-left: -16px;
    margin-right: -16px;
    background-position: center;
  }

  .brand-sheet footer {
    margin-left: -16px;
    margin-right: -16px;
    padding: 18px 14px 20px;
    font-size: 18px;
    line-height: 1.35;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
    padding: 34px 22px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-logo {
    width: 142px;
  }

  .site-footer nav {
    margin-top: 16px;
  }

  .footer-brand p,
  .footer-contact p,
  .footer-contact span,
  .site-footer nav a,
  .footer-contact a {
    font-size: 13px;
  }

  .footer-bottom {
    padding: 14px 12px;
    font-size: 10px;
    letter-spacing: 1px;
  }

  .contact-hero {
    min-height: auto;
    padding: 18px;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 30px 20px;
  }

  .contact-info-panel h1,
  .contact-form-panel h2 {
    font-size: 36px;
  }

  .contact-info-list {
    gap: 22px;
  }

  .contact-info-list span {
    font-size: 15px;
  }

  .contact-socials {
    padding-top: 30px;
  }

  .contact-form-panel form {
    gap: 22px;
  }
}

@media (max-width: 380px) {
  .category-grid,
  .why-icons,
  .brand-icons,
  .profile-actions {
    grid-template-columns: 1fr;
  }

  .nav .logo {
    width: 100px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .quote-btn,
  .send-btn,
  .grow-card a {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

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


/* Dedicated Gallery Grid */
.dedicated-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  padding: 2rem;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 250px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* Modern Category Cards */
.cat-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  min-height: 240px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.cat-card-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.cat-card-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
  transition: opacity 0.3s ease;
}

.cat-card:hover .cat-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.2) 100%);
}

.cat-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  color: #fff;
  z-index: 2;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.cat-card:hover .cat-card-content {
  transform: translateY(0);
}

.cat-card-content h4 {
  margin: 0 0 8px 0;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cat-card-content span {
  font-size: 13px;
  font-weight: 700;
  color: #f2c765;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Mobile Overrides for Category Cards */
@media (max-width: 640px) {
  .category-grid {
    grid-template-columns: 1fr; /* 1 column layout for better visibility */
    gap: 16px;
  }
  
  .cat-card {
    min-height: 180px; /* Slightly shorter for 1-column mobile */
  }
  
  /* Reset the generic div height that was breaking the overlay */
  .cat-card div {
    height: auto !important;
  }
  
  .cat-card-overlay {
    height: 100% !important;
  }

  /* Make text always visible on mobile since there's no hover */
  .cat-card-content {
    transform: translateY(0);
    padding: 16px;
  }
  
  .cat-card-content h4 {
    font-size: 22px;
  }
  
  .cat-card-content span {
    font-size: 14px;
  }
}

/* Centered Hero Layout (since image was removed) */
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: clamp(80px, 8vw, 120px) !important;
  padding-bottom: clamp(60px, 6vw, 100px) !important;
}

.hero h1 {
  max-width: 900px !important; /* Allow it to be wider when centered */
  margin: 0 auto !important;
}

.hero p {
  text-align: center;
  margin-left: auto !important;
  margin-right: auto !important;
}

.benefits {
  margin: 0 auto !important;
}

.benefits article {
  text-align: center; /* Center content inside benefit boxes */
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* Remove massive empty vertical space now that image is gone */
.hero {
  min-height: auto !important;
}


/* Increase hero title size for laptop/desktop now that it's centered */
@media (min-width: 769px) {
  .hero h1 {
    font-size: clamp(48px, 6vw, 84px) !important;
    line-height: 1.05 !important;
  }
  .hero p {
    font-size: 24px !important;
    margin-top: 30px !important;
    margin-bottom: 42px !important;
  }
}
