/* ===================================================================
   BOSSMAN — Coming Soon
   Brand colours sampled directly from the official logo / brochure
   =================================================================== */

:root {
  /* Brand palette */
  --red: #ED3237;
  --red-dark: #C4262B;
  --ink: #1D1A1B;
  --ink-2: #373435;
  --cream: #F8F4F1;
  --muted: #736C67;
  --white: #FFFFFF;

  /* Lines */
  --line: rgba(29, 26, 27, .14);
  --line-soft: rgba(29, 26, 27, .08);

  /* Type */
  --ff-head: 'Oswald', sans-serif;
  --ff-body: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}


/* ===================================================================
   HEADER
   =================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  /* horizontal padding intentionally matches .hero-left so the logo sits on
     the same optical left edge as the headline at every screen size */
  padding: clamp(12px, 2vw, 24px) clamp(20px, 5vw, 64px);
  transition: background .3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 3vw, 40px);
  width: 100%;
}

/* Logo — artwork is trimmed edge-to-edge (584 x 99), so the box the
   browser draws is exactly the wordmark: no baked-in padding, no drift. */
.logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo-wrap img {
  height: 36px;
  width: auto;
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

.logo-light {
  display: none;
}

.logo-wrap:focus-visible,
.header-btn:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  flex-shrink: 0;
  gap: 10px;
  font-family: var(--ff-head);
  font-size: clamp(.72rem, .95vw, .845rem);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
  background: var(--red);
  padding: 12px 22px;
  border: 1.5px solid var(--red);
  border-radius: 2px;
  transition: all .35s cubic-bezier(.2, .8, .2, 1);
}

.header-btn i {
  font-size: .81rem;
  transition: transform .35s ease;
}

.header-btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 22px -10px rgba(29, 26, 27, .5);
}

.header-btn:hover i {
  transform: translateY(2px);
}

.hb-short {
  display: none;
}


/* ===================================================================
   HERO — SPLIT SCREEN
   =================================================================== */
.hero {
  min-height: 100vh;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr);
  min-height: 100vh;
}


/* ---------------- LEFT PANEL ---------------- */
.hero-left {
  position: relative;
  background:
    linear-gradient(var(--cream), var(--cream)),
    repeating-linear-gradient(0deg, transparent, transparent 39px, var(--line-soft) 39px, var(--line-soft) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, var(--line-soft) 39px, var(--line-soft) 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(78px, 9vh, 120px) clamp(20px, 5vw, 64px) clamp(22px, 3vh, 38px);
  overflow: hidden;
}

.hero-left::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: var(--line);
}

.left-inner {
  max-width: 640px;
  width: 100%;
  margin: 0 auto 0 0;
  position: relative;
  z-index: 2;
}

/* Eyebrow */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-size: clamp(.625rem, .85vw, .75rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(12px, 1.8vh, 20px);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--red);
  display: inline-block;
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Headline */
.headline {
  font-family: var(--ff-head);
  text-transform: uppercase;
  font-weight: 700;
  line-height: .94;
  letter-spacing: -1px;
  margin-bottom: clamp(14px, 2.2vh, 24px);
}

.headline .line {
  display: block;
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.headline .line-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
  opacity: .9;
}

.headline .line-solid {
  color: var(--ink);
}

.headline .accent {
  color: var(--red);
}

/* Coming soon badge */
.coming-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-head);
  font-size: clamp(.69rem, .95vw, .81rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--red);
  margin-bottom: clamp(12px, 2vh, 20px);
}

.badge-line {
  width: 34px;
  height: 2px;
  background: var(--red);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.badge-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  animation: badgePulse 2.6s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(100%);
  }
}

/* Intro */
.intro {
  font-size: clamp(.9rem, 1vw, 1.02rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 44ch;
  font-weight: 300;
  margin-bottom: clamp(20px, 3vh, 32px);
}

.intro strong {
  color: var(--ink);
  font-weight: 600;
}

/* Services */
.services {
  padding-top: clamp(16px, 2.4vh, 24px);
  border-top: 1px solid var(--line);
  margin-bottom: clamp(16px, 2.4vh, 24px);
}

.services-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--ff-head);
  font-size: clamp(.625rem, .85vw, .75rem);
  letter-spacing: 3px;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: clamp(10px, 1.8vh, 16px);
  font-weight: 600;
}

