/* ==========================================================================
   Breeaze — breeaze.css
   Brand: Bomart Enterprises Limited (company no. 16171305)
   Palette and spacing follow the Breeaze brand style guide.
   ========================================================================== */

/* --- Tokens ------------------------------------------------------------ */
:root {
  /* Brand */
  --teal:        #246F7D;   /* style guide: background */
  --teal-bright: #2E8B9C;   /* lifted teal, for text on dark grounds */
  --teal-deep:   #1A545F;   /* hover / pressed */
  --mist:        #F8F9FB;   /* style guide: foreground */
  --accent-1:    #D5E2E6;
  --accent-2:    #B1CBD1;
  --accent-3:    #8EB4BC;

  /* Extended dark range (not in the style guide — see README) */
  --ink:      #0B1C21;
  --ink-2:    #10262C;
  --ink-3:    #071418;
  --rule-dk:  #1C3A42;

  /* Light surfaces and text */
  --white:    #FFFFFF;
  --panel:    #F1F5F6;
  --tint:     #E7EFF1;
  --rule:     #DEE7EA;
  --rule-2:   #E5EBEE;
  --text:     #0B1C21;
  --body:     #35525B;
  --muted:    #55707A;
  --on-dark:      #A9C4CA;
  --on-dark-soft: #7E9AA2;
  --on-dark-dim:  #6E9099;

  /* Type */
  --display: 'Chakra Petch', 'Segoe UI', system-ui, sans-serif;
  --sans: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Rhythm */
  --gutter: 24px;
  --measure: 1200px;
  --radius: 14px;
  --radius-sm: 6px;
  --section-y: clamp(3.5rem, 6vw, 5.5rem);
  --header-h: 88px;
}

@media (min-width: 40em) { :root { --gutter: 40px; } }
@media (min-width: 64em) { :root { --gutter: 56px; } }
@media (min-width: 90em) { :root { --gutter: 72px; } }

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  margin: 0;
  background: var(--mist);
  color: var(--body);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--text);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-deep); }

:focus-visible {
  outline: 3px solid var(--teal-bright);
  outline-offset: 3px;
  border-radius: 2px;
}

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

/* --- Layout primitives -------------------------------------------------- */
.wrap {
  width: min(100% - (var(--gutter) * 2), var(--measure));
  margin-inline: auto;
}

.section { padding-block: var(--section-y); }
.section--dark  { background: var(--ink);   color: var(--on-dark); }
.section--deep  { background: var(--ink-2); color: var(--on-dark); }
.section--mist  { background: var(--mist); }
.section--white { background: var(--white); }
.section--dark h1, .section--dark h2, .section--dark h3,
.section--deep h1, .section--deep h2, .section--deep h3 { color: var(--mist); }

.skip-link {
  position: absolute; left: 12px; top: -64px; z-index: 100;
  background: var(--white); color: var(--teal-deep);
  padding: 12px 18px; border-radius: var(--radius-sm); font-weight: 700;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 12px; }

/* --- Type helpers ------------------------------------------------------- */
.eyebrow {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.section--dark .eyebrow,
.section--deep .eyebrow { color: var(--accent-3); }

.h-xl { font-size: clamp(2.4rem, 5.6vw, 4rem); }
.h-lg { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
.h-md { font-size: clamp(1.6rem, 2.6vw, 2.25rem); }
.h-sm { font-size: clamp(1.15rem, 1.6vw, 1.375rem); font-weight: 600; }

.lede { font-size: clamp(1rem, 1.15vw, 1.125rem); line-height: 1.7; max-width: 46ch; }
.lede--light { color: var(--on-dark); }
.lede--muted { color: var(--muted); }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 3rem;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}
.section-head > :first-child { max-width: 34ch; }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0 1.65rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary { background: var(--teal); color: var(--white); }
.btn--primary:hover { background: var(--teal-deep); color: var(--white); }

.btn--ghost { border-color: #2E5A63; color: var(--mist); font-weight: 600; }
.btn--ghost:hover { border-color: var(--teal-bright); color: var(--white); background: rgba(46, 139, 156, 0.12); }

.btn--light { background: var(--white); color: var(--teal-deep); }
.btn--light:hover { background: var(--accent-1); color: var(--teal-deep); }

.btn--outline-light { border-color: #9CC6CE; color: var(--white); font-weight: 600; }
.btn--outline-light:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.12); color: var(--white); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* --- Header ------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  border-bottom: 1px solid transparent;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; }
.brand img { width: 146px; height: auto; }

.nav { display: flex; align-items: center; gap: 2.1rem; }
.nav a {
  color: var(--on-dark);
  font-size: 0.95rem;
  font-weight: 500;
  padding-block: 0.35rem;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--mist); }
.nav a[aria-current="page"] { color: var(--mist); font-weight: 600; border-bottom-color: var(--teal-bright); }
.nav .btn { min-height: 46px; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  width: 48px; height: 48px;
  margin-right: -10px;
  align-items: center; justify-content: center;
  background: none; border: 0; color: var(--mist); cursor: pointer;
}
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: block; }

