@charset "UTF-8";

/* =========================================
   HERO SECTION BASE
   ========================================= */

.hero {
  position: relative;
  min-height: 920px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 120px;
  background:
    linear-gradient(
      135deg,
      #081722 0%,
      #0b1b29 18%,
      #12344a 42%,
      #1f6c8b 68%,
      #4fa3c4 88%,
      #8ed3ee 100%
    );
  color: var(--snow);
}

/* =========================================
   HERO BACKGROUND LAYERS
   ========================================= */

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(142, 211, 238, 0.18) 0%, transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(79, 163, 196, 0.22) 0%, transparent 24%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08) 0%, transparent 28%);
  pointer-events: none;
}

.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0) 32%,
      rgba(8, 23, 34, 0.10) 100%
    );
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      rgba(8, 23, 34, 0.60) 0%,
      rgba(8, 23, 34, 0.28) 46%,
      rgba(8, 23, 34, 0.10) 100%
    );
  pointer-events: none;
}

/* =========================================
   FLOATING BACKGROUND SHAPES
   ========================================= */

.hero-bg-shape {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
}

.hero-bg-shape-1,
.hero-bg-shape-2 {
  animation: heroFloatShape 12s ease-in-out infinite;
}

.hero-bg-shape-1 {
  top: -120px;
  right: -120px;
  width: 460px;
  height: 460px;
  background:
    radial-gradient(
      circle,
      rgba(142, 211, 238, 0.50) 0%,
      rgba(79, 163, 196, 0.16) 58%,
      rgba(79, 163, 196, 0) 100%
    );
  opacity: 0.95;
}

.hero-bg-shape-2 {
  bottom: -140px;
  left: -120px;
  width: 400px;
  height: 400px;
  background:
    radial-gradient(
      circle,
      rgba(31, 108, 139, 0.34) 0%,
      rgba(122, 111, 155, 0.14) 62%,
      rgba(122, 111, 155, 0) 100%
    );
  opacity: 0.9;
  animation-delay: 4s;
}

@keyframes heroFloatShape {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(28px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* =========================================
   HERO GRID
   ========================================= */

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}

/* =========================================
   LEFT COPY COLUMN
   ========================================= */

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 740px;
}

.hero-brand-wrap {
  margin-bottom: 16px;
}

.hero-content {
  position: relative;
  max-width: 720px;
}

/* =========================================
   BRAND
   ========================================= */

.hero-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.hero-brand-script {
  display: inline-block;
  font-family: 'Bunch Blossoms Personal Use', cursive;
  font-size: 64px;
  line-height: 0.92;
  letter-spacing: 0.3px;
  color: var(--snow);
  text-shadow: 0 10px 28px rgba(8, 23, 34, 0.25);
}

.hero-brand-sub {
  display: inline-block;
  margin-top: 8px;
  font-family: 'Shameimaru Sans Alternatives', sans-serif;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--glacier-blue);
}

/* =========================================
   EYEBROW
   ========================================= */

.hero-eyebrow {
  display: inline-block;
  margin: 0 0 24px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: 'Shameimaru Sans Alternatives', sans-serif;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--snow);
}

/* =========================================
   HEADLINE
   ========================================= */

.hero h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-family: 'Bunch Blossoms Personal Use', cursive;
  font-size: 58px;
  line-height: 1.28;
  letter-spacing: 2px;
  color: var(--snow);
  text-shadow: 0 8px 28px rgba(8, 23, 34, 0.22);
}

/* =========================================
   DESCRIPTION
   ========================================= */

.hero-text {
  max-width: 640px;
  margin-bottom: 34px;
  font-family: 'Shameimaru Sans Alternatives', sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}

/* =========================================
   BUTTONS
   ========================================= */

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
}

.hero-buttons .btn {
  font-family: 'Shameimaru Sans Alternatives', sans-serif;
  box-shadow: 0 18px 36px rgba(8, 23, 34, 0.18);
}

.hero-buttons .btn-primary {
  background:
    linear-gradient(
      135deg,
      #8ed3ee 0%,
      #4fa3c4 38%,
      #1f6c8b 100%
    );
  color: var(--snow);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-buttons .btn-primary:hover,
.hero-buttons .btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(8, 23, 34, 0.22);
}

