/* BINGSTORM LTD — cool mint + marine teal (home appliances, Brooklyn) */
:root {
  --bg-page: #e8f4f3;
  --bg-card: #ffffff;
  --ink: #0f172a;
  --ink-muted: #475569;
  --accent: #0d9488;
  --accent-2: #2dd4bf;
  --header-bg: rgba(255, 255, 255, 0.94);
  --footer-bg: #0c1f33;
  --footer-ink: #cbd5e1;
  --line: rgba(15, 23, 42, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(880px 640px at 100% 0%, rgba(13, 148, 136, 0.11), transparent 52%),
    radial-gradient(700px 520px at 0% 100%, rgba(45, 212, 191, 0.09), transparent 48%),
    var(--bg-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #0f766e;
  text-decoration: none;
}

a:hover {
  color: #115e59;
}

/* === Header === */
.site-header {
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.site-header__inner {
  width: min(1140px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  gap: 1rem;
}

.site-logo img {
  height: 44px;
  width: auto;
}

.site-nav {
  display: flex;
  gap: 1.15rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--ink-muted);
  font-weight: 650;
  font-size: 0.92rem;
  padding: 0.35rem 0.1rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--accent);
}

.page-main {
  width: min(1140px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 1.25rem 0 3rem;
}

/* === Hero (gt-carousel) === */
.gt-hero {
  position: relative;
  min-height: min(700px, 90vh);
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 2.75rem;
  isolation: isolate;
}

.gt-hero__slides {
  position: absolute;
  inset: 0;
}

.gt-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 720ms ease;
}

.gt-hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.gt-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gt-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(105deg, rgba(12, 31, 51, 0.88) 0%, rgba(15, 23, 42, 0.32) 48%, rgba(13, 88, 77, 0.78) 100%);
}

.gt-hero__inner {
  position: relative;
  z-index: 3;
  padding: clamp(3rem, 6.5vw, 5rem);
  max-width: 720px;
  color: #fafaf9;
}

.gt-hero__panes {
  position: relative;
  min-height: 11.5rem;
}

.gt-hero__pane {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 420ms ease, transform 420ms ease;
  pointer-events: none;
}

.gt-hero__pane.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.gt-kicker {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: #99f6e4;
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.gt-hero__pane h1,
.gt-hero__pane h2 {
  font-size: clamp(1.85rem, 3.8vw, 3.1rem);
  line-height: 1.1;
  margin: 0 0 0.85rem;
}

.gt-lead {
  margin: 0 0 1.6rem;
  font-size: clamp(0.98rem, 1.5vw, 1.12rem);
  opacity: 0.92;
  max-width: 52ch;
}

.gt-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.gt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 650;
  font-size: 0.94rem;
  border: 1px solid transparent;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.gt-btn:hover {
  transform: translateY(-1px);
}

.gt-btn--solid {
  background: var(--accent);
  color: #f0fdfa;
}

.gt-btn--solid:hover {
  background: #0f766e;
}

.gt-btn--line {
  color: #fafaf9;
  border-color: rgba(250, 250, 249, 0.35);
  background: rgba(12, 31, 51, 0.38);
}

.gt-btn--line:hover {
  background: rgba(12, 31, 51, 0.58);
}

.gt-hero__prev,
.gt-hero__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(250, 250, 249, 0.25);
  background: rgba(12, 31, 51, 0.45);
  color: #fafaf9;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gt-hero__prev {
  left: 0.75rem;
}

.gt-hero__next {
  right: 0.75rem;
}

.gt-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.45rem;
  padding: 0.4rem 0.55rem;
  border-radius: 999px;
  background: rgba(12, 31, 51, 0.55);
  border: 1px solid rgba(250, 250, 249, 0.15);
}

.gt-hero__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(250, 250, 249, 0.45);
  cursor: pointer;
  padding: 0;
}

.gt-hero__dot.is-active {
  background: var(--accent-2);
  transform: scale(1.12);
}

@media (max-width: 640px) {
  .gt-hero__prev,
  .gt-hero__next {
    display: none;
  }
  .gt-hero {
    min-height: min(620px, 88vh);
    border-radius: 16px;
  }
}

/* === Sections (cmp) === */
.cmp-container {
  width: min(1140px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.cmp-section {
  padding: clamp(3rem, 5vw, 4.75rem) 0;
}

.cmp-section__head {
  margin-bottom: 1.35rem;
}

.cmp-section__head--center {
  text-align: center;
}

.cmp-kicker {
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 0.78rem;
  opacity: 0.72;
  margin: 0 0 0.55rem;
  color: var(--accent);
}

.cmp-title {
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  letter-spacing: -0.02em;
  margin: 0;
}

/* Intro band */
.intro-band {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.intro-band__text h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.intro-band__text p {
  margin: 0;
  opacity: 0.82;
  font-size: 1.02rem;
}

.intro-band__visual {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.1);
  min-height: 220px;
}

.intro-band__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .intro-band {
    grid-template-columns: 1fr;
  }
}

/* Product grid 4 */
#products.cmp-section {
  padding-top: 2rem;
}

.cmp-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  align-items: stretch;
}