.services-head i {
  color: var(--red);
  font-size: .5625rem;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 9px clamp(18px, 2.4vw, 30px);
}

.services-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: clamp(.72rem, .8vw, .85rem);
  font-weight: 500;
  color: var(--ink-2);
  white-space: nowrap;
  transition: all .3s ease;
  cursor: default;
}

.services-list li:hover {
  color: var(--red);
  transform: translateX(4px);
}

.services-list .num {
  font-family: var(--ff-head);
  color: var(--red);
  font-size: .72em;
  font-weight: 600;
}

/* Contact strip */
.contact-strip {
  display: flex;
  flex-direction: column;
  gap: clamp(11px, 1.7vh, 16px);
  padding-top: clamp(14px, 2.2vh, 20px);
  border-top: 1px solid var(--line);
}

.contact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 26px);
}

/* the two offices sit side by side and share the width evenly */


.c-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-style: normal;
}

.contact-offices .c-item {
  align-items: flex-start;
}

.contact-offices .ci {
  margin-top: 2px;
}

.contact-strip .ci {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
  transition: all .3s ease;
}

.contact-strip a:hover .ci {
  background: var(--red);
  color: var(--white);
}

.contact-strip .ct {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.contact-strip .ct small {
  font-family: var(--ff-head);
  font-size: .5625rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-strip .ct strong {
  font-size: clamp(.76rem, .83vw, .86rem);
  overflow-wrap: anywhere;
  font-weight: 600;
  color: var(--ink);
}

.contact-strip a:hover .ct strong {
  color: var(--red);
}

/* address lines: same family, quieter weight so two offices read cleanly */
.contact-offices .ct strong {
  font-size: clamp(.71rem, .76vw, .8rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink-2);
  letter-spacing: .1px;
}

.contact-offices .ct small {
  color: var(--red);
  margin-bottom: 2px;
}


/* ---------------- RIGHT PANEL ---------------- */
.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  min-height: 100vh;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.overlay-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, var(--ink) 2%, rgba(29, 26, 27, .38) 44%, rgba(29, 26, 27, .55) 100%),
    linear-gradient(100deg, rgba(29, 26, 27, .65) 0%, rgba(29, 26, 27, .1) 32%, transparent 55%);
}

/* Blueprint grid */
.blueprint-grid {
  position: absolute;
  inset: -2px;
  pointer-events: none;
  opacity: .16;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 47px, rgba(255, 255, 255, .5) 47px, rgba(255, 255, 255, .5) 48px),
    repeating-linear-gradient(90deg, transparent, transparent 47px, rgba(255, 255, 255, .5) 47px, rgba(255, 255, 255, .5) 48px);
  animation: gridPan 26s linear infinite;
}

@keyframes gridPan {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(48px, 48px);
  }
}

/* Oversized background type */
.big-watermark {
  position: absolute;
  left: 50%;
  bottom: -2vw;
  transform: translateX(-50%);
  font-family: var(--ff-head);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(6rem, 17vw, 13rem);
  color: rgba(255, 255, 255, .05);
  letter-spacing: 2px;
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
  z-index: 1;
}

/* Vertical type */
.vertical-wrap {
  position: absolute;
  top: 0;
  right: clamp(14px, 2.4vw, 34px);
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 3;
  pointer-events: none;
}

.vertical-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--ff-head);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(1.1rem, 2.1vw, 1.9rem);
  letter-spacing: 10px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 18px;
}

.vertical-text .vdot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  writing-mode: horizontal-tb;
  flex-shrink: 0;
}

/* Technical corner marks */
.corner {
  position: absolute;
  width: 34px;
  height: 34px;
  z-index: 3;
  pointer-events: none;
}

.corner span {
  position: absolute;
  background: rgba(255, 255, 255, .65);
}

.corner .h {
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
}

.corner .v {
  height: 100%;
  width: 1px;
  top: 0;
  left: 0;
}

.corner-tl {
  top: 26px;
  left: 26px;
}

.corner-br {
  bottom: 26px;
  right: 26px;
}

.corner-br .h {
  top: auto;
  bottom: 0;
}

.corner-br .v {
  left: auto;
  right: 0;
}

/* Measurement ticks */
.tick-col {
  position: absolute;
  left: 26px;
  /* offset so the ruler no longer collides with the corner crop marks */
  top: 72px;
  bottom: 72px;
  width: 16px;
  z-index: 3;
  pointer-events: none;
  opacity: .5;
  background-image: repeating-linear-gradient(0deg,
      rgba(255, 255, 255, .4) 0, rgba(255, 255, 255, .4) 1px,
      transparent 1px, transparent 24px);
}