@media (max-width: 63.99em) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem var(--gutter) 1.75rem;
    background: var(--ink);
    border-bottom: 1px solid var(--rule-dk);
    display: none;
  }
  .nav[data-open="true"] { display: flex; }
  .nav a {
    padding-block: 0.95rem;
    border-bottom: 1px solid var(--rule-dk);
    font-size: 1.05rem;
  }
  .nav a[aria-current="page"] { border-bottom-color: var(--rule-dk); }
  .nav .btn { margin-top: 1.25rem; border-bottom: 0; }
}

/* --- Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--on-dark);
  overflow: clip;
  padding-block: clamp(3rem, 6vw, 5.5rem);
}
.hero__deco {
  position: absolute;
  top: -12%;
  right: -14%;
  width: min(60vw, 860px);
  aspect-ratio: 1;
  background: var(--teal);
  opacity: 0.16;
  clip-path: polygon(6% 0%, 100% 50%, 6% 100%);
  transform: rotate(-14deg);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}
.hero__copy { max-width: 34rem; }
.hero h1 { color: var(--mist); margin-top: 1.25rem; }
.hero .lede { margin-top: 1.5rem; }
.hero .btn-row { margin-top: 2.1rem; }
.hero__media img { width: 100%; max-width: 640px; margin-left: auto; }

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.5rem;
  margin-top: 2.6rem;
  font-family: var(--display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  color: var(--accent-1);
}
.hero-facts span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px; height: 0.95em;
  margin-left: 1.5rem;
  background: #2E5A63;
  vertical-align: -0.1em;
}

.hero--product .hero__copy { max-width: 36rem; }
.hero--product h1 { font-size: clamp(2.8rem, 6vw, 4.25rem); margin-top: 0.75rem; }
.hero__model { font-family: var(--display); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-3); }
.hero__subtitle { font-family: var(--display); font-size: clamp(1.1rem, 1.8vw, 1.375rem); font-weight: 500; color: var(--teal-bright); margin-top: 0.75rem; }

.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--on-dark-soft); margin-bottom: 1.75rem; }
.breadcrumb a { color: var(--on-dark-soft); }
.breadcrumb a:hover { color: var(--on-dark); }
.breadcrumb [aria-current] { color: var(--on-dark); }

.ticks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 0.75rem 1.5rem;
  margin-top: 1.75rem;
}
.ticks li { display: flex; align-items: center; gap: 0.65rem; font-size: 0.95rem; color: var(--accent-1); }
.ticks svg { width: 17px; height: 17px; flex: none; color: var(--teal-bright); }

@media (max-width: 63.99em) {
  .hero__inner { grid-template-columns: minmax(0, 1fr); }
  .hero__media { order: -1; }
  .hero__media img { margin-inline: auto; max-width: 420px; }
  .hero__copy { max-width: none; }
}

/* --- Capability strip --------------------------------------------------- */
.strip {
  background: var(--ink-2);
  border-block: 1px solid var(--rule-dk);
  padding-block: 1.5rem;
}
.strip__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}
.strip__item { display: flex; align-items: center; gap: 0.6rem; color: var(--accent-3); }
.strip__item svg { width: 22px; height: 22px; flex: none; }
.strip__item span {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  color: var(--accent-1);
}
@media (max-width: 63.99em) { .strip__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; } }
@media (max-width: 30em)    { .strip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* --- Figure strip (product page) --------------------------------------- */
.figures {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
}
.figure {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.figure dt { font-family: var(--display); font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 700; color: var(--mist); }
.figure dd { margin: 0; font-size: 0.78rem; letter-spacing: 0.07em; color: var(--accent-3); }
@media (max-width: 63.99em) { .figures { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; } }

/* --- Cards -------------------------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 1.5rem;
}
.cards--4 { grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); gap: 1.25rem; }

.card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.card__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--tint);
  color: var(--teal);
  margin-bottom: 1.4rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 0.7rem; }
.card p { font-size: 0.95rem; color: var(--muted); }
.card__tag {
  margin-top: auto;
  padding-top: 1.5rem;
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--teal);
}

.card--dark { background: var(--ink); border-color: var(--rule-dk); padding: 1.75rem; }
.card--dark .card__icon { background: none; width: auto; height: auto; color: var(--teal-bright); margin-bottom: 1rem; }
.card--dark p { color: var(--on-dark); font-size: 0.9rem; }

.card--deep { background: var(--ink-2); border-color: var(--rule-dk); }
.card--deep .card__icon { background: none; width: auto; height: auto; color: var(--teal-bright); margin-bottom: 1.25rem; }
.card--deep p { color: var(--on-dark); font-size: 0.925rem; }

/* --- Split sections ----------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.split--media-first > .split__media { order: -1; }
.split__copy { max-width: 36rem; }
@media (max-width: 63.99em) {
  .split { grid-template-columns: minmax(0, 1fr); }
  .split--media-first > .split__media { order: 0; }
}

.stage {
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 16px;
  background: var(--panel);
}
.stage--dark { background: var(--ink-2); border: 1px solid var(--rule-dk); }
.stage--tint { background: var(--tint); }
.stage img { max-height: 420px; width: auto; object-fit: contain; }

/* --- Feature list (remote) --------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 1.5rem 2.25rem;
  margin-top: 2rem;
}
.feature { display: flex; gap: 0.9rem; }
.feature svg { width: 22px; height: 22px; flex: none; color: var(--teal); margin-top: 0.15rem; }
.feature h3 { font-family: var(--sans); font-size: 1rem; font-weight: 700; letter-spacing: 0; }
.feature p { margin-top: 0.3rem; font-size: 0.925rem; color: var(--muted); }

/* --- Key/value spec pairs (dark) ---------------------------------------- */
.pairs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1.15rem 2rem;
  margin-top: 2rem;
  max-width: 34rem;
}
.pairs > div { border-top: 1px solid var(--rule-dk); padding-top: 0.75rem; }
.pairs dt { font-family: var(--display); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; color: var(--on-dark-dim); }
.pairs dd { margin: 0.3rem 0 0; font-size: 0.95rem; font-weight: 600; color: var(--mist); }

/* --- Port list ---------------------------------------------------------- */
.ports { margin-top: 1.9rem; border-top: 1px solid var(--rule-2); }
.ports li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.9rem;
  padding-block: 0.9rem;
  border-bottom: 1px solid var(--rule-2);
}
.ports svg { width: 20px; height: 20px; flex: none; color: var(--teal); }
.ports b { font-size: 0.95rem; font-weight: 700; color: var(--text); flex: 0 0 auto; min-width: 9.5rem; }
.ports span { font-size: 0.925rem; color: var(--muted); }