.hero-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.10);
  color: var(--snow);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-buttons .btn-secondary:hover,
.hero-buttons .btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

/* =========================================
   INFO ROW
   ========================================= */

.hero-info-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-info-item {
  min-width: 0;
  padding: 16px 16px;
  border-radius: 18px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.14) 0%,
      rgba(255, 255, 255, 0.08) 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 34px rgba(8, 23, 34, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-info-label {
  display: block;
  margin-bottom: 8px;
  font-family: 'Shameimaru Sans Alternatives', sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--glacier-blue);
}

.hero-info-item p {
  margin: 0;
  font-family: 'Shameimaru Sans Alternatives', sans-serif;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
  color: var(--snow);
}

/* =========================================
   RIGHT VISUAL COLUMN
   ========================================= */

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-gallery-shell {
  position: relative;
  width: 100%;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* =========================================
   FEATURE IMAGE
   ========================================= */

.hero-feature-wrap {
  position: relative;
}

.hero-feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(8, 23, 34, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-feature-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(8, 23, 34, 0.06) 0%,
      rgba(8, 23, 34, 0.18) 100%
    );
  z-index: 1;
  pointer-events: none;
}

.hero-feature-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.14) 0%,
      rgba(255, 255, 255, 0) 36%
    );
  z-index: 1;
  pointer-events: none;
}

.hero-feature-card img {
  display: block;
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 34px;
  transition: transform 0.8s ease, opacity 0.45s ease;
}

.hero-feature-card:hover img {
  transform: scale(1.04);
}

/* =========================================
   IMAGE CAPTION
   ========================================= */

.hero-image-caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 6;
  min-width: 170px;
  max-width: 240px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(8, 23, 34, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 42px rgba(8, 23, 34, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-image-kicker {
  display: block;
  margin-bottom: 6px;
  font-family: 'Shameimaru Sans Alternatives', sans-serif;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--glacier-blue);
}

.hero-image-caption p {
  margin: 0;
  font-family: 'Shameimaru Sans Alternatives', sans-serif;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--snow);
}

/* =========================================
   THUMBNAILS
   ========================================= */

.hero-gallery-top {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  position: relative;
  z-index: 5;
}

.hero-thumb {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.16) 0%,
      rgba(255, 255, 255, 0.09) 100%
    );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 8px;
  cursor: pointer;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background-color 0.35s ease;
  box-shadow: 0 16px 32px rgba(8, 23, 34, 0.14);
}

.hero-thumb:hover,
.hero-thumb:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(142, 211, 238, 0.64);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.20) 0%,
      rgba(255, 255, 255, 0.12) 100%
    );
  outline: none;
}

.hero-thumb.is-active {
  transform: translateY(-6px);
  border-color: var(--glacier-blue);
  box-shadow:
    0 20px 36px rgba(8, 23, 34, 0.18),
    0 0 0 1px rgba(142, 211, 238, 0.18);
}

.hero-thumb img {
  display: block;
  width: 100%;
  height: 76px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 8px;
}

.hero-thumb span {
  display: block;
  font-family: 'Shameimaru Sans Alternatives', sans-serif;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--snow);
  text-align: center;
}

/* =========================================
   1920
   ========================================= */