.cmp-card {
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.cmp-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.cmp-card__body {
  padding: 1rem 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.cmp-card__title {
  margin: 0;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}

.cmp-card__desc {
  margin: 0;
  opacity: 0.76;
  font-size: 0.93rem;
  line-height: 1.45;
}

@media (max-width: 1080px) {
  .cmp-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .cmp-container {
    width: calc(100% - 2.25rem);
  }
  .cmp-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Testimonials */
.cmp-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.cmp-review {
  border-radius: 18px;
  padding: 1.25rem 1.25rem 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
  min-height: 100%;
}

.cmp-review__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.cmp-review__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(13, 148, 136, 0.35);
}

.cmp-review__name {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.cmp-review__role {
  font-size: 0.88rem;
  opacity: 0.7;
  margin-top: 0.1rem;
}

.cmp-review__stars {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.65rem;
  color: #f59e0b;
}

.cmp-review__text {
  margin: 0;
  opacity: 0.84;
  font-size: 0.95rem;
}

@media (max-width: 1080px) {
  .cmp-testimonials {
    grid-template-columns: 1fr;
  }
}

/* Split message */
.cmp-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.1rem;
  align-items: stretch;
}

.cmp-split__media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
  min-height: 280px;
}

.cmp-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cmp-form {
  border-radius: 18px;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
  display: grid;
  gap: 0.9rem;
}

.cmp-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.cmp-field {
  display: grid;
  gap: 0.35rem;
}

.cmp-field__label {
  font-size: 0.9rem;
  opacity: 0.78;
}

.cmp-field__input,
.cmp-field__textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(41, 37, 36, 0.14);
  padding: 0.85rem 0.95rem;
  background: #fff;
  outline: none;
  font: inherit;
}

.cmp-field__textarea {
  resize: vertical;
}

.cmp-field__input:focus,
.cmp-field__textarea:focus {
  border-color: rgba(13, 148, 136, 0.5);
}

.cmp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.88rem 1.25rem;
  border-radius: 12px;
  border: 0;
  font-weight: 650;
  font-size: 0.95rem;
  cursor: pointer;
  font: inherit;
}

.cmp-btn--primary {
  background: var(--accent);
  color: #f0fdfa;
}

.cmp-btn--primary:hover {
  background: #0f766e;
}

.cmp-form__hint {
  margin: 0;
  font-size: 0.88rem;
  opacity: 0.72;
}

@media (max-width: 980px) {
  .cmp-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cmp-form__row {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.cmp-footer {
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--footer-bg);
  color: var(--footer-ink);
  margin-top: 0;
}

.cmp-footer a {
  color: #5eead4;
}

.cmp-footer a:hover {
  color: #ccfbf1;
}

.cmp-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr;
  gap: 1.25rem;
  align-items: start;
  padding-bottom: 2rem;
  width: min(1140px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.cmp-footer__logo {
  display: inline-block;
  margin-bottom: 0.65rem;
}

.cmp-footer__logo img {
  height: 40px;
  width: auto;
}

.cmp-footer__desc {
  margin: 0 0 1rem;
  opacity: 0.82;
  max-width: 42ch;
  font-size: 0.95rem;
}

.cmp-footer__title {
  margin: 0 0 0.8rem;
  font-size: 1rem;
  color: #fafaf9;
}

.cmp-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
  opacity: 0.88;
  font-size: 0.95rem;
}

.cmp-footer__list a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.cmp-footer__list a:hover {
  border-bottom-color: rgba(254, 243, 199, 0.35);
}

.cmp-footer__social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.cmp-social {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fef3c7;
  text-decoration: none;
}

.cmp-social img {
  width: 18px;
  height: 18px;
}

.cmp-social:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cmp-footer__bottom {
  padding: 1rem 0 1.35rem;
  background: rgba(0, 0, 0, 0.2);
}

.cmp-footer__copy {
  margin: 0;
  text-align: center;
  opacity: 0.72;
  font-size: 0.9rem;
  color: var(--footer-ink);
}

@media (max-width: 980px) {
  .cmp-footer__grid {
    grid-template-columns: 1fr;
    width: calc(100% - 2.25rem);
  }
}

/* === About page === */
.about-hero {
  width: min(1140px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 1.25rem 0 2rem;
}

.about-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: stretch;
}

.about-hero__grid img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.1);
}

.about-copy h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
}

.about-copy p {
  margin: 0 0 1rem;
  opacity: 0.85;
  font-size: 1.05rem;
}

.about-hero__wide {
  margin-top: 1.5rem;
}

.about-hero__wide img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.1);
  max-height: 520px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .about-hero__grid {
    grid-template-columns: 1fr;
  }
}

/* === Contact page === */
.contact-wrap {
  width: min(1140px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 1.25rem 0 3rem;
}

.contact-banner {
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 1.75rem;
  border: 1px solid var(--line);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.1);
  max-height: 420px;
}

.contact-banner img {
  width: 100%;
  height: min(420px, 52vw);
  object-fit: cover;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
  align-items: start;
}

.contact-split__media img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  min-height: 320px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}

.contact-card h2 {
  margin: 0 0 1rem;
  font-size: 1.45rem;
}

.contact-card dl {
  margin: 0;
  display: grid;
  gap: 1rem;
}

.contact-card dt {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 0.2rem;
}

.contact-card dd {
  margin: 0;
  font-size: 1.05rem;
}

.contact-note {
  margin: 1.25rem 0 0;
  opacity: 0.78;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .contact-split {
    grid-template-columns: 1fr;
  }
}