/* --- Specification table ------------------------------------------------ */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
}
.spec-table caption { text-align: left; padding-bottom: 1.25rem; color: var(--muted); font-size: 0.95rem; }
.spec-table th, .spec-table td { padding: 1.05rem 1.75rem; vertical-align: top; }
.spec-table thead th {
  background: var(--panel);
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.spec-table tbody th { width: 17rem; font-size: 0.95rem; font-weight: 700; color: var(--text); }
.spec-table tbody td { font-size: 0.95rem; color: var(--body); }
.spec-table tbody tr { border-top: 1px solid var(--rule-2); }
.spec-table tbody tr:nth-child(even) { background: #FAFCFC; }
.spec-note { margin-top: 1.4rem; font-size: 0.85rem; color: var(--muted); max-width: 70ch; }

@media (max-width: 47.99em) {
  .spec-table, .spec-table tbody, .spec-table tr, .spec-table th, .spec-table td { display: block; }
  .spec-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
  .spec-table tbody tr { padding: 1.1rem 1.25rem; }
  .spec-table tbody th, .spec-table tbody td { padding: 0; width: auto; }
  .spec-table tbody td { margin-top: 0.3rem; }
}

/* --- Contents list ------------------------------------------------------ */
.contents {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.25rem;
}
.contents li {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 84px;
  padding: 1rem 1.5rem;
  border: 1px solid var(--rule);
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.contents svg { width: 20px; height: 20px; flex: none; color: var(--accent-3); }

/* --- Call-to-action band ------------------------------------------------ */
.band {
  background: var(--teal);
  color: var(--white);
  padding-block: clamp(3rem, 5vw, 4.5rem);
}
.band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem 3rem;
}
.band h2 { color: var(--white); max-width: 18ch; }
.band p { margin-top: 0.9rem; color: #E4EFF1; max-width: 52ch; }
.band .btn-row { flex-direction: column; flex: none; }
.band .btn { min-width: 17rem; }
@media (max-width: 47.99em) { .band .btn, .band .btn-row { width: 100%; } }

/* --- Footer ------------------------------------------------------------- */
.site-footer { background: var(--ink); color: var(--on-dark); padding-block: clamp(3rem, 5vw, 4.5rem) 2.5rem; }
.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 20rem) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
}
.site-footer__brand img { width: 168px; margin-left: -10px; }
.site-footer__brand p { margin-top: 0.9rem; font-size: 0.925rem; color: var(--on-dark); max-width: 30ch; }

.mark {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 1.4rem;
  padding: 0 0.75rem;
  border: 1px solid #2E5A63;
  border-radius: 4px;
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent-1);
}

.footer-nav { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; }
.footer-nav h2 {
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dark-dim);
  margin-bottom: 1.1rem;
}
.footer-nav li + li { margin-top: 0.75rem; }
.footer-nav a { font-size: 0.925rem; color: var(--accent-1); }
.footer-nav a:hover { color: var(--white); }

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem 3rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--rule-dk);
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--on-dark-soft);
}
.site-footer__legal p { max-width: 68ch; }
.site-footer__legal strong { color: var(--accent-1); font-weight: 600; }

@media (max-width: 63.99em) {
  .site-footer__top { grid-template-columns: minmax(0, 1fr); }
  .footer-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem 1.5rem; }
}

/* --- Utilities ---------------------------------------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); gap: 1.5rem; }
.gallery figure { margin: 0; display: grid; place-items: center; gap: 1rem; padding: 1.75rem; background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius); }
.gallery img { max-height: 200px; width: auto; object-fit: contain; }
.gallery figcaption { font-family: var(--display); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; color: var(--muted); }