@media screen and (max-width: 1920px) {
  .hero {
    min-height: 900px;
    padding-top: 165px;
    padding-bottom: 125px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 58px;
    align-items: center;
  }

  .hero-copy {
    max-width: 720px;
    padding-right: 8px;
  }

  .hero-content {
    max-width: 700px;
  }

  .hero-brand-wrap {
    margin-bottom: 16px;
  }

  .hero-brand-script {
    font-size: 58px;
    line-height: 0.92;
    letter-spacing: 0.2px;
  }

  .hero-brand-sub {
    margin-top: 8px;
    font-size: 13px;
    letter-spacing: 2.8px;
  }

  .hero-eyebrow {
    margin-bottom: 22px;
    padding: 9px 14px;
    font-size: 12px;
    letter-spacing: 1.9px;
  }

  .hero h1 {
    max-width: 680px;
    margin-bottom: 22px;
    font-size: 52px;
    line-height: 1.34;
    letter-spacing: 1.6px;
  }

  .hero-text {
    max-width: 610px;
    margin-bottom: 32px;
    font-size: 18px;
    line-height: 1.72;
  }

  .hero-buttons {
    gap: 14px;
    margin-bottom: 32px;
  }

  .hero-buttons .btn {
    min-height: 50px;
  }

  .hero-info-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
  }

  .hero-info-item {
    padding: 15px 15px;
    border-radius: 17px;
  }

  .hero-info-label {
    margin-bottom: 8px;
    font-size: 10px;
    letter-spacing: 1.7px;
  }

  .hero-info-item p {
    font-size: 13px;
    line-height: 1.42;
  }

  .hero-visual {
    padding-left: 8px;
  }

  .hero-gallery-shell {
    max-width: 590px;
    gap: 16px;
  }

  .hero-feature-wrap {
    width: 100%;
  }

  .hero-feature-card {
    border-radius: 30px;
  }

  .hero-feature-card img {
    height: 500px;
    border-radius: 30px;
  }

  .hero-image-caption {
    left: 18px;
    bottom: 18px;
    min-width: 158px;
    max-width: 230px;
    padding: 13px 15px;
    border-radius: 16px;
  }

  .hero-image-kicker {
    font-size: 10px;
    letter-spacing: 1.6px;
  }

  .hero-image-caption p {
    font-size: 15px;
    line-height: 1.2;
  }

  .hero-gallery-top {
    gap: 10px;
  }

  .hero-thumb {
    padding: 7px;
    border-radius: 16px;
  }

  .hero-thumb img {
    height: 72px;
    border-radius: 11px;
    margin-bottom: 7px;
  }

  .hero-thumb span {
    font-size: 12px;
    line-height: 1.2;
  }

  .hero-bg-shape-1 {
    top: -100px;
    right: -100px;
    width: 420px;
    height: 420px;
  }

  .hero-bg-shape-2 {
    bottom: -110px;
    left: -100px;
    width: 340px;
    height: 340px;
  }
}

/* =========================================
   1200
   ========================================= */