/* Thin frame */
.brand-frame {
  position: absolute;
  top: 26px;
  left: 74px;
  right: 74px;
  bottom: 26px;
  border: 1px solid rgba(255, 255, 255, .14);
  z-index: 2;
  pointer-events: none;
}


/* ===================================================================
   COUNTDOWN
   =================================================================== */
.countdown {
  position: absolute;
  left: 74px;
  bottom: clamp(30px, 5vh, 58px);
  z-index: 4;
}

.cd-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-size: clamp(.594rem, .8vw, .688rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--red);
  margin-bottom: clamp(10px, 1.4vh, 14px);
}

.cd-dash {
  width: 26px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.cd-units {
  display: flex;
  gap: clamp(8px, .9vw, 14px);
}

.cd-unit {
  min-width: clamp(56px, 4.6vw, 76px);
  padding: clamp(9px, 1.1vh, 14px) clamp(6px, .7vw, 10px);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(0, 0, 0, .28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 2px;
  position: relative;
  transition: border-color .3s ease;
}

.cd-unit::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
}

.cd-unit:hover {
  border-color: rgba(255, 255, 255, .4);
}

.cd-num {
  display: block;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
  line-height: 1;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}

.cd-cap {
  display: block;
  margin-top: 6px;
  font-family: var(--ff-head);
  font-size: clamp(.5rem, .62vw, .594rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}

/* seconds tick */
#cd-secs {
  color: var(--red);
}


/* ===================================================================
   RESPONSIVE
   =================================================================== */

/* --- Desktop: lock to a single screen, no page scroll --- */
@media (min-width:901px) {

  html,
  body {
    height: 100%;
    overflow: hidden;
  }

  .hero,
  .hero-grid {
    height: 100vh;
    min-height: 100vh;
  }
}

/* --- Short desktop windows (1024x600, 1366x768 with browser chrome) ---
   Compress rhythm rather than let the fixed-height layout clip content. --- */
@media (min-width:901px) and (max-height:780px) {
  .hero-left {
    padding-top: 66px;
    padding-bottom: 18px;
  }

  .headline .line {
    font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  }

  .headline {
    margin-bottom: 12px;
  }

  .intro {
    margin-bottom: 16px;
    line-height: 1.5;
  }

  .services {
    padding-top: 13px;
    margin-bottom: 12px;
  }

  .services-list {
    gap: 7px clamp(16px, 2vw, 26px);
  }

  .contact-strip {
    padding-top: 12px;
    gap: 10px;
  }

  .contact-strip .ci {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }
}

/* Safety valve: below this the single-screen lock would clip, so let it scroll */
@media (min-width:901px) and (max-height:600px) {

  html,
  body {
    height: auto;
    overflow: auto;
  }

  .hero,
  .hero-grid {
    height: auto;
    min-height: 100vh;
  }

  .hero-right {
    min-height: 90vh;
  }
}

/* --- Large desktop (1367–1920) --- */
@media (min-width:1367px) {
  .left-inner {
    max-width: 700px;
  }
}

/* --- Very large / 4K (1921px and up) ---
   Scale the type system up so the layout does not look sparse. --- */
@media (min-width:1921px) and (min-height:1000px) {
  html {
    font-size: 18.5px;
  }

  .left-inner {
    max-width: 860px;
  }

  .hero-left {
    padding-left: clamp(64px, 6vw, 140px);
    padding-right: clamp(64px, 6vw, 140px);
  }

  .contact-strip .ci {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .logo-wrap img {
    height: clamp(40px, 2.3vw, 56px);
  }

  .cd-unit {
    min-width: 92px;
  }

  .corner {
    width: 44px;
    height: 44px;
  }

  .corner-tl {
    top: 40px;
    left: 40px;
  }

  .corner-br {
    bottom: 40px;
    right: 40px;
  }

  .tick-col {
    left: 40px;
    top: 104px;
    bottom: 104px;
  }

  .brand-frame {
    top: 40px;
    bottom: 40px;
    left: 104px;
    right: 104px;
  }

  .countdown {
    left: 104px;
  }
}

@media (min-width:2560px) and (min-height:1300px) {
  html {
    font-size: 22px;
  }

  .left-inner {
    max-width: 1020px;
  }

  .contact-strip .ci {
    width: 46px;
    height: 46px;
    font-size: 17px;
  }

  .cd-unit {
    min-width: 112px;
  }

  .logo-wrap img {
    height: clamp(56px, 2.2vw, 76px);
  }

  .corner {
    width: 56px;
    height: 56px;
  }

  .corner-tl {
    top: 54px;
    left: 54px;
  }

  .corner-br {
    bottom: 54px;
    right: 54px;
  }

  .tick-col {
    left: 54px;
    top: 130px;
    bottom: 130px;
    width: 22px;
  }

  .brand-frame {
    top: 54px;
    bottom: 54px;
    left: 132px;
    right: 132px;
  }

  .countdown {
    left: 132px;
  }
}

@media (min-width:3400px) and (min-height:1800px) {
  html {
    font-size: 27px;
  }

  .left-inner {
    max-width: 1280px;
  }
}

@media (max-width:1200px) {
  .cd-unit {
    min-width: clamp(52px, 4.4vw, 68px);
  }
}

@media (max-width:1024px) {
  .services-list {
    grid-template-columns: repeat(2, auto);
  }

  /* left column is narrow here — give each office its own full-width row */
  .contact-offices {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* --- Tablet / Mobile: stack, allow natural scroll --- */
@media (max-width:900px) {
  .site-header {
    position: absolute;
    background: linear-gradient(180deg, rgba(20, 18, 19, .62), rgba(20, 18, 19, 0));
    padding-bottom: 40px;
  }

  .logo-dark {
    display: none;
  }

  .logo-light {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    order: 2;
    min-height: auto;
    padding: clamp(28px, 6vw, 40px) clamp(20px, 5vw, 40px) clamp(30px, 6vw, 44px);
  }

  .hero-left::before {
    display: none;
  }

  .left-inner {
    margin: 0;
    max-width: 760px;
  }

  .headline .line {
    font-size: clamp(2.4rem, 9vw, 3.6rem);
  }

  .hero-right {
    order: 1;
    min-height: 66vh;
  }

  .brand-frame {
    left: 16px;
    right: 16px;
  }

  /* countdown centred at the base of the image */
  .countdown {
    left: 50%;
    right: auto;
    bottom: clamp(24px, 4vw, 36px);
    transform: translateX(-50%);
    width: calc(100% - 60px);
  }

  .cd-label {
    justify-content: center;
  }

  .cd-units {
    justify-content: center;
  }

  /* vertical type would clash with the timer */
  .vertical-wrap {
    display: none;
  }

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

  /* full-width stacked panel — two offices fit side by side again */
  .contact-offices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 26px;
  }
}

@media (max-width:640px) {
  .contact-offices {
    grid-template-columns: 1fr;
    gap: 13px;
  }
}

@media (max-width:359px) {
  .contact-reach {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width:520px) {
  .hb-full {
    display: none;
  }

  .hb-short {
    display: inline;
  }

  .header-btn {
    padding: 11px 16px;
  }

  .contact-strip {
    gap: 16px 22px;
  }

  .services-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 14px;
  }

  .big-watermark {
    font-size: 5.5rem;
  }

  .cd-units {
    gap: 6px;
  }

  .cd-unit {
    min-width: 0;
    flex: 1;
    padding: 9px 4px;
  }
}

@media (max-width:430px) {
  .services-list li {
    white-space: normal;
    line-height: 1.3;
  }

  .coming-badge {
    align-items: flex-start;
  }

  .badge-line {
    margin-top: 9px;
  }
}

/* --- Small phones: keep logo + brochure button on one comfortable row --- */
@media (max-width:390px) {
  .logo-wrap img {
    height: 26px;
  }

  .header-btn {
    padding: 10px 13px;
    font-size: 11px;
    letter-spacing: 1px;
    gap: 8px;
  }

  .header-btn i {
    font-size: 12px;
  }
}

@media (max-width:375px) {
  .headline .line {
    font-size: 2.05rem;
  }

  .cd-num {
    font-size: 1.35rem;
  }

  .contact-strip .ct strong {
    font-size: .78rem;
  }

  .contact-offices .ct strong {
    font-size: .7rem;
  }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion:reduce) {

  .blueprint-grid,
  .badge-line::after {
    animation: none;
  }

  * {
    transition-duration: .01ms !important;
  }
}