@media screen and (max-width: 1200px) {
  .hero {
    min-height: 850px;
    padding-top: 145px;
    padding-bottom: 110px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 42px;
    align-items: center;
  }

  .hero-copy {
    max-width: 100%;
    padding-right: 6px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-brand-wrap {
    margin-bottom: 14px;
  }

  .hero-brand-script {
    font-size: 50px;
    line-height: 0.94;
    letter-spacing: 0.1px;
  }

  .hero-brand-sub {
    margin-top: 7px;
    font-size: 12px;
    letter-spacing: 2.4px;
  }

  .hero-eyebrow {
    margin-bottom: 18px;
    padding: 8px 13px;
    font-size: 11px;
    letter-spacing: 1.8px;
  }

  .hero h1 {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: 46px;
    line-height: 1.38;
    letter-spacing: 1.4px;
  }

  .hero-text {
    max-width: 540px;
    margin-bottom: 28px;
    font-size: 17px;
    line-height: 1.68;
  }

  .hero-buttons {
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
  }

  .hero-buttons .btn {
    min-height: 48px;
    min-width: 0;
  }

  .hero-info-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-info-item {
    padding: 14px 14px;
    border-radius: 16px;
  }

  .hero-info-label {
    margin-bottom: 7px;
    font-size: 10px;
    letter-spacing: 1.6px;
  }

  .hero-info-item p {
    font-size: 13px;
    line-height: 1.4;
  }

  .hero-visual {
    padding-left: 4px;
  }

  .hero-gallery-shell {
    max-width: 540px;
    gap: 14px;
  }

  .hero-feature-card {
    border-radius: 28px;
  }

  .hero-feature-card img {
    height: 455px;
    border-radius: 28px;
  }

  .hero-image-caption {
    left: 16px;
    bottom: 16px;
    min-width: 150px;
    max-width: 220px;
    padding: 12px 14px;
    border-radius: 15px;
  }

  .hero-image-kicker {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .hero-image-caption p {
    font-size: 14px;
    line-height: 1.2;
  }

  .hero-gallery-top {
    gap: 10px;
  }

  .hero-thumb {
    padding: 6px;
    border-radius: 15px;
  }

  .hero-thumb img {
    height: 68px;
    border-radius: 10px;
    margin-bottom: 6px;
  }

  .hero-thumb span {
    font-size: 12px;
    margin-top: 4px;
  }

  .hero-bg-shape-1 {
    top: -88px;
    right: -92px;
    width: 350px;
    height: 350px;
  }

  .hero-bg-shape-2 {
    bottom: -92px;
    left: -86px;
    width: 270px;
    height: 270px;
  }
}

/* =========================================
   768
   ========================================= */

@media screen and (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: 155px;
    padding-bottom: 90px;
  }

  .hero-overlay {
    background:
      linear-gradient(
        to bottom,
        rgba(8, 23, 34, 0.56) 0%,
        rgba(8, 23, 34, 0.26) 42%,
        rgba(8, 23, 34, 0.14) 100%
      );
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }

  .hero-copy {
    display: contents;
  }

  .hero-brand-wrap {
    order: 1;
    margin-bottom: -2px;
  }

  .hero-eyebrow {
    order: 2;
    margin: 0 0 2px;
    width: fit-content;
    max-width: 100%;
    padding: 8px 12px;
    font-size: 11px;
    letter-spacing: 1.7px;
  }

  .hero-visual {
    order: 3;
    width: 100%;
    padding-left: 0;
    margin-bottom: 0;
    justify-content: stretch;
  }

  .hero-gallery-shell {
    width: 100%;
    max-width: 100%;
    gap: 14px;
  }

  .hero-feature-wrap {
    width: 100%;
  }

  .hero-feature-card {
    border-radius: 24px;
  }

  .hero-feature-card img {
    height: 430px;
    border-radius: 24px;
  }

  .hero-image-caption {
    left: 14px;
    bottom: 14px;
    min-width: 0;
    max-width: 190px;
    padding: 11px 12px;
    border-radius: 14px;
  }

  .hero-image-kicker {
    font-size: 10px;
    letter-spacing: 1.4px;
  }

  .hero-image-caption p {
    font-size: 13px;
    line-height: 1.2;
  }

  .hero-gallery-top {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .hero-thumb {
    padding: 6px;
    border-radius: 14px;
  }

  .hero-thumb img {
    height: 86px;
    border-radius: 10px;
    margin-bottom: 6px;
  }

  .hero-thumb span {
    font-size: 12px;
    line-height: 1.2;
    margin-top: 4px;
  }

  .hero-content {
    order: 4;
    max-width: 100%;
    margin-top: 0;
  }

  .hero-brand-script {
    font-size: 48px;
    line-height: 0.96;
  }

  .hero-brand-sub {
    margin-top: 6px;
    font-size: 12px;
    letter-spacing: 2px;
  }

  .hero h1 {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: 40px;
    line-height: 1.4;
    letter-spacing: 1.2px;
  }

  .hero-text {
    max-width: 100%;
    margin-bottom: 28px;
    font-size: 17px;
    line-height: 1.66;
  }

  .hero-buttons {
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
  }

  .hero-buttons .btn {
    flex: 0 1 auto;
    min-height: 48px;
  }

  .hero-info-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-info-item {
    padding: 14px 14px;
    border-radius: 15px;
  }

  .hero-info-label {
    margin-bottom: 6px;
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .hero-info-item p {
    font-size: 13px;
    line-height: 1.42;
  }

  .hero-bg-shape-1 {
    top: -72px;
    right: -82px;
    width: 270px;
    height: 270px;
  }

  .hero-bg-shape-2 {
    bottom: -78px;
    left: -64px;
    width: 220px;
    height: 220px;
  }
}

/* =========================================
   480
   ========================================= */

@media screen and (max-width: 480px) {
  .hero {
    padding-top: 145px;
    padding-bottom: 70px;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero-brand-wrap {
    margin-bottom: 0;
  }

  .hero-brand-script {
    font-size: 38px;
    line-height: 0.98;
    letter-spacing: 0;
  }

  .hero-brand-sub {
    margin-top: 5px;
    font-size: 11px;
    letter-spacing: 1.8px;
  }

  .hero-eyebrow {
    padding: 7px 10px;
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .hero-feature-card {
    border-radius: 20px;
  }

  .hero-feature-card img {
    height: 340px;
    border-radius: 20px;
  }

  .hero-image-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    width: auto;
    padding: 10px 11px;
    border-radius: 14px;
  }

  .hero-image-kicker {
    font-size: 9px;
    letter-spacing: 1.3px;
  }

  .hero-image-caption p {
    font-size: 12px;
  }

  .hero-gallery-shell {
    gap: 12px;
  }

  .hero-gallery-top {
    gap: 8px;
	 grid-template-columns: repeat(2, 1fr);
  }

  .hero-thumb {
    padding: 5px;
    border-radius: 12px;
  }

  .hero-thumb img {
    height: 72px;
    border-radius: 9px;
    margin-bottom: 5px;
  }

  .hero-thumb span {
    font-size: 11px;
    line-height: 1.16;
  }

  .hero h1 {
    margin-bottom: 16px;
    font-size: 28px;
    line-height: 1.38;
    letter-spacing: 0.8px;
  }

  .hero-text {
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.62;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 22px;
  }

  .hero-buttons .btn {
    width: 100%;
    min-height: 46px;
    text-align: center;
  }

  .hero-info-row {
    gap: 9px;
  }

  .hero-info-item {
    padding: 13px 13px;
    border-radius: 14px;
  }

  .hero-info-label {
    font-size: 9px;
    letter-spacing: 1.4px;
  }

  .hero-info-item p {
    font-size: 12px;
    line-height: 1.38;
  }

  .hero-bg-shape-1 {
    top: -58px;
    right: -66px;
    width: 200px;
    height: 200px;
  }

  .hero-bg-shape-2 {
    bottom: -62px;
    left: -56px;
    width: 160px;
    height: 160px;
  }
}

/* =========================================
   300
   ========================================= */

@media screen and (max-width: 300px) {
  .hero {
    padding-top: 150px;
    padding-bottom: 55px;
  }

  .hero-grid {
    gap: 16px;
  }

  .hero-brand-script {
    font-size: 30px;
    line-height: 1;
  }

  .hero-brand-sub {
    margin-top: 4px;
    font-size: 9px;
    letter-spacing: 1.4px;
  }

  .hero-eyebrow {
    padding: 6px 8px;
    font-size: 9px;
    letter-spacing: 1.2px;
  }

  .hero-feature-card img {
    height: 260px;
    border-radius: 18px;
  }

  .hero-image-caption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 9px 10px;
    border-radius: 12px;
  }

  .hero-image-kicker {
    font-size: 8px;
    letter-spacing: 1.1px;
  }

  .hero-image-caption p {
    font-size: 11px;
  }

  .hero-gallery-top {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-thumb {
    padding: 5px;
    border-radius: 11px;
  }

  .hero-thumb img {
    height: 90px;
    margin-bottom: 5px;
  }

  .hero-thumb span {
    font-size: 11px;
  }

  .hero h1 {
    margin-bottom: 14px;
    font-size: 24px;
    line-height: 1.34;
    letter-spacing: 0.4px;
  }

  .hero-text {
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.56;
  }

  .hero-buttons {
    gap: 8px;
    margin-bottom: 18px;
  }

  .hero-buttons .btn {
    min-height: 44px;
  }

  .hero-info-item {
    padding: 12px 12px;
    border-radius: 12px;
  }

  .hero-info-label {
    font-size: 8px;
    letter-spacing: 1.2px;
  }

  .hero-info-item p {
    font-size: 11px;
    line-height: 1.34;
  }

  .hero-bg-shape-1 {
    top: -42px;
    right: -48px;
    width: 135px;
    height: 135px;
  }

  .hero-bg-shape-2 {
    bottom: -48px;
    left: -42px;
    width: 112px;
    height: 112px;
  }
}